Adam McKenna
Adam McKenna

Reputation: 2445

Grant WordPress permenant access to Web Server

I have a WordPress website that has been installed onto a Linode server. Every time I attempt to install/update a theme or plugin, I am presented with this screen:

enter image description here

I cannot connect to the server via this screen as the server requires a SFTP connection. How can I stop this screen from being displayed? Is it possible to grant WordPress permenant access to my web server?

Upvotes: 2

Views: 41

Answers (1)

Twobard
Twobard

Reputation: 2583

It's a permissions issue, you need to run the following command:

sudo chown -R www-data:www-data /var/www

Upvotes: 1

Related Questions