我试图在共享的webhost上部署django,这不是特定于django的。主机提供旧版本的python安装,但由于我有ssh访问能力,我设法通过在我的主文件夹中本地安装我需要的模块(包括django)来扩展python安装。 好吧,所以我创建了django项目,做了需要做的调整(设置PYTHONPATH和PATH全局等),制作django.fcgi脚本启动django并从shell执行./django.fcgi。 这是回复:
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!
Traceback (most recent call last):
File "/home/tentacle/lib/python2.4/site-packages/flup-1.0.3.dev_20110405-py2.4.egg/flup/server/fcgi_base.py", line 574, in run
protocolStatus, appStatus = self.server.handler(self)
File "/home/tentacle/lib/python2.4/site-packages/flup-1.0.3.dev_20110405-py2.4.egg/flup/server/fcgi_base.py", line 1159, in handler
result = self.application(environ, start_response)
File "/home/tentacle/lib/python2.4/site-packages/django/core/handlers/wsgi.py", line 272, in __call__
response = self.get_response(request)
File "/home/tentacle/lib/python2.4/site-packages/django/core/handlers/base.py", line 169, in get_response
response = self.handle_uncaught_exception(request, resolver, sys.exc_info())
File "/home/tentacle/lib/python2.4/site-packages/django/core/handlers/base.py", line 202, in handle_uncaught_exception
from django.views import debug
File "/home/tentacle/lib/python2.4/site-packages/django/views/debug.py", line 9, in <module>
from django.template import (Template, Context, TemplateDoesNotExist,
File "/home/tentacle/lib/python2.4/site-packages/django/template/__init__.py", line 53, in <module>
from django.template.base import (ALLOWED_VARIABLE_CHARS, BLOCK_TAG_END,
MemoryError
Status: 500 Internal Server Error
Content-Type: text/html
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>Unhandled Exception</title>
</head><body>
<h1>Unhandled Exception</h1>
<p>An unhandled exception was thrown by the application.</p>
</body></html>
所以,我知道这个问题是关于我的用户有限的内存(错误?),但它是如此之低,以至于我无法运行裸django? 只是因为事情变得更糟,一个月前同一个提供商给了我一个测试帐户,而且不仅可以运行django,而且可以安装本地更新版本的python并运行它。 我确实向我的网站主机支持寻求帮助,但我没有得到任何有用的答案。此外,由于他们是经销商,我不太确定他们有多少帮助。
有没有办法克服这个问题?欢迎提出任何建议。
提前致谢
-----------------------------------更新----------- ---------------------------------------
#!/home/<username>/bin/python
import os, sys
sys.path.insert(0, "/home/<username>/djangoprojects")
sys.path.insert(0, "/home/<username>/djangoprojects/testproject")
os.environ['PATH']= "/home/<username>/bin:"+os.environ['PATH']
os.environ['DJANGO_SETTINGS_MODULE'] = 'testproject.settings'
from django.core.servers.fastcgi import runfastcgi
runfastcgi(method="threaded", daemonize="false")
这就像我的配置。我必须承认有一点错误(解释器路径),但'settings'文件路径很好。
在将解释器路径更正为正确之后,首先我得到 StringError (其中一个djangos文件中的一些三重引用文档字符串未关闭 - 嗯,几乎没有),而不是下次运行< strong> MemoryError ,再次 MemoryError 等等。过了一会儿(一小时)我试图再次执行脚本(没有进一步的更改)并不断结束分段错误(核心转储)。
有什么建议吗?
答案 0 :(得分:0)
从命令行运行它时,需要显式指定Django参数。假设您从settings.py
所在的文件夹中运行脚本:
import os, sys
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
# ... rest of your startup script...
另外,请检查.htaccess
文件的RewriteRule
脚本是否仍然正确.fcgi
。