Это жесть![ Время : 0.3255с | SQL-запросов : 26 | Gzip : Выкл. ]

Как можно узнать что может вызвать столько запросов?
Это жесть![ Время : 0.3255с | SQL-запросов : 26 | Gzip : Выкл. ]
Код: Выделить всё
##############################################################
## MOD Title: The Blog Mod
## MOD Author: hardworking < Support [at] TheBlogMod.com > (n/a) http://www.TheBlogMod.com
## MOD Author: aboyd < n/a > (Tony Boyd) http://www.outshine.com/
## MOD Author: hyperion < n/a > (n/a) n/a
## MOD Description: Adds an entire weblog system to a phpBB forum. Allows the
## members of the forum to create a weblog, complete with entry permissions,
## style customization, weblog templates, a friends system and the ability
## for weblog owners to block users from their weblog.
## MOD Version: 0.2.4b
Код: Выделить всё
##############################################################
## MOD Title: Full Album Pack
## MOD Author: Mighty Gorgon < mightygorgon@mightygorgon.com > (Luca Libralato) http://www.mightygorgon.com/
## MOD Description: This MOD adds a full Album system, based on several MODS.
## In Author Notes you can find more informations about the included MODS.
## In CONTRIB folder you can find the original MODS from the authors.
## Some modifications on the original MODS have been applied to make
## this package more integrated, flexible and multilanguage.
## Some features: Picture SlideShow, Album Image BBCode ([albumimg]),
## Image Archive Download, Album Nuffload, Nuffimage and many others...
##
## MOD Version: 1.2.3
Код: Выделить всё
##############################################################
## MOD Title: Simple Subforums MOD
## MOD Author: pentapenguin < pentapenguin@bluebottle.com > (Jeremy Conley) http://www.pentapenguin.com
## MOD Author: CyberAlien <n/a> (Vjacheslav Trushkin) http://www.phpbbstyles.com
## MOD Description: This MOD is a simple subforums MOD that doesn't include any extras and makes only
## one small database change. It supports only one level deep subforums that should be enough for most forums.
## MOD Version: 1.0.1
Код: Выделить всё
#################################################################
## MOD Title: eXtreme Styles mod 2
## MOD Author: CyberAlien <no@public.email> (CyberAlien) http://www.phpbbstyles.com
## MOD Description:
## This mod is heavily optimized version of phpBB templates system
## and has some additional features. It compiles and executes
## files much faster, has cache system that speeds up templates
## many times, allowes to use php in templates and few other new
## features to style designers. Also it has huge control panel
## that replaces phpBB styles management with more efficient
## easy to use functions. It also allowes to quickly import/export
## styles using .style format.
## MOD Version: 2.3.1
Код: Выделить всё
##############################################################
## MOD Title: Redirect to Post addon for quick reply forms
## MOD Author: rxu
## MOD Description: After posting, editing, or deleting a message, the user is
## redirected to their post or the topic.
## MOD Version: 0.0.1 alfa
Код: Выделить всё
##############################################################
## MOD Title: Advanced Posts Merging addon for Redirect to Post addon for quick reply forms
## MOD Author: rxu
## MOD Description: This mod is needed to make Redirect to Post addon for quick reply forms
## compliant to Advanced Posts Merging mod by Xpert.
## MOD Version: 1.0.0
Код: Выделить всё
#-----[ OPEN ]------------------------------------------
# OPTIONAL - Adds Recent Weblogs to your index.php page (Make sure to do the template changes as well)
#
index.php
#
#-----[ FIND ]------------------------------------------
#
//
// Start output of page
//
#
#-----[ BEFORE, ADD ]------------------------------------------
#
//
// Begin - "The Blog Mod" changes
//
include($phpbb_root_path . 'includes/weblogs_common.'.$phpEx);
include($phpbb_root_path . 'includes/functions_weblog.'.$phpEx);
//
// Get Weblog Data
//
$weblog_data = fetch_visible_weblogs ();
for ($i = 0; $i < count($weblog_data) && $i < 10; $i++)
{
if ( !empty($recent_weblogs) )
{
$recent_weblogs .= ', <a href="' . append_sid ("weblog.$phpEx?" . POST_WEBLOG_URL . "=" . $weblog_data[$i]['weblog_id']) . '"';
}
else
{
$recent_weblogs = '<a href="' . append_sid ("weblog.$phpEx?" . POST_WEBLOG_URL . "=" . $weblog_data[$i]['weblog_id']) . '"';
}
if ( $weblog_data[$i]['user_level'] == ADMIN )
{
$recent_weblogs .= ' style="color:#' . $theme['fontcolor3'] . '">';
}
else if ( $weblog_data[$i]['user_level'] == MOD )
{
$recent_weblogs .= ' style="color:#' . $theme['fontcolor2'] . '">';
}
else
{
$recent_weblogs .= '>';
}
if ( $weblog_config['index_list_by_username'] )
{
$recent_weblogs .= $weblog_data[$i]['username'] . '</a>';
}
else
{
$recent_weblogs .= $weblog_data[$i]['weblog_name'] . '</a>';
}
}
//
// End - "The Blog Mod" changes
//
#
#-----[ FIND ]------------------------------------------
#
'NEWEST_USER' => sprintf($lang['Newest_user'], '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$newest_uid") . '">', $newest_user, '</a>'),
#
#-----[ AFTER, ADD ]------------------------------------------
#
// The Blog Entry by support [at] TheBlogMod.com
'MOST_RECENT_WEBLOGS' => sprintf( (( $weblog_config['index_list_by_username'] ) ? $lang['Most_recent_weblogs_user'] : $lang['Most_recent_weblogs']) , $recent_weblogs),
[ Время : 0.1189с | SQL-запросов : 16 | Gzip : Выкл. ]
Это мой index.php =)Страница создавалась 0,168 секунд(ы) - (PHP: 61% - SQL: 39%) - Запросов к БД: 17 - Cжатие GZIP включено