Re: Beginner's Help needed

2009-04-05 Thread Florian Strzelecki
Yes you can ! *WSGI :* Alias /another /path/to/your/phpApplication WSGIScriptAlias / /path/to/file.wsgi *MOD_PYTHON :* Use Location apache directive. I don't remember what to do for php... sorry, but I know that on this way. 2009/4/5 Dougal Matthews > It depends how you mean combine really.

Re: Beginner's Help needed

2009-04-05 Thread Dougal Matthews
It depends how you mean combine really. You can have them both running on the same server, you can have them share the same database (then you can still manage it with django) Dougal --- Dougal Matthews - @d0ugal http://www.dougalmatthews.com/ 2009/4/5 atik > > Ok. Again Thanks. I will do it

Re: Beginner's Help needed

2009-04-05 Thread atik
Ok. Again Thanks. I will do it. Can i combine django application with PHP? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To un

Re: Beginner's Help needed

2009-04-05 Thread Alex Gaynor
On Sun, Apr 5, 2009 at 3:35 PM, atik wrote: > > Thanks! That is solved. Another Question. > I can only run project at development server. How to run on apache? > > > You can run under Apache using either mod_python or mod_wsgi, start by taking a look at their documentation: http://docs.djangoproj

Re: Beginner's Help needed

2009-04-05 Thread atik
Thanks! That is solved. Another Question. I can only run project at development server. How to run on apache? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: Beginner's Help needed

2009-04-05 Thread Alex Gaynor
On Sun, Apr 5, 2009 at 3:28 PM, atik wrote: > > > here is my urls.py file- > > from django.conf.urls.defaults import * > > urlpatterns = patterns('', >(r'^polls/$', 'mysite.polls.views.index'), >(r'^polls/(?P\d+)/$', 'mysite.polls.views.detail'), >(r'^polls/(?P\d+)/results/$', > 'mysi

Re: Beginner's Help needed

2009-04-05 Thread atik
here is my urls.py file- from django.conf.urls.defaults import * urlpatterns = patterns('', (r'^polls/$', 'mysite.polls.views.index'), (r'^polls/(?P\d+)/$', 'mysite.polls.views.detail'), (r'^polls/(?P\d+)/results/$', 'mysite.polls.views.results'), (r'^polls/(?P\d+)/vote/$', 'mys

Re: Beginner's Help needed

2009-04-05 Thread Alex Gaynor
On Sun, Apr 5, 2009 at 3:17 PM, atik wrote: > > Hello! > I am new to django and using version 1.0.1. I have done some basics > shown on official target='_blank'>tutorials. I have a question: Every > thing is quite ok to me except that when i have come through part two > of the tutorial (a admin

Beginner's Help needed

2009-04-05 Thread atik
Hello! I am new to django and using version 1.0.1. I have done some basics shown on official tutorials. I have a question: Every thing is quite ok to me except that when i have come through part two of the tutorial (a admin site) it gives me admin interface. But after finishing part three and four