Fixing wordpress asking for FTP credentials
We run one of our marketing sites with WordPress. It’s installed in a VM in Azure, however recently there was a problem when trying to install plugins.
The WordPress admin panel kept asking for an ftp connection details to install plugins.
If you want to set up FTP
Install proftpd
and ftp
client (to check if it works).
apt install proftpd ftp
Now you can edit the config file in /etc/proftpd/proftpd.conf
(not required).
To test if it works try connecting with your credentials:
ftp
open
127.0.0.1
your-username
your-password
If it works you can try issuing commands like ls
and cd
to navigate around, then quit
when you’re done.
Now you can provide those values in WordPress and it will use them whenever it needs to install/update plugins.
Since you’re using 127.0.0.1
as the ftp server, nothing will travel through the network. This makes it quite secure.
You may want to block port 21
on your firewall, just to make sure nobody else can connect to it.
Fix this without setting up FTP
I looked around a bit more and it turns out WordPress will ask for FTP credentials only if it can’t modify files directly.
To check if files can/can’t be modified, it will try to create a temporary file. If it fails, then it will swallow the exception and default to using FTP.
To prevent it from happening edit wp-config.php
and add this line:
define('FS_METHOD', 'direct');
Now if you try installing the plugin, it will give show you what is the issue. This will be something about not having write access to the path in which plugins are stored.
Fixing the permissions depends on the user your web server is running as and what type of installation you are using. If it’s standard www-data, then:
chown -R www-data path-to-wordpress/wp-content
Some people report it doesn’t work, but this one works: (this is definitely less secure)
chown -R www-data path-to-wordpress
Sometimes it’s apache user:
chown -R apache:apache wordpress
chmod u+wrx wordpress/*
And some people just don’t want to care about permissions, because it’s a separate instance that runs only one WordPress site, so they do:
chmod -R 777 path-to-wordpress
That one will work for sure, however anyone who can login to the server will be able to modify/execute those files.