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.
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
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
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
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
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
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
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
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
9 matches
Mail list logo