I presume so Give me a sec I need to check the script again...
Yea it seems possible, might need to check with Zubrag first,
in the password-protect.php look for this:
// user provided password
if (isset($_POST['access_password'])) {
$login = isset($_POST['access_login']) ? $_POST['access_login'] : '';
$pass = $_POST['access_password'];
if (!USE_USERNAME && !in_array($pass, $LOGIN_INFORMATION)
|| (USE_USERNAME && ( !array_key_exists($login, $LOGIN_INFORMATION) || $LOGIN_INFORMATION[$login] != $pass ) )
) {
showLoginPasswordProtect("Incorrect password.");
}
else {
// set cookie if password was validated
setcookie("verify", md5($login.'%'.$pass), $timeout, '/');
// Some programs (like Form1 Bilder) check $_POST array to see if parameters passed
// So need to clear password protector variables
unset($_POST['access_login']);
unset($_POST['access_password']);
unset($_POST['Submit']);
}
}
Once found, underneath where it says setcookie("verify", md5($login.'%'.$pass), $timeout, '/'); add this:
$counterfile = "log.txt";
$time = $GMT[hours] . ":" . $GMT[minutes] . " ";
$date = $GMT[mday] . "/" . $GMT[mon] . "/" . $GMT[year];
$fp = fopen($counterfile, "a");
fwrite($fp, "• " . $login . " - " . $time . $date . "\n");
fclose($fp);
What this should do is save the login username and the time + date of login to a file called log.txt [change to the one you want] and then jsut keep doing that to a new line
Crude but works, I can construct a MYSQL one, but I get the feeling you might not even read this, but hey, I helped, and I think it works

-Dan.