skip to Main Content

Http Authentication with PHP not working – Plesk

I have Plesk Server where PHP is running as a CGI. if (!isset($_SERVER['PHP_AUTH_USER'])) { header('WWW-Authenticate: Basic realm="My Realm"'); header('HTTP/1.0 401 Unauthorized'); echo 'Text to send if user hits Cancel button'; exit; } else { echo "<p>Hello {$_SERVER['PHP_AUTH_USER']}.</p>"; echo "<p>You entered…

VIEW QUESTION
Back To Top
Search