Python 错误openerp.addons.website.models.ir_http:500内部服务器错误:从odoo注销后

Python 错误openerp.addons.website.models.ir_http:500内部服务器错误:从odoo注销后,python,openerp,odoo-9,odoo-website,Python,Openerp,Odoo 9,Odoo Website,我正在使用Ubuntu14.04中的OdooV9社区,在完成所有工作后,安装工作已经完美完成 但当我安装odoo的网站模块并从odoo注销后,它显示以下错误: “500:内部服务器错误” 和我的日志: "Traceback (most recent call last): File "/opt/odoo96/addons/website/models/ir_http.py", line 242, in _handle_exception response = super(ir_htt

我正在使用Ubuntu14.04中的OdooV9社区,在完成所有工作后,安装工作已经完美完成

但当我安装odoo的网站模块并从odoo注销后,它显示以下错误: “500:内部服务器错误” 和我的日志:

"Traceback (most recent call last):
  File "/opt/odoo96/addons/website/models/ir_http.py", line 242, in _handle_exception
    response = super(ir_http, self)._handle_exception(exception)
  File "/opt/odoo96/openerp/addons/base/ir/ir_http.py", line 147, in _handle_exception
    return request._handle_exception(exception)
  File "/opt/odoo96/openerp/http.py", line 738, in _handle_exception
    return super(HttpRequest, self)._handle_exception(exception)
  File "/opt/odoo96/openerp/addons/base/ir/ir_http.py", line 172, in _dispatch
    result = request.dispatch()
  File "/opt/odoo96/openerp/http.py", line 769, in dispatch
    r = self._call_function(**self.params)
  File "/opt/odoo96/openerp/http.py", line 316, in _call_function
    return checked_call(self.db, *args, **kwargs)
  File "/opt/odoo96/openerp/service/model.py", line 118, in wrapper
    return f(dbname, *args, **kwargs)
  File "/opt/odoo96/openerp/http.py", line 309, in checked_call
    result = self.endpoint(*a, **kw)
  File "/opt/odoo96/openerp/http.py", line 888, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo96/openerp/http.py", line 466, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo96/addons/website/controllers/main.py", line 44, in index
    return request.registry['ir.http'].reroute(first_menu.url)
  File "/opt/odoo96/addons/website/models/ir_http.py", line 209, in reroute
    return self._dispatch()
  File "/opt/odoo96/addons/website/models/ir_http.py", line 175, in _dispatch
    key = self.get_page_key()
  File "/opt/odoo96/addons/website/models/ir_http.py", line 94, in get_page_key
    return (self._name, "cache", request.uid, request.lang, request.httprequest.full_path)
AttributeError: 'Request' object has no attribute 'full_path'"
但当我卸载web模块时,所有模块都再次正常工作。我怎样才能解决这个问题

谢谢

这是一个依赖性问题。 安装更新版本的werkzeug

pip安装werkzeug==0.9.4

应该可以做到这一点。

这是一个依赖性问题。 安装更新版本的werkzeug

pip安装werkzeug==0.9.4


应该这样做。

如何从命令行卸载web模块?我的安装工作正常,我对网站进行了修改,现在出现了错误。如何从命令行卸载web模块?我的安装正在运行,我对网站进行了修改,现在我发现了这个错误。