Skip to Content
Menu
This question has been flagged
1 Reply
9313 Views

Installed odoo 9.0, the CSS and JS files are not loading into the web interface. Shows 404 even the files exists in directory. The same question posted here

http://stackoverflow.com/questions/35122765/unable-to-run-odoo-properly-in-mac-os-x


Getting error:

2016-02-01 14:39:38,308 1712 ERROR anshad werkzeug: Error on request:

Traceback (most recent call last):

File "/Library/Python/2.7/site-packages/werkzeug/serving.py", line 177, in run_wsgi

execute(self.server.app)

File "/Library/Python/2.7/site-packages/werkzeug/serving.py", line 165, in execute

application_iter = app(environ, start_response)

File "/Users/anshad/Desktop/odoo/openerp/service/server.py", line 245, in app

return self.app(e, s)

File "/Users/anshad/Desktop/odoo/openerp/service/wsgi_server.py", line 184, in application

return application_unproxied(environ, start_response)

File "/Users/anshad/Desktop/odoo/openerp/service/wsgi_server.py", line 170, in application_unproxied

result = handler(environ, start_response)

File "/Users/anshad/Desktop/odoo/openerp/http.py", line 1488, in __call__

return self.dispatch(environ, start_response)

File "/Users/anshad/Desktop/odoo/openerp/http.py", line 1652, in dispatch

result = ir_http._dispatch()

File "/Users/anshad/Desktop/odoo/openerp/addons/base/ir/ir_http.py", line 186, in _dispatch

return self._handle_exception(e)

File "/Users/anshad/Desktop/odoo/openerp/addons/base/ir/ir_http.py", line 157, in _handle_exception

return request._handle_exception(exception)

File "/Users/anshad/Desktop/odoo/openerp/http.py", line 781, in _handle_exception

return super(HttpRequest, self)._handle_exception(exception)

File "/Users/anshad/Desktop/odoo/openerp/addons/base/ir/ir_http.py", line 182, in _dispatch

result = request.dispatch()

File "/Users/anshad/Desktop/odoo/openerp/http.py", line 840, in dispatch

r = self._call_function(**self.params)

File "/Users/anshad/Desktop/odoo/openerp/http.py", line 316, in _call_function

return checked_call(self.db, *args, **kwargs)

File "/Users/anshad/Desktop/odoo/openerp/service/model.py", line 118, in wrapper

return f(dbname, *args, **kwargs)

File "/Users/anshad/Desktop/odoo/openerp/http.py", line 309, in checked_call

result = self.endpoint(*a, **kw)

File "/Users/anshad/Desktop/odoo/openerp/http.py", line 959, in __call__

return self.method(*args, **kw)

File "/Users/anshad/Desktop/odoo/openerp/http.py", line 509, in response_wrap

response = f(*args, **kw)

File "/Users/anshad/Desktop/odoo/openerp/addons/web/controllers/main.py", line 505, in load_locale

addons_path = http.addons_manifest['web']['addons_path']

KeyError: 'web'

Avatar
Discard
Best Answer

Create xml file whee you put:

<template id="assets_my_id" inherit_id="web.assets_backend"> 
<xpath expr="." position="inside">
LINK TO YOUR CSS AND JS
</xpath>
</template>


Then in __openerp__.py:

 'qweb' : ["PATH TO YOUR XML",],


then run in console:

chown -R odoo:odoo PATH TO ADDONS FOLDER
Avatar
Discard
Related Posts Replies Views Activity
1
Oct 22
3308
1
Jun 17
2933
0
Jan 16
2381
3
Dec 15
12458
0
Oct 16
2640