forum da hız sorunu

phpbb2.de plus ile ilgili soru(n)lar ve tartışmalar.

forum da hız sorunu

İleti bezelye82 10.09.2006, 20:52

Plus 1.53 kullanıyorum. Kullanıcıların çoğu forumun herzaman çok yavaş olduğundan şikayetçi. Bir mesajı göndermenin 3,5 dk sürdüğünü söylüyorlar. Bende böyle bir sorun olmadı hiç BAzı kullanıcılarda da böyle bir sorun yokmuş. Peki bu yavaşlık neyden kaynaklanıyor olabilir?
Kullanıcı avatarı
bezelye82
Üye
Üye
 
İleti: 26
Kayıt: 12.08.2006, 12:12

Cvp: forum da hız sorunu

İleti XeroX 11.09.2006, 12:17

Yavaş olmasının sebebi ilk oalrak bir çok modun ve yamanın kurulu olmasıdır!
Eğer biraz olsun hızlandırmak istiyorsan bu modu kur!
belki işne yara ben kullanıyorum!

Kod: Tümünü seç
Kod:
###############################################
## Hack Title: phpBB2 Fast Hack
## Hack Version: 1.0.0
## Author: dwing <dwing> (Dimitri Seitz) http://www.weingarten-net.de
## Description: This makes your phpBB 2 forum faster.
##
## Updated to phpBB 2.0.6 Compatibility by: James Wong <james>
## Updated with permission from the original author.
##
## Compatibility: 2.0.0 - 2.0.6
##
## Installation Level: Easy
## Installation Time: 1 minute
## Files To Edit: <1>
## page_header.php
##
##
## Included Files: <0>
## N/A
##
## History:
## <Version> : 2.0.6 Compliant
## <Version> : Initial Release 
##
## Author Notes:
## If you have questions or suggestions just mail me @
## dwing@weingarten-net.de?subject=FASTandFURIOUS.
##
## Support: http://www.phpbbhacks.com/forums
##
##
###############################################
## You downloaded this hack from phpBBHacks.com, the #1 source for phpBB related downloads.
## Please visit http://www.phpbbhacks.com/forums for support.
###############################################
##
###############################################
## This hack is released under the GPL License.
## This hack can be freely used, but not distributed, without permission.
## Intellectual Property is retained by the hack author(s) listed above.
###############################################


#
#-----[ AÇ ]------------------------------------------
#

includes/page_header.php

#
#-----[ BUL ]------------------------------------------
#

php:
//
// gzip_compression
//
$do_gzip_compress = FALSE;
if ( $board_config['gzip_compress'] )
{
$phpver = phpversion();

$useragent = (isset($_SERVER["HTTP_USER_AGENT"]) ) ? $_SERVER["HTTP_USER_AGENT"] : $HTTP_USER_AGENT;

if ( $phpver >= '4.0.4pl1' && ( strstr($useragent,'compatible') || strstr($useragent,'Gecko') ) )
{
if ( extension_loaded('zlib') )
{
ob_start('ob_gzhandler');
}
}
else if ( $phpver > '4.0' )
{
if ( strstr($HTTP_SERVER_VARS['HTTP_ACCEPT_ENCODING'], 'gzip') )
{
if ( extension_loaded('zlib') )
{
$do_gzip_compress = TRUE;
ob_start();
ob_implicit_flush(0);

header('Content-Encoding: gzip');
}
}
}
}

#
#-----[ BUNUNLA DEĞİŞTİR]------------------------------------------
#

php:
//
// gzip_compression
//
$do_gzip_compress = FALSE;
if($board_config['gzip_compress'])
{
$phpver = phpversion();

if($phpver >= "4.0.4pl1")
{
if(extension_loaded("zlib"))
{
if (headers_sent() != TRUE)
{
$gz_possible = isset($HTTP_SERVER_VARS["HTTP_ACCEPT_ENCODING"]) && eregi("gzip, deflate",$HTTP_SERVER_VARS["HTTP_ACCEPT_ENCODING"]);
if ($gz_possible) ob_start("ob_gzhandler");
}
}
}
else if($phpver > "4.0")
{
if(strstr($HTTP_SERVER_VARS['HTTP_ACCEPT_ENCODING'], 'gzip'))
{
if(extension_loaded("zlib"))
{
$do_gzip_compress = TRUE;
ob_start();
ob_implicit_flush(0);

header("Content-Encoding: gzip");
}
}
}
}


#
#-----[TÜM DOSYALARI KAYDET/KAPAT ]------------------------------------------
#
# SoN
XeroX
Üye
Üye
 
İleti: 2
Kayıt: 03.07.2006, 15:11


phpBB Plus



Kimler çevrimiçi

Bu forumu görüntüleyenler: Kayıtlı kullanıcı yok ve 0 misafir

cron