Question
How to disable Restricted Area window?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×From the main tutorial, One-Click Install WordPress on Ubuntu 14.04 with DigitalOcean:
To remove the additional password prompt, you’ll need to log into your VPS instance through SSH.... Once logged in, you need to update the main Apache configuration file. Open it as root with your text editor:
nano /etc/apache2/apache2.conf
Inside, you need to find the section that deals with the “/wp-admin/” section. It should look like this
<DirectoryMatch ^.*/wp-admin/>
AuthType Basic
AuthName "Please login to your droplet via SSH for login details."
AuthUserFile /etc/apache2/.htpasswd
Require valid-user
</DirectoryMatch>
This entire section can be commented out by placing the “#” character before each line, like this:
#<DirectoryMatch ^.*/wp-admin/>
# AuthType Basic
# AuthName "Please login to your droplet via SSH for login details."
# AuthUserFile /etc/apache2/.htpasswd
# Require valid-user
#<DirectoryMatch>
Once this is complete, you can restart Apache for your new changes to take affect.
service apache2 restart
This should remove the additional password prompt from the administrative areas, which is usually okay since WordPress itself can handle authentication.
I only want to leave** restricted-area** when trying to log in meusite.com/wp-login.php, can anyone help? before I was only there, but then was requesting to access any part of the blog. Thank you.
@gilsoninacio: To limit the HTTP authentication to /wp-login.php only, use the following configuration instead:
<DirectoryMatch /var/www>
<Files wp-login.php>
AuthType Basic
AuthName "Restricted Area"
AuthUserFile /etc/apache2/.htpasswd
Require valid-user
</Files>
</DirectoryMatch>
Make sure you replace /var/www
with the correct path to your Wordpress installation.
<Location -
AuthType Basic
...
</Location>
my first time here and i run into this nonsense as well. Bitnami does the same crap, thinking they are writing good tutorials/guides but its more confusing than Aamazon’s AWS documentation and does not help new comers get into the “cloud”, I guess thats why they say “built for developers” and thats why RackSpace is growing so well.
This is discovered and has to troubleshoot for a few hours before deleting or at least a day before getting the answer from somewhere else on the net. So multiply that by countless users and they are getting income at the expense of their customers loss and frustration.
PLEASE improve your documentation !!!
Check out this tutorial: One-Click Install WordPress on Ubuntu 14.04 with DigitalOcean
Trying to restart apache failed with the following error:
Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message
I needed to add a line into that same file - /etc/apache2/apache2.conf saying
ServerName localhost
After adding this line, apache restarted successfully.
Thanks alot
It is working fine for my website
LetusQuiz.com
Can anyone please translate this to something an average user could understand? I’m sorry but I do not have a background in CS and I just can’t understand what you guys are talking about. :(
I installed a new plugin on wordpress (hosted in DigitalOcean using one-click) and I don’t really have a problem with the additional server password. But after I installed this plugin called floating social bar, the password prompt appears on every page. I’ve been told I could just add the admin ajax php on whitelist? But I really don’t understand. I tried installing putty but I feel like a monkey on a rocketship.
Can someone please help. Thank you!