Could you tell us a bit more about that intrusion! Why did it happen?
I did a kind of ip checking!
Code:
<?PHP
$ip=$HTTP_SERVER_VARS["REMOTE_ADDR"];
$useragent=$HTTP_SERVER_VARS["HTTP_USER_AGENT"];
//echo $ip."<br>".$useragent."<br>";
//ip_check
$block_ip = array( "'123.456.789.01'",
"'123.456.789.01'",
"'123.456.789.01'",
"'123.456.789.01'",
"'123.456.789.01'",
);
foreach ($block_ip as $value) {
if (preg_match($value, $ip)) exit;
}
?>
Get the ip-values with the one you want to check and include that file from your appliation.php too! I additionally did a "htaccess" protection for the admin and adm_template.