Hi,

I have set up my apache with mod_python. When I call my main page
on /, it works fine. However, when I try to access to other
applications (/users/23) I get this error:

ImproperlyConfigured: Error while importing URLconf 'recs.urls': No
module named recs.urls

My main urls.py code is:

urlpatterns = patterns('',
     (r'^$', 'qsm.recs.views.matrix'),
     (r'^users/', include('recs.urls')),         ... and more

And of course, I have a recs/urls.py file with a correct
configuration...

My mod_python config is :

<Location "/">
    SetHandler python-program
    PythonHandler django.core.handlers.modpython
    PythonPath "['/home/bcurtu/ws-python'] + sys.path"
    SetEnv DJANGO_SETTINGS_MODULE qsm.settings
    PythonDebug On
</Location>

Everything looks fine, isn't it?
--~--~---------~--~----~------------~-------~--~----~
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 PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to