webfaction 中的 ViewDoesNotExist
我在 webfaction 上使用 FTP 上传我的项目,现在使用 putty 登录。但是同一个项目工作正常,但上传后出现错误 viewdoesnotexist 我不知道我必须做什么更改,我是新手。是的! a 对 apache httpd.conf 进行了更改并创建了 scene_finder.wsgi。
ViewDoesNotExist 位于 /index 无法导入 scene_finder.views。错误是:没有名为视图的模块 请求方式:GET 请求网址:http://gbtech.webfactional.com/index Django 版本:1.3 异常类型:ViewDoesNotExist 异常值:
无法导入 scene_finder.views。错误是:没有名为 view 的模块
提前致谢
I upload my project using FTP on webfaction and now using putty i logged in. But same project is working fine but after uploading it is giving error viewdoesnotexist i dont know what changes i have to do i am a newbie. And yeah! a have made changes in apache httpd.conf and created scene_finder.wsgi.
ViewDoesNotExist at /index
Could not import scene_finder.views. Error was: No module named views
Request Method: GET
Request URL: http://gbtech.webfactional.com/index
Django Version: 1.3
Exception Type: ViewDoesNotExist
Exception Value:
Could not import scene_finder.views. Error was: No module named view
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的
scene_finder.wsgi
中,可能会有一些设置 PYTHONPATH 的代码。确保它包含/home/webapps/django/scene_finder/scene
。In your
scene_finder.wsgi
there'll probably be some code that sets up your PYTHONPATH. Make sure it includes/home/webapps/django/scene_finder/scene
.