andreschenkels/odoo-install-scripts

passlib library, New Dependency

carras opened this issue · 2 comments

After execute the script, I go to http://ip:8069 everything is working, but when I try to make a new DB I get a 500 and I'm not able to make it work again:

What can i do?

Internal Server Error

The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there is an error in the application.

@aschenkels-ictstudio i've just run into this issue through using my own fork of your script here:

https://github.com/lukebranch/openerp-install-scripts/blob/master/odoo-saas4/ubuntu-14-04/odoo_install.sh

The issue seems to have been introduced due to a new base module that is installed by default in newer iterations of the 8.0 branch called Password Encryption that depends on passlib.

I've resolved it by adding the following line in my fork of the script:

sudo pip install passlib

(line #92 in my fork)

Thnx lukebranch there was indeed a introduction of a new dependicie on ODOO's newer versions. I added the passlib library in the script. I'll close this bug.