• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

editing httpd.conf

L

LexI

Guest
I had a custom shopping cart system built for my site, but we have since discarded it. Unfortunately, the people who coded it inserted code into httpd.conf to require a password for accessing the /admin directory, and that is still active and interfering with current operations.

/var/www/vhosts/mydomain.com/conf/

Here is the text that was inserted into httpd.include :

Code:
<LocationMatch "/admin*">
AuthName "Need Password"
AuthType Basic
AuthUserFile /var/www/vhosts/mydomain.$
require valid-user
</LocationMatch>

My knowledge of Linux and Plesk is limited. I've found instructions on the web about how to add code to httpd.conf by using a vhost.conf file, but nothing about how to remove such code.

How do I get rid of it?
 
Back
Top