thanks Douglas, i guess there's something wrong with the way lighttpd and django are connecting, because both of them are installed properly. Which means there has to be something wrong with one or more of:
a) the start fcgi daemon command b) lighttpd.conf c) yourfilename.fcgi as far as a) goes, I've tried all three sample commands without any luck. I used netstat to see that indeed, the daemons seemed to be running. I tried specifying a PID file with a process id number in it (999) but it didn't seem to work as when I tried killing 999 it said there was nothing with that pid. But seeing as how the daemons seem to be running, I don't think this is the source of the problem. b) in lighttpd.conf i've specified the full path to my .fcgi file, but it doesn't seem to make a difference. lighttpd doesn't complain about anything, and there's nothing in my lighttpd error log. c) which leads me to believe the problem is in the .fcgi file. i have made it executable with chmod +x, and is located in /mnt, with my project in /mnt/project and therefore imports the paths /mnt and /mnt/ project and sets DJANGO_SETTINGS_MODULE to project.settings when I ran ./dispatch.fcgi from the command line, I got: WSGIServer: missing FastCGI param REQUEST_METHOD required by WSGI! WSGIServer: missing FastCGI param SERVER_NAME required by WSGI! WSGIServer: missing FastCGI param SERVER_PORT required by WSGI! WSGIServer: missing FastCGI param SERVER_PROTOCOL required by WSGI! Status: 500 INTERNAL SERVER ERROR Content-Type: text/html <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http:// www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> .... and a bunch of HTML any ideas? thanks On Apr 7, 12:38 pm, Douglas E <[EMAIL PROTECTED]> wrote: > On Apr 6, 11:53 pm,skunkwerk<[EMAIL PROTECTED]> wrote: > > > > > I'm having trouble running django with lighttpd (I'm not on a shared > > host). Here is what I've installed: > > > ubuntu 7.10 > > lighttpd > > flup > > cmemcache > > python > > > When I go to my web address which maps to the django project > > directory, all I see is a directory listing, not any django pages. > > > I started fcgi like this, as in the docs: > > ./manage.py runfcgi method=threaded host=127.0.0.1 port=3033 > > > have this in my lighttpd.conf: > > server.modules = ( > > "mod_access", > > "mod_alias", > > "mod_accesslog", > > "mod_compress", > > "mod_fastcgi", > > ) > > > fastcgi.server = ( > > "/mnt/project/mysite.fcgi" => ( > > "main" => ( > > "host" => "127.0.0.1", > > "port" => 3033, > > "check-local" => "disable", > > ) > > ), > > ) > > > and the mysite.fcgi file: > > #!/usr/local/bin/python > > import sys,os > > > sys.path.insert(0,"/mnt/project") > > os.chdir("/mnt/project") > > os.environ['DJANGO_SETTINGS_MODULE']="settings" > > from django.core.servers.fastcgi import runfastcgi > > runfastcgi(method="threaded",daemonize="false") > > > I restarted lighttpd but it's still the same. If I add a 'bin-path' > > to the fcgi.server I get an error when I restart lighttpd. > > > 1) any suggestions on how to get this working? > > 2) my DJANGO_SETTINGS_MODULE is pointing to settings.py in my django > > project, as I couldn't find any project_settings.py or anything - is > > this correct? > > 3) for the fastcgi.server() do i need to give it the path of > > the .fcgi file? > > > thanks > > I am having the same problems and posted here. Got no response at all! > Then I started thinking maybe this is not the place to post. Perhaps > we should ask on the Lighttpd website? I have not had time yet. > Douglas --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---