This notice appears in the readme of almost all Dolibarr Modules.
Note: If this screen tell you there is no custom directory, check your setup is correct:
- In your Dolibarr installation directory, edit the ``````htdocs/conf/conf.php`````` file and check that
following lines are not commented:
``````php
//$dolibarr_main_url_root_alt ...
//$dolibarr_main_document_root_alt ...
``````
- Uncomment them if necessary (delete the leading ``````//``````) and assign a sensible value according
to your Dolibarr installation
- UNIX:
``````php
$dolibarr_main_url_root_alt = '/custom';
$dolibarr_main_document_root_alt = '/var/www/Dolibarr/htdocs/custom';
``````
- Windows:
``````php
$dolibarr_main_url_root_alt = '/custom';
$dolibarr_main_document_root_alt = 'C:/My Web Sites/Dolibarr/htdocs/custom';
``````