我使用瓶子为 OpenERP 创建了一个 api,当我尝试使用 apache 配置 wsgi 时。
在 apache 服务器日志中导入时,它显示
ImportError:没有名为 api 的模块
我检查了当前目录它打印 cwd 并且导入文件在同一目录中仍然显示错误
在这里,我上传了我的 wsgi 代码
import os
os.chdir(os.path.dirname(__file__))
import bottle
print os.getcwd()
import api as application
application = bottle.defaut_app()