from wiki

This commit is contained in:
Randy Bush 2020-07-04 14:41:38 -07:00
parent 6997c1cb37
commit a51a6bc577

31
pages/WPupgrade.md Normal file
View file

@ -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 <wordpress install>
```