Storing your FTP details in WordPress

WordPress Logo
If WordPress keeps asking you for your FTP details, you can add them with the following code to your ‘wp-config.php’ file:

/** FTP connetcion details. */
define('FTP_HOST', 'add_your_ftp_host_here');
define('FTP_USER', 'add_your_ftp_username_here');
define('FTP_PASS', 'add_your_ftp_password_here');