Skip to content

Instantly share code, notes, and snippets.

@schalkburger
Created February 17, 2015 09:07
Show Gist options
  • Save schalkburger/729892c72541fb384c7f to your computer and use it in GitHub Desktop.
Save schalkburger/729892c72541fb384c7f to your computer and use it in GitHub Desktop.
Wordpress manual FTP config
<?php
// Manual Wordpress FTP
define('FS_CHMOD_FILE', 0755);
define('FS_CHMOD_DIR', 0755);
define('FS_METHOD', 'ftpext');
define('FTP_BASE', '/');
define('FTP_CONTENT_DIR', '/wp-content/');
define('FTP_PLUGIN_DIR ', '/wp-content/plugins/');
define('FTP_USER', 'username');
define('FTP_PASS', 'password');
define('FTP_HOST', '123.456.789.000:21');
define('FTP_SSL', false);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment