2016-12-07 1 views
0

에서 누락 된odoo는 addson에 설치된 9 주제는 내가 방랑을 (우분투/trusty32)를 사용하여 버추얼에 odoo 앱 설치

나는 다음과 같은 사용 odoo을 설정

:

vagrant init ubuntu/trusty32 
in Vagrantfile 
    config.vm.network "private_network", ip: "55.55.55.7" 
vagrant reload 


vagrant ssh 
sudo su 
wget -O - https://nightly.odoo.com/odoo.key | apt-key add - 
echo "deb http://nightly.odoo.com/9.0/nightly/deb/ ./" >> /etc/apt/sources.list 
apt-get update && apt-get install odoo 
sudo -u postgres createuser -s odoo 

사용 애드온 디렉토리를 발견 :

# cd /etc/odoo/ 
# cat openerp-server.conf 
[options] 
; This is the password that allows database operations: 
; admin_passwd = admin 
db_host = False 
db_port = False 
db_user = odoo 
db_password = False 
addons_path = /usr/lib/python2.7/dist-packages/openerp/addons 

https://www.odoo.com/documentation/9.0/howtos/themes.html

를 사용 /usr/lib/python2.7/dist-packages/openerp/addons의 테마를 만들어

Installing your theme 
To install your theme, you just place your theme folder inside addons in your Odoo installation. 

After that, navigate to the Settings page, look for your theme and click on the install button. 

을하지만 주제는 (http://55.55.55.7:8069/web#menu_id=86&action=78를) 설정에 표시하거나 앱 목록에서하지 않습니다이다 17,451,515,

는 말한다.

답변