Putting FTP Info in wp-config

 

wp-config.php (NO FTP)
 define('FS_METHOD', 'direct'); (copy from sublime)

wp-config.php (FTP)
 define('FS_METHOD', 'ftpext');
 define('FTP_BASE', '/home/....');
 define('FTP_USER', 'username');
 define('FTP_HOST', 'host.com');
 define('FTP_SSL', false);

DB:
wp_options: option_name = ftp_credentials

Putting FTP Info in wp-config tutorial:
https://digwp.com/2010/11/ftp-in-wpconfig/

PLUGIN:
ftp-access plugin

EXTRA INFO (db & etc)
https://www.binarymoon.co.uk/2010/07/easy-wordpress-updates-store-ftp-info-wpconfigphp/