Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
10 Replies
23240 Tampilan

I created the folder in training openerp / addons and 4 file (init, openerp, training.py, and XML), and when I run the server with the camande "./openerp-server - addons-path = .. / openerp / addons "  it does not work,
there is a solution?

Thanx

Avatar
Buang
Penulis

it s odoo 8

Jawaban Terbai

Hello Othmane 

You need to give addons path like below.

python odoo.py --addons addons

Because you have put your module inside odoo/openerp/addons so from above code you can get all modules.

But if you have a diffrent modules path so you have to do :

if your module is in folder_a/modules

python odoo.py --addons addons,../../folder_a/modules

Hope that this answer will help you.

Please don't hesitate to ask any question regarding this.

Thank You

Avatar
Buang
Jawaban Terbai

Make sure that the addons directory you created is also readable by the odoo (openerp) server. On unix system you can do this by:

chown -R odoo:odoo /opt/odoo/custom/addons

replace the odoo:odoo with the user and group information the server is running under. Also adjust the path to yours.
 

 

 

 

Avatar
Buang
Jawaban Terbai

try this:

python odoo-bin --addons=addons,"/home/odoo-dev/odoo/local-addons/x"

where x is the directory containing one module at least (by scaffold execution)

option --save for save changes on /debian/odoo.conf file

it's works for me on odoo 10 

I hope helps you 

Avatar
Buang
Penulis Jawaban Terbai

Thank you Kazim, but it doesnt work :)

 

Avatar
Buang
Penulis

odoo.py --addons addons work, but when i use python odoo.py --addons addons,../../folder_a/modules dont work, and this is the error Usage: odoo.py [options] odoo.py: error: option --addons-path: no such directory: '../addons/Mylibrary2'

Right now your module is in odoo/openerp/addons directory so you just need to put "odoo.py --addons addons" and update module list with technical setting.

Penulis

ok i will see :)