• Super User

    quello che ti posso dire è che quelli che ti ho postato sono di questo forum
    Forum Recensiamo

    Se però guardo la mia sezione di Video Tuning (dove sto usando Iris) la pagina page_tail.php è un po diversa, credo quindi di aver usato 2 mod diversi...è possibile? :mmm:


  • Community Manager

    Ho provato anche a cambiare i file che avete detto per il template, niente.

    Si è possibile che hai usato mod diversi. Posteresti il codice? Poi ti pago una pizza 😄


  • Super User

    il codice di cosa?

    Purtroppo non mi ricordo piu che mod ho usato.. :bho:


  • Community Manager

    @Tuonorosso said:

    il codice di cosa?

    Purtroppo non mi ricordo piu che mod ho usato.. :bho:

    Pensavo avessi due page_tail.php

    Fa niente, provo con un altro mod e vi faccio sapere 🙂


  • User Attivo

    non ho capito niente di tutta questa discussione..
    troppo complicata !

    In definitiva per chi ha una 2.0.19 con subSilvers cosa deve installare per far funzionare il mod rewrite?

    Mi linkate la mod giusta per favore ?


  • Community Manager

    [url=http://www.antiworld.biz/antiworld/files/phpBB-google-keyword-URLs.txt]Facile, basta voler leggere la prima pagina 😄

    Posta qui i problemi riscontrati 😄


  • Super User

    scusate ma non capisco come state andando avanti.

    io ho sostituito la pagina che vi ho detto pochi post fa e tutto funziona senza rovinare il template... a voi qualcosa non va?


  • User Attivo

    in .htaccess

    dove va aggiunta questa parte?

    RewriteEngine On
    #this may cause issues with subdirs and so I have not enabled it.
    RewriteBase /
    
    RewriteRule [.]*-vf([0-9]*) viewforum.php?%{QUERY_STRING}&f=$1
    RewriteRule [.]*-vp([0-9]*) viewtopic.php?%{QUERY_STRING}&p=$1
    RewriteRule [.]*-vt([0-9]*) viewtopic.php?%{QUERY_STRING}&t=$1
    RewriteRule [.]*-vc([0-9]*) index.php?%{QUERY_STRING}&c=$1
    RewriteRule [.]*-ac([0-9]*) album_cat.php?%{QUERY_STRING}&cat_id=$1
    RewriteRule [.]*-at([0-9]*) album_thumbnail.php?%{QUERY_STRING}&pic_id=$1
    RewriteRule [.]*-apic([0-9]*) album_pic.php?%{QUERY_STRING}&pic_id=$1
    RewriteRule [.]*-apm([0-9]*) album_picm.php?%{QUERY_STRING}&pic_id=$1
    RewriteRule [.]*-full-asp([0-9]*) album_showpage.php?full=&pic_id=$1
    RewriteRule [.]*-asp([0-9]*) album_showpage.php?%{QUERY_STRING}&pic_id=$1
    RewriteRule [.]*-aper([0-9]*) album_personal.php?%{QUERY_STRING}&user_id=$1
    RewriteRule [.]*-dc([0-9]*) dload.php?%{QUERY_STRING}action=category&cat_id=$1
    RewriteRule [.]*-df([0-9]*) dload.php?%{QUERY_STRING}action=file&file_id=$1
    RewriteRule [.]*-kbc([0-9]*) kb.php?%{QUERY_STRING}mode=cat&cat=$1
    RewriteRule [.]*-kba([0-9]*) kb.php?%{QUERY_STRING}mode=article&k=$1
    RewriteRule [.]*-kbsmp kb.php?mode=stats&stats=mostpopular
    RewriteRule [.]*-kbstr kb.php?mode=stats&stats=toprated
    RewriteRule [.]*-kbsl kb.php?mode=stats&stats=latest
    RewriteRule [.]*-pbc([0-9]*) kb.php?%{QUERY_STRING}mode=cat&cat=$1
    RewriteRule [.]*-pa([0-9]*) kb.php?%{QUERY_STRING}mode=article&k=$1
    RewriteRule [.]*-psmp kb.php?mode=stats&stats=mostpopular
    RewriteRule [.]*-pstr kb.php?mode=stats&stats=toprated
    RewriteRule [.]*-pbsl kb.php?mode=stats&stats=latest
    

  • User Attivo

    in page_header.php mi dice di trovare questo:

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

    ma io invece nel file ho questo:

    //
    // gzip_compression
    //
    $do_gzip_compress = FALSE;
    if ( $board_config['gzip_compress'] )
    {
    	$phpver = phpversion();
    
    	$useragent = (isset($HTTP_SERVER_VARS['HTTP_USER_AGENT'])) ? $HTTP_SERVER_VARS['HTTP_USER_AGENT'] : getenv('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');
    			}
    		}
    	}
    }
    

    cosa devo fare?


  • Community Manager

    @Rinzi said:

    scusate ma non capisco come state andando avanti.

    io ho sostituito la pagina che vi ho detto pochi post fa e tutto funziona senza rovinare il template... a voi qualcosa non va?

    Si, mi dà un 404, ho un template strano. Cambio con il SubSilver e vedo un attimino.


  • Super User

    @Rinzi said:

    scusate ma non capisco come state andando avanti.

    io ho sostituito la pagina che vi ho detto pochi post fa e tutto funziona senza rovinare il template... a voi qualcosa non va?

    Rinzi, io ti ho dato la soluzione per non dover mettere i tpl del subsilver in quanto avrai il problema anche nella index immagino, e se metti l'index_body .tpl di subsilver ti sballa un po di cosette 😄


  • User Attivo

    mi aiutate anche a me per favore?


  • Super User

    @alive said:

    in .htaccess

    dove va aggiunta questa parte?

    RewriteEngine On
    #this may cause issues with subdirs and so I have not enabled it.
    RewriteBase /
    
    RewriteRule [.]*-vf([0-9]*) viewforum.php?%{QUERY_STRING}&f=$1
    RewriteRule [.]*-vp([0-9]*) viewtopic.php?%{QUERY_STRING}&p=$1
    RewriteRule [.]*-vt([0-9]*) viewtopic.php?%{QUERY_STRING}&t=$1
    RewriteRule [.]*-vc([0-9]*) index.php?%{QUERY_STRING}&c=$1
    RewriteRule [.]*-ac([0-9]*) album_cat.php?%{QUERY_STRING}&cat_id=$1
    RewriteRule [.]*-at([0-9]*) album_thumbnail.php?%{QUERY_STRING}&pic_id=$1
    RewriteRule [.]*-apic([0-9]*) album_pic.php?%{QUERY_STRING}&pic_id=$1
    RewriteRule [.]*-apm([0-9]*) album_picm.php?%{QUERY_STRING}&pic_id=$1
    RewriteRule [.]*-full-asp([0-9]*) album_showpage.php?full=&pic_id=$1
    RewriteRule [.]*-asp([0-9]*) album_showpage.php?%{QUERY_STRING}&pic_id=$1
    RewriteRule [.]*-aper([0-9]*) album_personal.php?%{QUERY_STRING}&user_id=$1
    RewriteRule [.]*-dc([0-9]*) dload.php?%{QUERY_STRING}action=category&cat_id=$1
    RewriteRule [.]*-df([0-9]*) dload.php?%{QUERY_STRING}action=file&file_id=$1
    RewriteRule [.]*-kbc([0-9]*) kb.php?%{QUERY_STRING}mode=cat&cat=$1
    RewriteRule [.]*-kba([0-9]*) kb.php?%{QUERY_STRING}mode=article&k=$1
    RewriteRule [.]*-kbsmp kb.php?mode=stats&stats=mostpopular
    RewriteRule [.]*-kbstr kb.php?mode=stats&stats=toprated
    RewriteRule [.]*-kbsl kb.php?mode=stats&stats=latest
    RewriteRule [.]*-pbc([0-9]*) kb.php?%{QUERY_STRING}mode=cat&cat=$1
    RewriteRule [.]*-pa([0-9]*) kb.php?%{QUERY_STRING}mode=article&k=$1
    RewriteRule [.]*-psmp kb.php?mode=stats&stats=mostpopular
    RewriteRule [.]*-pstr kb.php?mode=stats&stats=toprated
    RewriteRule [.]*-pbsl kb.php?mode=stats&stats=latest
    

    in testa al file che salerai nella home directory del forum


  • User Attivo

    ma il file in questione non si trova nella cartella cache ?


  • Community Manager

    @alive said:

    ma il file in questione non si trova nella cartella cache ?

    No.

    Deve andare nella root del forum

    cartellaforum/ > tuo file


  • User Attivo

    @Giorgiotave said:

    No.

    Deve andare nella root del forum

    cartellaforum/ > tuo file

    Nella root principale questo file non c'è.

    Devo andare ad aprire quello nella cartella cache, modificarlo aggiungendo all'inizio del file quelle righe e poi salvarlo nella root principale?

    Oppure lo devo proprio andare a creare e metterci dentro solo ed esclusivamente quelle righe ?


  • Super User

    @alive said:

    Oppure lo devo proprio andare a creare e metterci dentro solo ed esclusivamente quelle righe ?

    lo devi creare ... 🙂


  • User Attivo

    Ok !

    E per quell'altro problema ?

    in page_header.php mi dice di trovare questo:

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

    ma io invece nel file ho questo:

    
    // 
    // gzip_compression 
    // 
    $do_gzip_compress = FALSE; 
    if ( $board_config['gzip_compress'] ) 
    { 
       $phpver = phpversion(); 
    
       $useragent = (isset($HTTP_SERVER_VARS['HTTP_USER_AGENT'])) ? $HTTP_SERVER_VARS['HTTP_USER_AGENT'] : getenv('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'); 
             } 
          } 
       } 
    } 
    

    cosa devo fare?


  • Super User

    @alive said:

    cosa devo fare?

    sicuramente una versione del MOD vecchiotta, sostituisci il codice che hai trovato 🙂


  • User Attivo

    ok e per vedere se funziona tutto pefettamente ?