Why does WordPress require a ftp server to be running on the webserver to transfer plugins?

I had asked a related question on Super User: A use case of a system “receiving” files over FTP would be, for example, the way WordPress plugins are installed via 1-click where WordPress initiates a file transfer to the local Linux box from the remote WordPress plugin repository using ftp(s) More specifically this screen: My … Read more

Why does WordPress still not support SFTP?

It has been many years now with WordPress 2, WordPress 3 and now even WordPress 4 which is expected to be released shortly that WordPress Publishing Platform does not support SFTP as the option to upload themes, download upgrades and configure plugins? Many other platforms such as MovableType and ExpressionEngine and Umbraco are also enterprise … Read more

How to save Admin FTP password

Every time I attempt to upload a plugin or theme, I am asked for the FTP password. Is there a way to save this within WordPress, or do I have to enter it every time? Thanks. 2 s 2 You can save this information on your wp-config.php file: define(‘FTP_HOST’, ‘ftp_host’); define(‘FTP_USER’, ‘ftp_username’); define(‘FTP_PASS’, ‘ftp_password’); More … Read more