How to fix this error.
I tried to add new module, and updated app list but I got this error
odoo.addons.base.models.ir_module: ALLOW access to module.update_list on [] to user __system__ #1 via 127.0.0.1
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
How to fix this error.
I tried to add new module, and updated app list but I got this error
odoo.addons.base.models.ir_module: ALLOW access to module.update_list on [] to user __system__ #1 via 127.0.0.1
I am facing same issue on odoo 18 while adding estate.property module, what is solution to get rid of this error
This usually pops up when Odoo can't properly update the module list due to permission issues. Let's break down how to fix it step by step:
### **Quick Fix (Most Common Solution)**
1. **Restart the Odoo Server**
- Sometimes, a simple server restart resolves it.
- If using a terminal:
```bash
sudo service odoo restart # For systemd (Ubuntu)
```
- Or kill and restart manually if running in dev mode.
2. **Check File Permissions**
- Ensure the Odoo user has write access to the `addons` folder.
- Run:
```bash
sudo chown -R odoo:odoo /path/to/odoo/addons
sudo chmod -R 755 /path/to/odoo/addons
```
3. **Force Update via Command Line**
- If the UI fails, try updating the module list manually:
```bash
odoo-bin -d your_db_name --update=all --stop-after-init
```
---
### **If the Error Persists**
- **Check the Odoo Logs** (`/var/log/odoo/odoo-server.log`) for more clues.
- **Database Corruption?** Try creating a new test database to see if the issue is DB-specific.
- **Proxy/Network Issue?** If behind a proxy (like Nginx), ensure requests to `/web/database/selector` aren’t blocked.
---
### **Pro Tip**
If you’re in **development mode**, this error can sometimes be ignored—just refresh the page or clear your browser cache (`Ctrl+F5`).
Hello
I tried to add new module, and updated app list but I got this error
Make sure to ___manifest__.py file code as following an existing odoo module.
Facing same issue in odoo17e.
odoo.addons.base.models.ir_module: ALLOW access to module.update_list on [] to user admin #2 via 192.168.2.1
相关帖文 | 回复 | 查看 | 活动 | |
---|---|---|---|---|
|
1
7月 24
|
1349 | ||
|
2
2月 25
|
3235 | ||
|
0
6月 21
|
1824 | ||
|
1
8月 24
|
2745 | ||
|
4
1月 24
|
13597 |