我使用DjANGO创建了我的新网站
AT FIRST一切都好,startapp,syncdb ......等等
但问题就是按摩
未处理的例外 应用程序抛出了未处理的异常。
你可以看到 http://www.daqiqten.com/这是我的index.fsgi和.htacces
index.fcgi
#!/usr/bin/python
import sys, os
# Add a custom Python path. (optional)
sys.path.insert(0, "/home/daq")
# Switch to the directory of your project.
os.chdir("/home/daq/newproject")
# Set the DJANGO_SETTINGS_MODULE environment variable.
os.environ['DJANGO_SETTINGS_MODULE'] = "newproject.settings"
from django.core.servers.fastcgi import runfastcgi
runfastcgi(method="threaded", daemonize="false")
___________
.htacces
AddHandler fcgid-script .fcgi
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.fcgi/$1 [QSA,L]
答案 0 :(得分:1)
你的应用设置中是否开启了'DEBUG'?也许您将获得有关所引发的异常的更多信息。