FTP Zugang in der wp-config.php
define('FTP_USER', 'ftpusername'); define('FTP_PASS', 'ftpsecret'); define('FTP_HOST', 'localhost'); define('FTP_SSL', false); // oder ohne FTP z.B. Updates im Backend machen define('FS_METHOD', 'direct');
Copy/Paste wp-config.php for development:
define( 'WP_DEBUG', true ); define( 'WP_DEBUG_LOG', true ); define( 'WP_DEBUG_DISPLAY', false ); @ini_set( 'display_errors', 0 ); error_reporting(E_ALL); define( 'SCRIPT_DEBUG', true );
Manuell ein Passwort erzeugen:
echo wp_hash_password('123456');