Difference between revisions of "FAQ Repertoire Custom Module Externe"
Jump to navigation
Jump to search
Rdoursenaud (talk | contribs) m (Typos/Orthographe/Grammaire) |
|||
Line 25: | Line 25: | ||
Par exemple pour un système UNIX/Linux/MacOS X : | Par exemple pour un système UNIX/Linux/MacOS X : | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
$dolibarr_main_url_root = 'http://localhost/Dolibarr/htdocs'; | $dolibarr_main_url_root = 'http://localhost/Dolibarr/htdocs'; | ||
Line 42: | Line 32: | ||
Par exemple pour un système Microsoft Windows : | Par exemple pour un système Microsoft Windows : | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
$dolibarr_main_url_root = 'http://localhost/Dolibarr/htdocs'; | $dolibarr_main_url_root = 'http://localhost/Dolibarr/htdocs'; |
Revision as of 09:46, 9 August 2016
Pourquoi le module que j'ai installé n’apparaît pas ?
- Certains modules se déploient dans le répertoire /htdocs/custom
Dans votre répertoire d'installation de Dolibarr ouvrez le fichier htdocs/conf/conf.php
- Trouvez les lignes suivantes :
//$dolibarr_main_url_root_alt=…
//$dolibarr_main_document_root_alt=…
ou
#$dolibarr_main_url_root_alt=…
#$dolibarr_main_document_root_alt=…
- Supprimez les "//" (ou le "#") de ces lignes et affectez une valeur cohérentes par rapport à votre installation de Dolibarr en vous référant aux lignes
$dolibarr_main_url_root=… et $dolibarr_main_document_root=…
Par exemple pour un système UNIX/Linux/MacOS X :
$dolibarr_main_url_root = 'http://localhost/Dolibarr/htdocs'; $dolibarr_main_document_root = '/var/www/Dolibarr/htdocs'; $dolibarr_main_url_root_alt = '/custom'; $dolibarr_main_document_root_alt = '/var/www/Dolibarr/htdocs/custom';
Par exemple pour un système Microsoft Windows :
$dolibarr_main_url_root = 'http://localhost/Dolibarr/htdocs'; $dolibarr_main_document_root = 'C:/My Web Sites/Dolibarr/htdocs'; $dolibarr_main_url_root_alt = '/custom'; $dolibarr_main_document_root_alt = 'C:/My Web Sites/Dolibarr/htdocs/custom';