Hello people,
Ik got a question mayby you got a answer for me
i got this script running in my global.php now for my question
is there a way to bypass this for one user that is a super admin ( me)
so i dont have to put a name and password in the popup box
Thanks and greetzz form Holland
Arno
<? if (!isset($_SERVER['PHP_AUTH_USER'])) { header('WWW-Authenticate: Basic realm="Beveiligde Verbinding!"'); header('HTTP/1.0 401 Unauthorized'); echo 'Oeps, Geen goede login ingetikt!'; exit; } else if (isset($_SERVER['PHP_AUTH_USER'])) { if (($_SERVER['PHP_AUTH_USER'] != "myname") || ($_SERVER['PHP_AUTH_PW'] != "mypass")) { header('WWW-Authenticate: Basic realm="Beveiligde Verbinding"'); header('HTTP/1.0 401 Unauthorized'); echo 'Helaas is deze site niet toegankelijk voor U'; exit; } } ?>