Просмотр поста

.
Spayder
*Враг общества*

Вот счетчик на главную не затрагивая системные файлы для 3.2.2:
В папке "pages" создать файл "soocont.php" и написать там:

<?php

defined('_IN_JOHNCMS') or die('Error:restricted access');

function soo_cnt() {
global $realtime;
    
  $cnt = mysql_result(mysql_query("SELECT COUNT(*) FROM `soo` WHERE `id`!='0'"), 0);
$time = $realtime - (3600 * 24 * 3);
  $cnt_new = mysql_result(mysql_query("SELECT COUNT(*) FROM `soo` WHERE `time`>'".$time."'"), 0);
$out = $cnt . '' . ($cnt_new==0 ? '' : '/<span class="red">+' . $cnt_new . '</span>');
    return $out;
}
?>

В pages/mainmenu.php:
include_once $SERVER['DOCUMENT_ROOT'].'soocont.php';
echo'<div class="menu"><a href="soo/index.php">Сообщества</a>(' . soo_cnt() . ')</div>';