Last active
May 27, 2019 17:07
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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