Tag: WordPress
WP upgrade – need to lower security for time of upgrade
LOOSEN PERMISSIONS: Reset the permissions of all files to 1664 : 1find /path/to/site/ <span class="nt">-type</span> f <span class="nt">-exec</span> chmod 664 <span class="o">{}</span> <span class="se">\;</span> Reset permissions of directories to 1775 … Read More
NGINX config update for PHP7.2 from 7.0 upgrade
After upgrading to 18.04LTS, discovered the following in LEMP stack serving: /etc/nginx/site needs to be updated in the even of PHP7.2 upgrade from 7.0 This is the case for Ubuntu … Read More
WordPress – White Screen of Death – due to permissions
Update from the site root: e.g.: /var/www/site 123sudo find . -type f -exec chmod 664 {} + sudo find . -type d -exec chmod 775 {} + sudo chmod … Read More