Last active
January 11, 2019 09:20
-
-
Save buraksahin59/2729525979cc4df224004e4789c0ee58 to your computer and use it in GitHub Desktop.
Localhost Update Theme And Plugin. Source: https://www.barrykooij.com/unable-to-install-plugins-on-localhost/ and https://stackoverflow.com/questions/44788193/wordpress-ftp-connection-setting-for-localhost-to-upload-and-install-woocommerce
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
// Run below code to change permission of htdocs's sub folders | |
chmod -R 777 /Applications/XAMPP/htdocs/ |
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
define('FS_METHOD','direct'); | |
define("FTP_HOST", "localhost"); | |
define("FTP_USER", "admin"); | |
define("FTP_PASS", "1234"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment