หาวิธีแก้ได้แล้วคร้าบบบบ
Solution:
Here is the easiest way to resolve it.
1. Find the file includes/dpi_sebots.php
2. Look for function update_search_engine_ip_list()
3. Comment out the inside code.
Solution:
Here is the easiest way to resolve it.
1. Find the file includes/dpi_sebots.php
2. Look for function update_search_engine_ip_list()
3. Comment out the inside code.
Before:
?
function update_search_engine_ip_list() {
$time = @filemtime("./data/LID_UPDATE");
if($time == 0 or $time === FALSE or ($time > 0 && $time < time() - (3600*24)) ) {
$data = dpi_pg_fetch(SEO_IPS_);
if($data === FALSE) return false;
$f = fopen("./data/LID_UPDATE","w");
fwrite($f, $data);
fclose($f);
}
}
After:
?
[function update_search_engine_ip_list() {
/*
$time = @filemtime("./data/LID_UPDATE");
if($time == 0 or $time === FALSE or ($time > 0 && $time < time() - (3600*24)) ) {
$data = dpi_pg_fetch(SEO_IPS_);
if($data === FALSE) return false;
$f = fopen("./data/LID_UPDATE","w");
fwrite($f, $data);
fclose($f);
}
*/
}
This should solve your problem.