Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update inc/wpsetup.inc auto updater script
script setup on centmin.sh menu option 22 wordpress auto install creates an cronjob script at /root/tools/wp_updater_${vhostname}.sh where vhostname = your site domain name. This script auto updates wordpress via wp-cli cmd tool however it's own wp-cli cli update command doesn't work as root user this doesn't work as root user /usr/bin/wp cli update --allow-root so changing and replacing that line in /root/tools/wp_updater_${vhostname}.sh with following manual update lines echo "update wp-cli" rm -rf /usr/bin/wp wget -cnv --no-check-certificate https://raw.github.com/wp-cli/builds/gh-pages/phar/wp-cli.phar -O /usr/bin/wp --tries=3 chmod 0700 /usr/bin/wp
- Loading branch information