diff --git a/pages/WPupgrade.md b/pages/WPupgrade.md new file mode 100644 index 0000000..3604365 --- /dev/null +++ b/pages/WPupgrade.md @@ -0,0 +1,31 @@ +# Configuring WordPress? Auto-Upgrade + +``` +apt-get install libapache2-mod-suphp +a2enmod suphp +``` + +Edit `` and change + +``` +suPHP_Engine off +``` + +to + +``` +suPHP_Engine on +``` + +and + +``` +service apache2 restart +``` + +Fiddle with `/etc/suphp/suphp.conf` and make sure the docroot is the wordpress install and min_uid/min_gid < id-of(www-data)/gid-of(www-data) + +``` +chown -R www-data.www-data +``` +