I upgrade a module that I made but for some reason it broke openerp, now I cant logged in and need openerp to not load that module, how can I do that?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
Hi,
use pgadminIII and go to the table ir_module_module, search the line of your module, and change field state to "uninstalled" (without quote).
bye
First you have to make that module error free and update that module from terminal in you are using ubuntu.
You can update module from terminal by -d your_database_name -u your_module_name
options.
For example:
python openerp-server ../addons,../openerp-web/addons -d my_test_db -u my_custom_module
Here, -d
means database -u
means update
This options will update my module in OpenERP database.
You can find more options by --help
.
Instead of that the esay way is to just delete or move the module folder from addons folder and then restart OpenERP server and try to log in. You will be able to login easily! :)
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng kýBài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
---|---|---|---|---|
|
2
thg 5 25
|
1567 | ||
|
0
thg 3 24
|
1386 | ||
|
2
thg 11 16
|
5593 | ||
|
3
thg 2 16
|
16297 | ||
|
1
thg 3 15
|
4005 |
How can I updated it from terminal?