'password'); You can add several pairs of usernames and passwords to the array to give several different people access to PhpShell. $passwd = array('username_1' => 'password_1', 'username_2' => 'password_2', // ... 'username_n' => 'password_n'); */ /*$passwd = array(); if (!isset($_SERVER['PHP_AUTH_USER']) || !isset($_SERVER['PHP_AUTH_PW']) || !isset($passwd[$_SERVER['PHP_AUTH_USER']]) || $passwd[$_SERVER['PHP_AUTH_USER']] != $_SERVER['PHP_AUTH_PW']) { header('WWW-Authenticate: Basic realm="china"'); header('HTTP/1.0 401 Unauthorized'); $authenticated = false; } else { $authenticated = true; } header('Content-Type: text/html; charset=UTF-8'); /* Since most installations still operate with short_open_tag enabled, * we have to echo this string from within PHP: */ echo '' . "\n"; ?>
You failed to authenticate yourself to PhpShell. You can reload to try again.
Try reading the INSTALL file if you're having problems with installing PhpShell.