from which directory in debian linux to put the module I downloaded from dolistore?
I tried to extract the module in /usr/share/dolibarr/htdocs but no luck
I even tried to extract the module in /var/lib/dolibarr/documents but it seems that I am not getting the right directory…
please help me on this…
Hi,
Go Home -> Admin tools -> Upgrade / Extend Brwose module and clik Submit Query
Hi Ndrosis,
Thank you very much for your reply.
I already extracted the zip module file to this directory /usr/share/dolibarr/htdocs/custom, which file I have to select?
I tried also choosing the zip file and press submit query but nothing happened.
Also, I tried to extract it to /var/www/dolibarr/htdocs but also no luck
Hi guys i did my research and tried my best for any possible options and solutions but totally not working for me. I cannot find the external module in the list of modules…
To all Linux especially Debian users, please please please help me on how and where to put the external module in debian directory?
is it issue with file permission? or is it because I used and restored my database from my previous dolibarr installation that’s why I cannot find the external module in the list of modules?
Thanks…
I am using standalone debian linux server and not a web server…
Check the permissions on files and folders in module.
The directory for module is /usr/share/dolibarr/htdocs/custom
Permissions
files = 644
folders = 755
I did the below command but it’s not working also…
Hi sarksloane try this command
for directories
find /usr/share/dolibarr/htdocs/custom -type d -exec chmod 755 {} \;
for files
[code]
find /usr/share/dolibarr/htdocs/custom -type f -exec chmod 644 {} ; [/code
Hi ndrosis,
I tried the below command and it worked. For the information of everyone using debian linux. What I did was after issuing the below command, go to the file system and locate the module then right click on external module folder and click the properties. I changed the permission Access file as you can see in the below image. It worked for me! fortunately the module is included in the list.
setfacl -m user:sark:rwx /usr/share/dolibarr/htdocs/‘folder name of the module’
Thank you very much ndrosis for your help and support