Skip to content

Instantly share code, notes, and snippets.

@remkus
Last active May 27, 2019 17:07
Show Gist options
  • Select an option

  • Save remkus/7153340 to your computer and use it in GitHub Desktop.

Select an option

Save remkus/7153340 to your computer and use it in GitHub Desktop.
Help! WordPress 3.7 won't do automatic updates!! AKA: put your FTP credentials in wp-config.php
<?php
/**
* For more information, as always, check the codex
* @link: http://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants
**/
define( 'FTP_USER', 'username' );
define( 'FTP_PASS', 'password' );
define( 'FTP_HOST', 'ftp.example.org' ); // this usually can be 127.0.0.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment