v1-v7 arası sitelerdeki dosyalardaki ilgili yerleri değiştirin;
global/ust.php nin en üstüne ekleyin
<?
$filename = "%%-".md5($_SERVER['REQUEST_URI'])."-%%.html";
$cachefile = "cache/".$filename;
$cachetime = 1 * 60 * 60; // Cache Süresi
if (file_exists($cachefile))
{
if(time() - $cachetime < filemtime($cachefile))
{
readfile($cachefile);
exit;
}
else
{
unlink($cachefile);
}
}
ob_start();
?>
global/alt.php nin en altına ekleyin
<?
$fp = fopen($cachefile, 'w+');
fwrite($fp, ob_get_contents());
fclose($fp);
ob_end_flush();
?>
etiketlerin mysql sorgularını düzenlemek için ise
bul;
<? $etiket=mysql_query("select * from tag order by rand() limit 60");
değiştir;
<? $etiket=mysql_query("select * from tag order by id desc limit 60");