vote up 0 vote down star

Solved: Unfortunately I wasn't able to solve the problem but I started over and followed the Django + FastCGI guide on the "A Small Orange" wiki and everything is working as expected.

I am trying to setup Django with FCGI on Apache. The web hosting plan that I am using is A Small Orange's shared hosting plan.

Django is installed, working and is able to create database tables when I run the syncdb command. If I run manage.py runserver and then use lynx to navigate to localhost:8080 django will correctly display. However, It is not possible to view django over the internet as the page displays a 500 internal server error.

I have the flup python package installed and am using python version 2.6.

The following is the contents of my .htaccess file that is situated in /public_html/:

RewriteEngine On
  RewriteBase /
  RewriteRule ^(media/.*)$ - [L]
  RewriteRule ^(admin_media/.*)$ - [L]
  RewriteRule ^(dispatch\.fcgi/.*)$ - [L]
  RewriteRule ^(.*)$ dispatch.fcgi/$1 [L]

The following is the contents of my dispatch.fcgi file that is also located in /public_html:

#!/usr/local/lib/python2.6
import sys
import os
os.chdir('/home/thegamer/django/projects/thegamer')
sys.path += ['/home/thegamer/django/django']
sys.path += ['/home/thegamer/django/projects']
from fcgi import WSGIServer
from django.core.handlers.wsgi import WSGIHandler
import os
os.environ['DJANGO_SETTINGS_MODULE'] = 'thegamer.settings'
WSGIServer(WSGIHandler()).run()
flag

And what does the error log say? – PiotrLegnica Nov 8 at 13:13
[Sun Nov 08 11:52:42 2009] [warn] FastCGI: (dynamic) server "/home/thegamer/public_html/dispatch.fcgi" has failed to remain running for 30 seconds given 3 attempts, its restart interval has been backed off to 600 seconds – Pheter Nov 8 at 16:53
What happens if you try to run dispatch.fcgi manually? If it works, it should just wait for for requests. If it terminates, it's probably with a message explaining what went wrong. – Rasmus Kaj Nov 8 at 20:23
It output the expected HTML code. I have solved the problem but unfortunately am not entirely sure what was causing the problem. I'll try and find out and update when I have. Thanks for your help. – Pheter Nov 8 at 20:41

1 Answer

vote up 0 vote down

Are you using sqlite? If so, you need an absolute path for the db file, not a relative.

If thats not it, set DEBUG=True in your settings and let django tell you what it is.

link|flag
I am using mysql and the problem isn't with my database. The problem occurs somewhere between apache recieving the request and it being passed to django to handle. Running django locally works fine so no errors are produced. Running it over the internet causes problems and I cannot access it to view what the error messages would be. – Pheter Nov 8 at 13:22
As an alternative, it is possible to use email notification for getting the debug infos see stackoverflow.com/questions/1648349/… – luc Nov 8 at 13:23
1  
It's more probably some environmental difference between you running the manage command and apache running the server than an error before reaching django (or if the error is before django, there is probably something usefull in the default error log of apache). So enable debugging (or email-on-error, but then you also need to make sure that mail from the server can actually reach you) and check the error message. – Rasmus Kaj Nov 8 at 20:19
(Ignore previous message, didn't see your quote of the actual error message above) – Rasmus Kaj Nov 8 at 20:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.