On Sep 20, 2:33 am, "neri...@gmail.com" <neri...@gmail.com> wrote:
> I'm trying to use passenger_wsgi on Dreamhost and keeep getting 'An
> error occurred importing your passenger_wsgi.py'. I think I've located
> the syntax that is causing the problem but I don't know how to resolve
> it and Dreamhost doesn't offer any assistance for this.
>
> import sys, os
> INTERP = "/home/USERNAME/local/bin/python2.4"
> if sys.executable != INTERP: os.execl(INTERP, INTERP, *sys.argv)
> sys.path.append("/home/USERNAME/mysite.com")
> os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings'
> import django.core.handlers.wsgi    # THIS LINE CAUSING ERRORS
> # application = django.core.handlers.wsgi.WSGIHandler()
>
> Thanks for any help,
>
> Jason

You haven't given enough information to diagnose the problem - exactly
what errors are you seeing? What is the traceback?

However at a guess I would say that the django package isn't on the
pythonpath, so can't be imported. You may need to add it via
sys.path.append('/path/to/django').
--
DR.
--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to