Forum RENO.RO

Welcome Guest ( Log In | Register )

 
Closed TopicStart new topicStart Poll

Outline · [ Standard ] · Linear+

Viteza forum

verygood
post 21 Oct 2003, 09:28
Post #1


Membru incepator


Group: Members
Posts: 62
Joined: 26 September 02
From: Bucuresti, Romania




Nu stiu ce s-a intamplat dar de ieri (20 oct 2003) navigarea pe forum se face mai greoi ca inainte. S-a modificat ceva?


--------------------
Hyundai Accent 2007 - B-64-ZCZ
User is offlineGalerie FotoPM
Go to the top of the page
+
alex
post 21 Oct 2003, 09:37
Post #2


Membru autentic


Group: Admin
Posts: 749
Joined: 22 May 02




Da, 2 interogari suplimentare in baza de date atunci cand se vizualizeaza un thread. O sa vad pe unde pot sa modific.
P.S. Aceste interogari sunt necesare pentru a asigura o pozitie fruntasa in Google.


--------------------
N/A N/A N/A
snafu
User is offlineGalerie FotoPM
Go to the top of the page
+
Wolfmark
post 21 Oct 2003, 13:12
Post #3


Membru autentic


Group: Members
Posts: 642
Joined: 24 March 03




Posibil sa fie doar o impresie a mea ... dar parca accesul la log.statistici.ro si log.trafic.ro merge greu sad.gif Asa ca eu am banat accesul catre ele ... si parca merge mai repede site-ul.

Si la trafic.ro se trimite wwwdsnasro ca ID!


--------------------
DACIA Solenza Scala 2003
User is offlineGalerie FotoPM
Go to the top of the page
+
alex
post 21 Oct 2003, 16:48
Post #4


Membru autentic


Group: Admin
Posts: 749
Joined: 22 May 02




Statistici face figuri dar oricum se afiseaza pagina si pe urma se incarca scriptul lor.
wwwdsnasro este doar numele contului. De monitorizat se monitorizeaza adresa curenta


--------------------
N/A N/A N/A
snafu
User is offlineGalerie FotoPM
Go to the top of the page
+
alex
post 22 Oct 2003, 10:46
Post #5


Membru autentic


Group: Admin
Posts: 749
Joined: 22 May 02




Am inlaturat cele doua interogari suplimentare pentru oameni. Doar google mai are parte de ele. Viteza forumului a devenit la fel ca mai inainte.


--------------------
N/A N/A N/A
snafu
User is offlineGalerie FotoPM
Go to the top of the page
+
MoneyTalks
post 22 Oct 2003, 10:49
Post #6


-


Group: Members
Posts: 2.712
Joined: 18 April 03
From: Ireland




Cu exceptia cind sta dupa statistici...


--------------------
Lexus ES300H 2020
Religia a aparut cind primul ticalos s-a intilnit cu primul prost

Never underestimate the power of stupidity in large groups
User is offlineGalerie FotoPM
Go to the top of the page
+
alex
post 22 Oct 2003, 10:57
Post #7


Membru autentic


Group: Admin
Posts: 749
Joined: 22 May 02




Am scos si statisticile. Timpul de raspuns al server-ul lor este prost desi aveam sanse mari sa ocupam primele locur in top (la auto-moto)


--------------------
N/A N/A N/A
snafu
User is offlineGalerie FotoPM
Go to the top of the page
+
MoneyTalks
post 22 Oct 2003, 11:50
Post #8


-


Group: Members
Posts: 2.712
Joined: 18 April 03
From: Ireland




Misto. Acum parca merge instant 8)


--------------------
Lexus ES300H 2020
Religia a aparut cind primul ticalos s-a intilnit cu primul prost

Never underestimate the power of stupidity in large groups
User is offlineGalerie FotoPM
Go to the top of the page
+
Valentine
post 30 Nov 2003, 12:43
Post #9


Old Timer


Group: Members
Posts: 1.074
Joined: 20 September 03
From: California




ce exact modificari ai mai facut la phpBB2 sa se incarce asa de repede?


--------------------
Ford Focus 2009
Hi, I'm a signature virus. Please replace your old signature with this signature and help me take over the world of signatures.

Atentie, atentie, si iar atentie!
User is offlineGalerie FotoPM
Go to the top of the page
+
alex
post 30 Nov 2003, 13:08
Post #10


Membru autentic


Group: Admin
Posts: 749
Joined: 22 May 02




CODE


###############################################

##   Hack Title:   phpBB2 Fast Hack

##   Hack Version:   1.0.0

##   Author:      dwing < dwing@weingarten-net.de > (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@jaeboy.net>

##   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

##      file.php

##

##   Included Files: <0>

##      N/A

##

##   History:

##      <Version 1.0.0.1> :    2.0.6 Compliant

##      <Version 1.0.0>   :    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.

###############################################

#

#-----[ OPEN ]------------------------------------------

#



includes/page_header.php



#

#-----[ FIND ]------------------------------------------

#

//

// 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');

        }

     }

  }

}



#

#-----[ REPLACE WITH ]------------------------------------------

#

//

// 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");

        }

     }

  }

}  



#

#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------

#

# End



--------------------
N/A N/A N/A
snafu
User is offlineGalerie FotoPM
Go to the top of the page
+
Valentine
post 30 Nov 2003, 13:54
Post #11


Old Timer


Group: Members
Posts: 1.074
Joined: 20 September 03
From: California




multam.


--------------------
Ford Focus 2009
Hi, I'm a signature virus. Please replace your old signature with this signature and help me take over the world of signatures.

Atentie, atentie, si iar atentie!
User is offlineGalerie FotoPM
Go to the top of the page
+
Closed Topic Topic OptionsStart new topic

1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:
 

Lo-Fi Version  Harta site  Parteneri  Jocuri online  Curs Valutar  HRH Haine din lana merinos Time is now: 28th April 2025 - 01:05
Dacia