This is what the page says after trying to update.
View post on imgur.com
I did going from 4.8.1 to 4.8.2 while it claim to update it didn’t fix the issue of the auto updater failing everything I try and use it.
How is your site hosted?
There should be something in the logs.
Its on a vps I manage, where can I find the logs?
I’d start in /var/log and look for php error logs and apache or http error logs.
Nothing in my error logs gets updated when I try and do an update.
What is the ownership and permissions on your WP directory tree? Are you running mod_php or php_fpm? If the latter, what is the user under which PHP is running. If the former, what is the user under which apache or httpd is running?
Its been so long since I messed with what form of PHP I am running and permissions something that I also haven’t looked at in forever. I do know prior to 4.8 the dashboard did work and updated things just fine.
However, that’s not an answer to my question. 🙂
That is I forgot how to do that.
cd /path/to/wordpress
ls -al
ls -al wp-content
ls -al wp-admin
Are you using nginx or httpd?
cd /var/www
sudo chown -R www-data:www-data html
That will give your webserver the ability to do updates. You have the files owned by a mishmash, but mainly root.
That did it, I wasn’t looking far enough up the tree, thank you.