I have tried to update my plugins in wordpress-admin but for some reason i am receiving an error “Unable to locate WordPress Content directory (wp-content)” I have checked on my server and the folder still exists. What is this cause of this and is there a quick fix?

4 s
I had the same issue, this is usually a permission of writing in specific folder, in my case I had to change the owner of the uploads/
directory, here is what I did in wp-content
directory:
sudo chown -R daemon uploads/
where the user daemon
is the owner of the process httpd
.
Hope this helps.