Hello everyone! I am trying to setup FastCGI for my Django project, using the following dispatch.fcgi script:
#!/usr/bin/env python import sys, os # Add a custom Python path. sys.path.insert(0, "/home/me/projects/django/trunk") sys.path.insert(0, "/home/me/projects/flup/trunk") sys.path.insert(0, "/home/me/projects") # Set the DJANGO_SETTINGS_MODULE environment variable. os.environ['DJANGO_SETTINGS_MODULE'] = "myproject.settings" from django.core.servers.fastcgi import runfastcgi runfastcgi(method="threaded", daemonize="false") However, I noticed my site never responded when I tried to access it. So, I ran the script directly and the following error was spit out: ImportError: No module named core.servers.fastcgi I have updated to the latest SVN revision and I'm sure my PYTHONPATH is correct, because "import django" and "import flup" work just fine. I have also verified that "core.servers.fastcgi" does indeed exist. What else could be causing this? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---