Created
June 5, 2020 20:09
-
-
Save Nav-Appaiya/790c856af483a42cc0d92497a7a5edaa to your computer and use it in GitHub Desktop.
Password protection in PHP with basic auth (snippet for securing websiet with password in index.php)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function require_auth() { | |
| $AUTH_USER = 'admin'; | |
| $AUTH_PASS = 'password'; | |
| header('Cache-Control: no-cache, must-revalidate, max-age=0'); | |
| $has_supplied_credentials = !(empty($_SERVER['PHP_AUTH_USER']) && empty($_SERVER['PHP_AUTH_PW'])); | |
| $is_not_authenticated = ( | |
| !$has_supplied_credentials || | |
| $_SERVER['PHP_AUTH_USER'] != $AUTH_USER || | |
| $_SERVER['PHP_AUTH_PW'] != $AUTH_PASS | |
| ); | |
| if ($is_not_authenticated) { | |
| header('HTTP/1.1 401 Authorization Required'); | |
| header('WWW-Authenticate: Basic realm="Access denied"'); | |
| exit; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment