My cPanel Cron job =
*/15 * * * * /usr/local/bin/ea-php73 /my-domain/public_html/owncloud/occ user:sync -vvv -n --missing-account-action=“disable” -r “OCA\User_LDAP\User_Proxy”
I received an email notification =
« The backend <OCA\User_LDAP\User_Proxy> does not exist. Did you forget to enable the app? »
Someone know how to enable the app?
dmitry
2
The command is correct, the quotes are wrong.
Use "
instead of “
This works:
occ user:sync -vvv -n --missing-account-action="disable" -r "OCA\User_LDAP\User_Proxy"
you can also shorten it to
occ user:sync -vvv -n --m disable -r "OCA\User_LDAP\User_Proxy"
1 Like
Thank you. I am french (Québec) … 
1 Like
dmitry
4
You are very welcome. I am german (Nuremberg) 
1 Like