SOLVED! WORDPRESS ASKING FOR LOCAL FTP CREDENTIALS ON XAMPP
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
SOLVED! WORDPRESS ASKING FOR LOCAL FTP CREDENTIALS ON XAMPP | |
A few developers were asking why their localhost instances of WordPress were asking for FTP credentials when trying to install new plugins and themes. If you’re getting the dreaded “Please enter your FTP credentials” page and you’re running XAMPP for your local WP development environment, do not follow the popular StackOverflow answer that tells you to chown your wordpress folder to _www. Read more for the real fix. | |
There’s a Stackoverflow page that tells you to chown your local environment to www, but according to the <a href=“http://www.apachefriends.org/en/xampp-macosx.html” target=“blank”>recent XAMPP documentation, Apache is running as user ‘daemon.’ | |
So the fix is to go into your Terminal and cd to your local directory. If you develop a lot of wordpress stuff at the same time, you can just chown your htdocs directory (remember that you should never use XAMPP as a production environment, which means you should never follow these ideas for live sites). Here’s what you want to do: | |
cd /Applications/XAMPP/xamppfiles/ | |
This will get you to the XAMPP file directory. Now we’re going to modify your htdocs directory: | |
sudo chown -R daemon htdocs | |
Enter your root password when prompted, then finish it out with a chmod call: | |
sudo chmod -R g+w htdocs | |
And you’re done! |
thanks a lot is help me too much !!!
Brilliant. It works. Thanks guyz.
Thanks alot. God bless you!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you are on ubuntu do this
cd /opt/lampp
Then
sudo chown -R daemon htdocs
Enter your root password when prompted, then finish it out with a chmod call:
sudo chmod -R g+w htdocs
And you’re done!