Working in 4.2.2
Needs some updates to a deprecated function to work with PHP 5.4 though (you will get function split() is deprecated error when logging in and you won't be able to log into the admin control panel either!)
To work in PHP 5.4 Edit Plugin AE Detector: Login checker
1) REPLACE:
PHP Code:
$ignore_users = split(',', $vbulletin->options['ae_ignore_users']);
$ignore_groups = split(',', $vbulletin->options['ae_ignore_groups']);
with:
PHP Code:
$ignore_users = preg_split("/,/", $vbulletin->options['ae_ignore_users']);
$ignore_groups = preg_split("/,/", $vbulletin->options['ae_ignore_groups']);
2) REPLACE:
PHP Code:
$Unums = split(",", $idstack);
with:
PHP Code:
$Unums = preg_split("/,/", $idstack);
3) REPLACE:
PHP Code:
$adminusers = split(",", $vbulletin->options['ae_adminusers']);
with:
PHP Code:
$adminusers = preg_split("/,/", $vbulletin->options['ae_adminusers']);