Quote:
Originally Posted by theArchitect
It is possible and I have achieved it (though I didn't want too). I have checked my install procedure a couple of times but seem to have done everything correctly.
Any thoughts as to what I did wrong? It is getting annoying receiving e-mails when users miss type their details.
|
About the only thing I can think of that would cause it to report all mistyped passwords/usernames would be if you placed the last bit of code from the instructions (the last edit to login.php) in the wrong place.
Make sure this bit of code:
Code:
$fstrk = "Strikes: $GLOBALS[strikes]/5\r\n";
$subject= 'WARNING: Failed admin logon in ' . $DB_site->appname . ' ' . $vboptions['templateversion'] . "\r\n\r\n";
$message="Someone is trying to login to your Admin CP!\n\n $fusername $fpassword $fipaddress Host: $iphostname\r\n $fstrk $freferer $fscriptpath $fdate $realname";
vbmail($vboptions['webmasteremail'], $subject, $message);
..is
after this bit of code:
Code:
if ($logintype === 'cplogin' OR $logintype === 'modcplogin')
{
// log this error if attempting to access the control panel
require_once('./includes/functions_log_error.php');
Other than that I can't think of anything that would cause it.