我尝试用FastCGI安装Django但没有成功!它给了我一个500错误,但如果我在shell上执行我的./dispatch.fcgi它给了我“它的工作!” Django的HTML页面。
这是我的网址http://mydjango.webmashing.com
我的dispatch.fcgi文件是
#!/usr/bin/python
import sys, os
sys.path.insert(0, "/home/webmashi/.local/lib/python")
os.chdir("/home/webmashi/.local/lib/python/myproject")
os.environ['DJANGO_SETTINGS_MODULE'] = "myproject.settings"
from django.core.servers.fastcgi import runfastcgi
runfastcgi(method="threaded", daemonize="false")
.htaccess文件:
AddHandler fcgid-script .fcgi
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ dispatch.fcgi/$1 [QSA,L]
答案 0 :(得分:2)
我将我的python版本从2.4更新到2.6并且它有效:)