odoo-server

Why am I getting “Internal Server Error” running two Odoo instances (same domain but different ports)?

偶尔善良 提交于 2020-01-11 08:43:28
问题 I have two instances of Odoo in a server in the cloud. If I make the following steps I get "Internal Server Error": I make login in the first instance ( http://111.222.33.44:3333 ) I close the session I load the address of the second instance in the same browser ( http://111.222.33.44:4444 ) If I want to work in the second instance (in another port), I need to remove the browser cookies first to acces to the other Odoo instance. If do this everything works fine. If I load them in differents

Why am I getting “Internal Server Error” running two Odoo instances (same domain but different ports)?

巧了我就是萌 提交于 2019-12-01 17:49:10
I have two instances of Odoo in a server in the cloud. If I make the following steps I get "Internal Server Error": I make login in the first instance ( http://111.222.33.44:3333 ) I close the session I load the address of the second instance in the same browser ( http://111.222.33.44:4444 ) If I want to work in the second instance (in another port), I need to remove the browser cookies first to acces to the other Odoo instance. If do this everything works fine. If I load them in differents browsers (Firefox and Chromium) at the same time, they work well as well. It's not a NginX issue because

setup script exited with error: command 'x86_64-linux-gnu-gcc' failed with exit status 1

怎甘沉沦 提交于 2019-11-26 13:56:47
When I try to install odoo-server , I got the following error: error: Setup script exited with error: command 'x86_64-linux-gnu-gcc' failed with exit status 1 Could anyone help me to solve this issue? Fred Python.h is nothing but a header file. It is used by gcc to build applications. You need to install a package called python-dev. This package includes header files, a static library and development tools for building Python modules, extending the Python interpreter or embedding Python in applications. enter: $ sudo apt-get install python-dev or # apt-get install python-dev see http://www

setup script exited with error: command 'x86_64-linux-gnu-gcc' failed with exit status 1

北城以北 提交于 2019-11-26 02:39:35
问题 When I try to install odoo-server , I got the following error: error: Setup script exited with error: command \'x86_64-linux-gnu-gcc\' failed with exit status 1 Could anyone help me to solve this issue? 回答1: Python.h is nothing but a header file. It is used by gcc to build applications. You need to install a package called python-dev. This package includes header files, a static library and development tools for building Python modules, extending the Python interpreter or embedding Python in