I was able to get Django to work with FCGI but the problem I'm running
into is that I get a 500 Error randomly on every few requests. I
downloaded a copy of the application and ran it using mod_python.
Everything seems to be fine.
Here is what my django.fcgi and .htaccess files look like:

django.fcgi:
#!/usr/bin/python2.4
if __name__ == '__main__':
    import sys, os
    sys.path = [ ...my path]
    os.environ['DJANGO_SETTINGS_MODULE'] = 'cs.settings'
    from django.core.servers.fastcgi import runfastcgi
    runfastcgi(["method=threaded", "daemonize=false"])

.htaccess:
RewriteEngine On
RewriteBase /
RewriteRule ^(media/.*)$ - [L]
RewriteCond %{REQUEST_URI} !(django.fcgi)
RewriteRule ^(.*)$ django.fcgi/$1 [L]

My guess is that some of the requests, don't even get routed to
django.fcgi.
Unfortunately, 1and1 doesnt give you access to apache's error log and
the CGI Output Monitor they have on the control panel simply says
"Network Error".
Does anyone have an idea why I get a 500 Error on every few requests?
Thank you.
Ivan


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