hi folk's
https://github.com/Dolibarr/dolibarr/pull/36525
could you please push this quick fix for dolibarr v22.0.3 ? It's a pain in the @ss for users.
Thanks a lot ! 

hi folk's
https://github.com/Dolibarr/dolibarr/pull/36525
could you please push this quick fix for dolibarr v22.0.3 ? It's a pain in the @ss for users.
Thanks a lot ! 

hello,
got same behavior tonight, after ubuntu reboot for security updates (clicked from notification panel, red button "Reboot", all my 26x Dolibarr instances restarted without putting the install.lock file back in place.
I recreate all of them at one using this in shell on cloudron :
#!/bin/bash
BASE_DIR="/home/yellowtent/appsdata"
for appdir in "$BASE_DIR"/*; do
if [ -d "$appdir/data/dolibarr" ]; then
LOCKFILE="$appdir/data/dolibarr/install.lock"
if [ ! -f "$LOCKFILE" ]; then
echo "Create $LOCKFILE"
touch "$LOCKFILE"
else
echo "$LOCKFILE already exist"
fi
else
echo "no dolibarr in $appdir"
fi
done
dunno what I should do to see why it doesn't work appropriately 
thanks for any help !
hello joseph
cloudron ask me to reboot whole OS for ubuntu security update
when I do, file /app/data/dolibarr/install.lock is missing after that reboot (which is critical for security reason).
I recreate them by hand (touch install.lock from ssh in OS, maybe I shouldn't to that...?).
On a later update ubuntu, they vanish again.
If I manually reboot (i.e command "reboot" in shell), they're gone too after the reboot.
I dunno where to look at to see exactly what's happening. Is it container side ? or OS side ?
Provided above logs are from container side and there is nothing about the lock file...
thanks a lot for the update, it works and was able to put this option on my apps.
hello james
I have a reboot pending on server with multiple dolibarr inside.
I don't use any volumes.
What should I look at before and after reboot to be sure to catch the right information for debugging ?
Thanks !
okay thanks for your reply James ! how to do so ?
dolibarr hasn't that option unfortunately... 
hello
I want to change SMTP informations on email sender in /admin/const.php or in /admin/mails.php but changes does not survive after a update / reboot of container (and I guess that it's const.php that override mails.php options...?).
Is there any way to change this behavior ?
Thanks !
another question :
I used recovery mode as it suits my needs better for a super short fix, thx a lot james !
thanks for your reply James !
does option 1 still backup normally ?
EDIT : in recovery mode, app is not accessible anymore saying "app is curretly inaccessible"
hi
need to put this fix in place before 22.0.2 is released : https://github.com/Dolibarr/dolibarr/pull/35228
but as I understand, core files of Dolibarr are readonly.
Is it possible to do so (from cloudron server directly maybe ?)
thanks !
before reboot : https://paste.cloudron.io/cigojugite.yaml
after reboot : https://paste.cloudron.io/ilulajihon.yaml
forum says i can't upload file here 
Error
You do not have enough privileges for this action.
where should I check exactly to see what happend ?
hi
just noticed this, after a reboot of cloudron (v8.3.2 (Ubuntu 24.04.1 LTS) all my install.lock files disappear of all my dolibarr instances 
Even if permission on file is www-data or root...
Have to manually recreate them each time.
Someone could reproduce ?
Thanks
Hi folks
I'm trying to put some external modules from https://dolistore.com but folder mounting seems wrong because almost all modules need to have access to "main.inc.php" and they're searching for [../../../main.inc.php]-like folder instead of [../../../../code/htdocs/main.inc.php]
This result in error "Include of main failed" when trying to open a custom module page.
see below :
here is an example of custom module, it looks for main.inc.php 1 + 2 + 3 folders above and fail.

here is the folder locating main.inc.php (/app/code/htdocs/)

below I open /app/data/custom/ouvrage/list.php (which is a custom module) and modified inside the green rectangle to have the pass correctly fetched :

is someone having the same issue ?
thanks !