Siirry sisältöön
Menu
Sinun on rekisteröidyttävä, jotta voit olla vuorovaikutuksessa yhteisön kanssa.
Tämä kysymys on merkitty
1 Vastaa
224 Näkymät

Bonjour à tous,

Nous rencontrons un problème avec le fonctionnement de modules personnalisés (addons) sur Odoo 18 Community, installé sous Windows 11.

Odoo fonctionne correctement, mais nos modules custom ne s’exécutent pas (routes HTTP non actives).

Contexte

  • Version Odoo : 18.0-20251007
  • Installation : via l’installeur Windows officiel
  • Base de données : PostgreSQL local
  • Dossier custom addons : C:\odoo_addons
  • Configuration dans odoo.conf :
addons_path = "c:\program files\odoo 18.0.20251007\server\odoo\addons","C:\odoo_addons"

Exemple de module de test

Nous avons créé un module ultra simple test_hello_world pour vérifier le chargement des modules custom :

test_hello_world/
├── __manifest__.py
├── __init__.py
└── controllers/
    ├── __init__.py
    └── main.py

__manifest__.py :

{
    'name': 'Test Hello World',
    'version': '1.0',
    'summary': 'Module minimal pour tester le chargement des modules custom',
    'author': 'Daniel',
    'category': 'Website',
    'depends': ['website'],
    'data': [],
    'installable': True,
    'application': False,
    'license': 'LGPL-3',
}

controllers/main.py :

from odoo import http

class HelloWorldController(http.Controller):

    @http.route('/hello', type='http', auth='public', website=True)
    def hello(self, **kwargs):
        return "<h1>✅ Hello World depuis un module custom Odoo !</h1>"

Problème observé

  • Le module apparaît bien dans la liste des applications.
  • Il peut être installé sans erreur.
  • Mais la route /hello retourne une erreur 404 :

    Cette page n'existe pas, mais vous pouvez la créer si vous êtes éditeur de ce site.

Dans les logs, on ne voit aucune trace de chargement du module test_hello_world :

GET /hello HTTP/1.1" 404

et aucune ligne du type :

module test_hello_world: loading ...

Autres observations

  • Le chemin C:\odoo_addons est bien dans addons_path.
  • D’autres modules custom (ex : event_access_restriction_priority) se comportent pareil : visibles mais sans effet.
  • Redémarrage du service Odoo effectué après chaque modification.
  • Testé avec odoo-bin -u test_hello_world -d daniel_project --log-level=debug → pas d’erreur, mais pas de route non plus.

Question

Quelqu’un saurait-il pourquoi les routes HTTP des modules custom ne sont pas chargées sur Odoo 18 Windows,

malgré une configuration correcte du addons_path et des manifests valides ?

Faut-il ajouter un paramètre spécifique ou une configuration supplémentaire pour que les contrôleurs http.Controller soient exécutés ?

Merci d’avance pour votre aide

Avatar
Hylkää
Paras vastaus

Hi,


A user running Odoo 18 Community on Windows 11 reported that while Odoo itself works fine, their custom modules (addons) are not functioning properly — specifically, the HTTP routes defined in those modules are not becoming active.


In this setup, Odoo version 18.0 (build 20251007) was installed using the official Windows installer, with a local PostgreSQL database. The user configured a custom addons directory at C:\odoo_addons and added it to the addons_path in odoo.conf as:

addons_path = "c:\program files\odoo 18.0.20251007\server\odoo\addons","C:\odoo_addons".


To test, they created a simple custom module named test_hello_world with a controller defining the route /hello. The module installed correctly and appeared in Odoo’s list of applications, but when visiting /hello, Odoo returned a 404 error saying the page does not exist.


Upon checking the logs, they found no evidence that the module was being loaded — there were no “loading…” lines for test_hello_world, only the 404 error for the route request. The issue was consistent across other custom modules as well.


The user confirmed that the custom path was correctly listed in addons_path, and they had also restarted the Odoo service after every change. They even ran the command odoo-bin -u test_hello_world -d daniel_project --log-level=debug, which executed without errors but still failed to register the route.


Finally, the user asked the community if anyone knew why HTTP routes from custom modules fail to load on Odoo 18 Windows, despite having a correct configuration and valid manifests — or if any extra configuration is needed to make http.Controller routes work properly.


Hope it helps

Avatar
Hylkää
Aiheeseen liittyviä artikkeleita Vastaukset Näkymät Toimenpide
2
elok. 25
838
2
kesäk. 25
1201
2
syysk. 25
627
1
kesäk. 25
1215
2
toukok. 25
1186