Re: switching to mod_python

2006-09-12 Thread Filipe
I see, thanks. Filipe --~--~-~--~~~---~--~~ 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 unsubscribe from this group, send email to [EMAIL PR

Re: switching to mod_python

2006-09-11 Thread Waylan Limberg
On 9/11/06, Filipe <[EMAIL PROTECTED]> wrote: > > solved it! there was an error in urls.py > I have an second urls.py inside the app dir and had to fix this: > > 'myapp.views.start' > > to this: > > 'myproject.myapp.views.start' > > seems like relative "paths" are relative to the project's base di

Re: switching to mod_python

2006-09-11 Thread Filipe
solved it! there was an error in urls.py I have an second urls.py inside the app dir and had to fix this: 'myapp.views.start' to this: 'myproject.myapp.views.start' seems like relative "paths" are relative to the project's base dir, instead of the scripts dir. Still don't understand why it wor

Re: switching to mod_python

2006-09-11 Thread Filipe
solved it! there was an error in urls.py I have an second urls.py inside the app dir and had to fix this: 'myapp.views.start' to this: 'myproject.myapp.views.start' seems like relative "paths" are relative to the project's base dir, instead of the scripts dir. Still don't understand why it wor

switching to mod_python

2006-09-11 Thread Filipe
URL: http://localhost:8000/myapp/ and accessing apache, with mod_python, with: http://localhost/myapp/ Should there be any configuration change when switching to mod_python? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Group