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 :
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?
/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?