Forked from ralphcrisostomo/Wordpress Localhost FTP Connection Information.md
Last active
December 11, 2015 20:09
-
-
Save yannisdran/4653045 to your computer and use it in GitHub Desktop.
This file contains 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
# Do the following command in terminal | |
# Chown / Chmod wordpress folder | |
$ sudo chown -R :_www wordpress | |
$ sudo chmod -R g+w wordpress | |
# Add to "wp-config.php" | |
define('FS_METHOD', 'direct'); | |
# Source: http://soderlind.no/archives/2011/08/26/running-wordpress-locally-on-mac-os-x-lion/ | |
# (if your WP folder's filename is different than 'wordpress', substitute it for that name) | |
# (folder's filename should have no spaces) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment