I am using Dreamhost and just recently switched from the "old" way to
the "new" way that uses flup. I haven't had any problems.

It's hard to tell where your problem is occurring without seeing any
errors... can you check the server logs and post the error?

Just for reference, here is what my django.fcgi looks like if you want
to compare.

flup-r2028 holds the flup source, django-0.95 holds the django source,
and django_projects holds all my projects.

#!/usr/bin/python

import sys, os

sys.path += ['/home/timster/flup-r2028']
sys.path += ['/home/timster/django-0.95']
sys.path += ['/home/timster/django_projects']

os.environ['DJANGO_SETTINGS_MODULE'] = 'webapp.settings'

from django.core.servers.fastcgi import runfastcgi

runfastcgi(["method=threaded", "daemonize=false"])


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to