B
BaltazoR
Прохожие
- Автор темы
- #1
Столкнулся с такой проблемой. Rss информер обновляется с большими задержками по времени. Хотелось бы обновление раз в час или пол часа.
Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
function update_cache($prefix, $cache_id=false,$min=10, $member_prefix=false){
global $config, $is_logged, $member_id;
if ($is_logged) $end_file = $member_id['user_group']; else $end_file = "0";
if (!$cache_id) {
$filename = ENGINE_DIR.'/cache/'.$prefix.'.tmp';
} else {
$cache_id = totranslit ($cache_id);
if ($member_prefix)
$filename = ENGINE_DIR."/cache/".$prefix."_".$cache_id."_".$end_file.".tmp";
else
$filename = ENGINE_DIR."/cache/".$prefix."_".$cache_id.".tmp";
}
if (time()+60*$min<@filemtime($filename)) unlink ($filename);
}
update_cache ("informer_".$value['id'], $config['skin']);
$buffer = dle_cache("informer_".$value['id'], $config['skin']);