Where does wordpress store the FTP credentials?

When wordpress asks for FTP information to upgrade, you type it in and then it seems to store it for future use (for future upgrades, and maybe also for media uploads?)

Where does it store these details? Is it in a file? In the database?

I'm trying to figure out what information is being used to access the server.

Tried grep-ing for ftp in the php files and didnt see anything. This also doesn't seem to be a setting that is exposed in the admin interface.

Thanks!

Topic uploads ftp Wordpress

Category Web


I came across something just now that might be an answer. Rarst says WP doesn't store FTP credentials in the DB but I just discovered in a MySQL dump file I was working on, that in the wp_options table, there is the following:

15122,'ftp_credentials','a:3:{s:8:\"hostname\";s:27:\"mysiteurl\";s:8:\"username\";s:7:\"myusernmae\";s:15:\"connection_type\";s:4:\"ftps\";}','yes'

As a value to be entered. I think that when permissions are messed up, and it asks for your credentials, those values might actually be stored in wp_options. This was in an old version of WP, 4.4.2, I think, but it was indeed in the database.


It doesn't. WP Filesystem API will ask for FTP credentials, but it will do so for each operation. They aren't stored persistently.

They can be stored persistently by hardcoding into wp-config.php, but WP won't do that itself, it's a user action.

Note that WP only asks for FTP credentials if it cannot modify files without them. If specific setup used to ask for them and stopped then likely the server configuration or file permissions had changed and now allow WP to manipulate files without going through FTP.

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.