Файл: cron.php
Строк: 17
<?php
define('NTOP', 1);
require_once ('system/connect.php');
require_once ('system/core.php');
require_once ('system/function.php');
$saits = mysql_query("SELECT * FROM `".$prefix."sait`");
$update = mysql_query("UPDATE `".$prefix."sait` SET `hosts` = '0', `hits` = '0', `in` = '0', `out` = '0'");
//mysql_query("TRUNCATE TABLE `".$prefix."hits`");
//mysql_query("TRUNCATE TABLE `".$prefix."hosts`");
//mysql_query("TRUNCATE TABLE `".$prefix."go`");
mysql_query("TRUNCATE TABLE `".$prefix."sait_online`");
mysql_query("OPTIMIZE TABLE `".$prefix."sait_online`");
mysql_query("OPTIMIZE TABLE `".$prefix."go`");
mysql_query("OPTIMIZE TABLE `".$prefix."hits`");
mysql_query("OPTIMIZE TABLE `".$prefix."hosts`");
mysql_query("OPTIMIZE TABLE `".$prefix."reputation`");
mysql_query("OPTIMIZE TABLE `".$prefix."sait`");
mysql_query("OPTIMIZE TABLE `".$prefix."users`");
$log = "Top Update: ".data(time())."rn";
$fp = fopen("statistika", "a");
fwrite($fp, $log);
fclose($fp);
?>