Hey Apollo.. So I followed your iinstructions and got it running the xampp but i'm still getting the same error.. I think I must change the code on rthe file...
public function Mark($ip_prefix)
{
$attempts = $this->GetData($ip_prefix);
$attempts[] = time(); ## this is the codeline that is causing the problem ##
// Avoid the data growing infinitely
if (count($attempts) > $this->maxattempts)
$attempts[] = array_slice(count($attempts) - $this->maxattempts - 1, count($attempts) - 1);
$this->SetData($ip_prefix, $attempts);
}
};
And like you said the php code might be outdated and honestly I cant find a fix..
I looked for the error online and tried all the fixed but none worked... So i'm out of my reach here
Tried downgrading php to 7.0 and 5.4, did not work also :\