SuiteCRM 8.x: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 15: | Line 15: | ||
./bin/console suitecrm:app:upgrade -t "<version>" | ./bin/console suitecrm:app:upgrade -t "<version>" | ||
./bin/console suitecrm:app:upgrade-finalize -t "<version>" | ./bin/console suitecrm:app:upgrade-finalize -t "<version>" | ||
</pre> | |||
Then reset permissions | |||
= Reset Permissions = | |||
<pre> | |||
find . -type d -not -perm 2755 -exec chmod 2755 {} \; | |||
find . -type f -not -perm 0644 -exec chmod 0644 {} \; | |||
find . ! -user www-data -exec chown www-data:www-data {} \; | |||
chmod +x bin/console | |||
</pre> | </pre> | ||
Revision as of 10:30, 19 January 2024
Cron Jobs
sudo crontab -e -u www-data
Update
Download and put file in:
/tmp/package/upgrade/
then run commands:
./bin/console suitecrm:app:upgrade -t "<version>" ./bin/console suitecrm:app:upgrade-finalize -t "<version>"
Then reset permissions
Reset Permissions
find . -type d -not -perm 2755 -exec chmod 2755 {} \;
find . -type f -not -perm 0644 -exec chmod 0644 {} \;
find . ! -user www-data -exec chown www-data:www-data {} \;
chmod +x bin/console