Hi,
after creating the new dir for my project and trying to run
http://127.0.0.1/mysite, I am getting a 500,
the apache log file says:
NameError: name 'django' is not defined
[error] [client 127.0.0.1] ImportError: No module named
django.core.handlers.wsgi
----- django.wsgi File Content-----------
import os, sys
sys.path.append('/Users/corinemorin/www/webapps')
sys.path.append('/Users/corinemorin/www/webapps//mysite')
os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()
Why is django.wsgi unable to "import django.core.handlers.wsgi"?
thanks for your help,
Corine
--
You received this message because you are subscribed to the Google Groups
"modwsgi" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/modwsgi?hl=en.