From a51a6bc577017cd06155972a847bc4eb8b9f1afd Mon Sep 17 00:00:00 2001 From: Randy Bush Date: Sat, 4 Jul 2020 14:41:38 -0700 Subject: [PATCH] from wiki --- pages/WPupgrade.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pages/WPupgrade.md 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 +``` +