[FONT=Arial, sans-serif]Per effettuare il rewrite dell’url con IPB devi avere Minerva Seo ;-) Una volta scaricato il pacchetto dovrai fare qualche modifica alla tua board prima di procedere con l’installazione del pacchetto seo. [/FONT][FONT=Arial, sans-serif]Ecco la lista dei files da modificare:[/FONT]
[FONT=Arial, sans-serif]Lofiversion/index.php[/FONT]
[FONT=Arial, sans-serif]sources/action_admin/spiderlogs.php[/FONT]
[FONT=Arial, sans-serif]sources/classes/class_display.php[/FONT]
[FONT=Arial, sans-serif]sources/classes/class_forums.php[/FONT]
[FONT=Arial, sans-serif]sources/classes/class_session.php[/FONT]
[FONT=Arial, sans-serif]sources/lib/func_topic_linear.php[/FONT]
[FONT=Arial, sans-serif]sources/action_public/forums.php[/FONT]
[FONT=Arial, sans-serif]sources/action_public/profile.php[/FONT]
[FONT=Arial, sans-serif]sources/action_public/topics.php[/FONT]
[FONT=Arial, sans-serif]sources/ipsclass.php[/FONT]
[FONT=Arial, sans-serif]index.php[/FONT]
[FONT=Arial, sans-serif]Apri il file lofiversion/index.php[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
$output = str_replace( "<% CHARSET %>" , $ipsclass->vars['gb_char_set'], $output);
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif] if($ipsclass->vars['mseo_meta_lofi_enabled'])[/FONT]
[FONT=Arial, sans-serif]{[/FONT]
[FONT=Arial, sans-serif] $output = str_replace('<meta name="robots" content="INDEX,FOLLOW" />','',$output);[/FONT]
[FONT=Arial, sans-serif] $meta = '<meta name="robots" content="NONE" />';[/FONT]
[FONT=Arial, sans-serif] $meta .= '<meta name="googlebot" content="NONE" />';[/FONT]
[FONT=Arial, sans-serif] $meta .= '<meta name="slurp" content="NONE" />';[/FONT]
[FONT=Arial, sans-serif] $output = str_replace('</title>','</title>'.$meta,$output);[/FONT]
[FONT=Arial, sans-serif] }[/FONT]
[FONT=Arial, sans-serif]Apri il file sources/action_admin/spiderlogs.php[/FONT]
[FONT=Arial, sans-serif]Trova: [/FONT]
[FONT=Arial, sans-serif]$query_string_html = "<a href='{$this-?phpMyAdmin=65ce186d8bf2464235449b99ab7b1f3b>ipsclass->vars['board_url']}/index.{$this->ipsclass->vars['php_ext']}?{$row['query_string']}' target='_blank'>{$row['query_string']}</a>";[/FONT]
[FONT=Arial, sans-serif]Sostituiscilo con:[/FONT]
[FONT=Arial, sans-serif]$qs=$this->ipsclass->txt_truncate($row['query_string']);[/FONT]
[FONT=Arial, sans-serif]$query_string_html = "<a href='{$this-?phpMyAdmin=65ce186d8bf2464235449b99ab7b1f3b>ipsclass->vars['board_url']}/index.{$this->ipsclass->vars['php_ext']}?{$row['query_string']}' target='_blank'>{$qs}</a>";[/FONT]
[FONT=Arial, sans-serif]Apri sources/classes/class_display.php[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->skin['_wrapper'] = str_replace( "<% CSS %>" , $css , $this->ipsclass->skin['_wrapper']);[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]$css = $css.$this->ipsclass->minerva->replace_meta();[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->skin['_wrapper'] = str_replace( "<#IMG_DIR#>", $this->ipsclass->skin['_imagedir'], $this->ipsclass->skin['_wrapper'] );[/FONT]
[FONT=Arial, sans-serif] $this->ipsclass->skin['_wrapper'] = str_replace( "<#EMO_DIR#>", $this->ipsclass->skin['_emodir'] , $this->ipsclass->skin['_wrapper'] );[/FONT]
[FONT=Arial, sans-serif] //-----------------------------------------[/FONT]
[FONT=Arial, sans-serif] // Images on another server? uncomment and alter below[/FONT]
[FONT=Arial, sans-serif] //-----------------------------------------[/FONT]
[FONT=Arial, sans-serif] if ( $this->ipsclass->vars['ipb_img_url'] )[/FONT]
[FONT=Arial, sans-serif] {[/FONT]
[FONT=Arial, sans-serif] $this->ipsclass->skin['_wrapper'] = preg_replace( "#img\s+?src=([\"'])style_(images|avatars|emoticons)(.+?)[\"'](.+?)?".">#is", "img src=\\1".$this->ipsclass->vars['ipb_img_url']."style_\\2\\3\\1\\4>", $this->ipsclass->skin['_wrapper'] );[/FONT]
[FONT=Arial, sans-serif] }[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->minerva->html =& $this->ipsclass->skin['_wrapper'];[/FONT]
[FONT=Arial, sans-serif] $this->ipsclass->minerva->includer('replace_url');[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif] $html = str_replace( '<{__body_extra__}>', '', $html );[/FONT]
[FONT=Arial, sans-serif] //-----------------------------------------[/FONT]
[FONT=Arial, sans-serif] // Images on another server? uncomment and alter below[/FONT]
[FONT=Arial, sans-serif] //-----------------------------------------[/FONT]
[FONT=Arial, sans-serif] if ( $this->ipsclass->vars['ipb_img_url'] )[/FONT]
[FONT=Arial, sans-serif] {[/FONT]
[FONT=Arial, sans-serif] $html = preg_replace( "#img\s+?src=[\"']style_(images|avatars|emoticons)(.+?)[\"'](.+?)?".">#is", "img src=\"".$this->ipsclass->vars['ipb_img_url']."style_\\1\\2\"\\3>", $html );[/FONT]
[FONT=Arial, sans-serif] }[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->minerva->html =& $this->ipsclass->skin['_wrapper'];[/FONT]
[FONT=Arial, sans-serif] $this->ipsclass->minerva->includer('replace_url');[/FONT]
[FONT=Arial, sans-serif]Apri: sources/classes/class_forums.php[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]$forum_data['last_topic'] = "<a href='{$this-?phpMyAdmin=65ce186d8bf2464235449b99ab7b1f3b>ipsclass->base_url}showtopic={$forum_data['last_id']}&view=getnewpost' title='{$this->ipsclass->lang['tt_gounread']}: {$forum_data['full_last_title']}'>{$forum_data['last_title']}</a>";[/FONT]
[FONT=Arial, sans-serif]Sostituiscilo con:[/FONT]
[FONT=Arial, sans-serif]$forum_data['last_topic'] = "<a href='{$this-?phpMyAdmin=65ce186d8bf2464235449b99ab7b1f3b>ipsclass->base_url}showtopic={$forum_data['last_id']}&view=getnewpost&f={$forum_data['id']}' title='{$this->ipsclass->lang['tt_gounread']}: {$forum_data['full_last_title']}'>{$forum_data['last_title']}</a>";[/FONT]
[FONT=Arial, sans-serif]Apri: sources/classes/class_session.php[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]$qstring = str_replace( "'", "", $this->ipsclass->my_getenv('QUERY_STRING'));[/FONT]
[FONT=Arial, sans-serif]Sostituiscilo con:[/FONT]
[FONT=Arial, sans-serif]$qstring = str_replace( "'", "", 'automodule=minerva&CODE=redirect&u='.$this->ipsclass->vars['board_url'].$this->ipsclass->my_getenv('REQUEST_URI'));[/FONT]
[FONT=Arial, sans-serif]Apri: sources/lib/func_topic_linear.php[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]$return = $this->lib->parse_row( $row );[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]$temp_minerva_post[] = $return;[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]$this->output .= $this->ipsclass->compiled_templates['skin_topic']->TableFooter( array( 'TOPIC' => $this->topic, 'FORUM' => $this->forum ), 0, $this->ipsclass->return_md5_check() );[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->minerva->current_post = $temp_minerva_post[0];[/FONT]
[FONT=Arial, sans-serif]unset($temp_minerva_post);[/FONT]
[FONT=Arial, sans-serif]Apri: [/FONT]sources/action_public/forums.php
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]//-----------------------------------------[/FONT]
[FONT=Arial, sans-serif]// Get the forum info based on the forum ID,[/FONT]
[FONT=Arial, sans-serif]// and get the category name, ID, etc.[/FONT]
[FONT=Arial, sans-serif]//-----------------------------------------[/FONT]
[FONT=Arial, sans-serif]$this->forum = $this->ipsclass->forums->forum_by_id[ $this->ipsclass->input['f'] ];[/FONT]
[FONT=Arial, sans-serif]Dopo Aggiungi:[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->minerva->forum = $this->forum;[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->minerva->check_forum();[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->print->do_output( array( 'TITLE' => $this->ipsclass->vars['board_name']." -> ".$this->forum['name'],[/FONT]
[FONT=Arial, sans-serif]Sostituiscilo con:[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->print->do_output( array( 'TITLE' => $this->forum['name'] . [/FONT][FONT=Arial, sans-serif]" - ".$this->ipsclass->vars['board_name'],[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]$topic['go_new_post'] = "<a href='{$this-?phpMyAdmin=65ce186d8bf2464235449b99ab7b1f3b>ipsclass->base_url}showtopic={$topic['tid']}&view=getnewpost'><{NEW_POST}></a>";[/FONT]
[FONT=Arial, sans-serif]Sostituiscilo con:[/FONT]
[FONT=Arial, sans-serif] $topic['go_new_post'] = "<a href='{$this-?phpMyAdmin=65ce186d8bf2464235449b99ab7b1f3b>ipsclass->base_url}showtopic={$topic['tid']}&view=getnewpost&f={$topic['forum_id']}'>[/FONT]
[FONT=Arial, sans-serif]<{NEW_POST}></a>";[/FONT]
[FONT=Arial, sans-serif]Apri: [/FONT][FONT=Arial, sans-serif]sources/action_public/profile.php[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]//-----------------------------------------[/FONT]
[FONT=Arial, sans-serif] // Grab all data...[/FONT]
[FONT=Arial, sans-serif] //-----------------------------------------[/FONT]
[FONT=Arial, sans-serif] $member = $this->personal_function_load_member( $member_id );[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->minerva->user = $member;[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->minerva->check_user();[/FONT]
[FONT=Arial, sans-serif]Apri: sources/action_public/topics.php[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]//-----------------------------------------[/FONT]
[FONT=Arial, sans-serif]// Error out if we can not find the forum[/FONT]
[FONT=Arial, sans-serif]//-----------------------------------------[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]Trova: [/FONT]
[FONT=Arial, sans-serif]//-----------------------------------------[/FONT]
[FONT=Arial, sans-serif] // Siggie stuff[/FONT]
[FONT=Arial, sans-serif] //-----------------------------------------[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]$row = $this->ipsclass->minerva->parse_rowpost( $row );[/FONT]
[FONT=Arial, sans-serif]Apri: sources/ipsclass.php[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]if ($this->member['id'] == "" and $error['MSG'] != 'server_too_busy' and $error['MSG'] != 'account_susp')[/FONT]
[FONT=Arial, sans-serif] {[/FONT]
[FONT=Arial, sans-serif] $safe_string = $this->base_url . str_replace( '&', '&', $this->parse_clean_value($this->my_getenv('QUERY_STRING')) );[/FONT]
[FONT=Arial, sans-serif] $html = str_replace( "<!--IBF.LOG_IN_TABLE-->", $this->compiled_templates['skin_global']->error_log_in( str_replace( '&', '&', $safe_string ) ), $html);[/FONT]
[FONT=Arial, sans-serif] $override = 1;[/FONT]
[FONT=Arial, sans-serif] }[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]$this->minerva->return_checked_error($error['MSG']);[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]function board_offline()[/FONT]
[FONT=Arial, sans-serif]{[/FONT]
[FONT=Arial, sans-serif] $this->quick_init();[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]$this->minerva->r503();[/FONT]
[FONT=Arial, sans-serif]Apri: index.php[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]//------------------------------[/FONT]
[FONT=Arial, sans-serif]// Generate choice array[/FONT]
[FONT=Arial, sans-serif]//-------------------------------[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]require_once(ROOT_PATH.'modules/minerva/tools/include.php');[/FONT]
[FONT=Arial, sans-serif]$ipsclass->minerva = new mseo_inc();[/FONT]
[FONT=Arial, sans-serif]$ipsclass->minerva->ipsclass =& $ipsclass;[/FONT]
[FONT=Arial, sans-serif]$ipsclass->minerva->init();[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]//--------------------------------[/FONT]
[FONT=Arial, sans-serif]// Initialize the FUNC[/FONT]
[FONT=Arial, sans-serif]//--------------------------------[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]$ipsclass->minerva->after_init();[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]require ROOT_PATH."modules/module_loader.php";[/FONT]
[FONT=Arial, sans-serif] $loader = new module_loader();[/FONT]
[FONT=Arial, sans-serif] $loader->ipsclass =& $ipsclass;[/FONT]
[FONT=Arial, sans-serif]$loader->run_loader();[/FONT]
[FONT=Arial, sans-serif]Sostituiscilo con:[/FONT]
[FONT=Arial, sans-serif]require ROOT_PATH."modules/module_loader.php";[/FONT]
[FONT=Arial, sans-serif] $ipsclass->minerva->current_class = new module_loader();[/FONT]
[FONT=Arial, sans-serif] $ipsclass->minerva->current_class->ipsclass =& $ipsclass;[/FONT]
[FONT=Arial, sans-serif] $ipsclass->minerva->current_class->run_loader();[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]require_once( $file );[/FONT]
[FONT=Arial, sans-serif] $loader = new component_public();[/FONT]
[FONT=Arial, sans-serif] $loader->ipsclass =& $ipsclass;[/FONT]
[FONT=Arial, sans-serif] $loader->run_component()[/FONT]
[FONT=Arial, sans-serif]Sostituiscilo con:[/FONT]
[FONT=Arial, sans-serif] require_once( $file );[/FONT]
[FONT=Arial, sans-serif]$ipsclass->minerva->current_class = new component_public();[/FONT]
[FONT=Arial, sans-serif] $ipsclass->minerva->current_class->ipsclass =& $ipsclass;[/FONT]
[FONT=Arial, sans-serif] $ipsclass->minerva->current_class->run_component();[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]$runme = new $choice[ strtolower($ipsclass->input['act']) ][1];[/FONT]
[FONT=Arial, sans-serif] $runme->ipsclass =& $ipsclass;[/FONT]
[FONT=Arial, sans-serif] $ipsclass->memory_debug_add( "CORE: Loaded ".$choice[ strtolower($ipsclass->input['act']) ][0].".php", $_pre_load );[/FONT]
[FONT=Arial, sans-serif]$runme->auto_run();[/FONT]
[FONT=Arial, sans-serif]Sostituiscilo con:[/FONT]
[FONT=Arial, sans-serif]$ipsclass->minerva->current_class = new $choice[ strtolower($ipsclass->input['act']) ][1];[/FONT]
[FONT=Arial, sans-serif] $ipsclass->minerva->current_class->ipsclass =& $ipsclass;[/FONT]
[FONT=Arial, sans-serif] $ipsclass->memory_debug_add( "CORE: Loaded ".$choice[ strtolower($ipsclass->input['act']) ][0].".php", $_pre_load );[/FONT]
[FONT=Arial, sans-serif] $ipsclass->minerva->current_class->auto_run();[/FONT]
[FONT=Arial, sans-serif]Ora vai su Look&Feel[/FONT]
[FONT=Arial, sans-serif]Dal tema che stai utilizzando seleziona la voce Edit Template HTML[/FONT]
[FONT=Arial, sans-serif]Ti si aprirà questa finestra[/FONT]
[FONT=Arial, sans-serif]Cerca TableFooter(skin_topic)[/FONT]
[FONT=Arial, sans-serif]In modo tale da visualizzare questa finestra[/FONT]
[FONT=Arial, sans-serif]Ora trova:[/FONT]
[FONT=Arial, sans-serif]<!--IBF.TOPIC_ACTIVE-->[/FONT]
[FONT=Arial, sans-serif]<!--IBF.QUICK_REPLY_OPEN-->[/FONT]
[FONT=Arial, sans-serif]E dopo aggiungi[/FONT]
[FONT=Arial, sans-serif]<!--IPBSEO.TAG-->[/FONT]
[FONT=Arial, sans-serif]Ora, come hai fatto in precedenza, cerca questi altri template e fai le modifiche che ti indico ;-) [/FONT]
[FONT=Arial, sans-serif]Template: [/FONT][FONT=Arial, sans-serif]topic_page_top[/FONT][FONT=Arial, sans-serif](skin_topic)[/FONT]
[FONT=Arial, sans-serif]Trova: [/FONT]
[FONT=Arial, sans-serif]<!--IBF.FORUM_RULES-->[/FONT]
[FONT=Arial, sans-serif]E dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]<!--MSEO.Additional.Description-->[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]<!--IBF.FORUM_RULES-->[/FONT]
[FONT=Arial, sans-serif]E dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]<!--MSEO.Additional.Form-->[/FONT]
[FONT=Arial, sans-serif]Template: [/FONT][FONT=Arial, sans-serif]topic_page_top[/FONT][FONT=Arial, sans-serif](skin_topic)[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]<!--IBF.TOPIC_REPLY-->[/FONT]
[FONT=Arial, sans-serif]E dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]<!-MSEO.Bookmarklet-->[/FONT]
[FONT=Arial, sans-serif]Template: [/FONT][FONT=Arial, sans-serif]forumrow_lastunread_link(skin_boards)[/FONT]
[FONT=Arial, sans-serif]Trova: [/FONT]
[FONT=Arial, sans-serif]$tid[/FONT]
[FONT=Arial, sans-serif]E dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]&f=$fid[/FONT]
[FONT=Arial, sans-serif]Template: [/FONT][FONT=Arial, sans-serif]PageTop(skin_forum)[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]<!--IBF.SUBFORUMS-->[/FONT]
[FONT=Arial, sans-serif]E dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]<!--MSEO.Additional.Forum.Form-->[/FONT]
[FONT=Arial, sans-serif]<!--MSEO.Additional.Forum.Description-->[/FONT]
[FONT=Arial, sans-serif]Template: [/FONT][FONT=Arial, sans-serif]lobal_board_footer(skin_global)[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]<a href="lofiversion/index.php<%?phpMyAdmin=65ce186d8bf2464235449b99ab7b1f3b LOFIVERSION %>"><b>{$this->ipsclass->lang['global_lofi']}</b></a>[/FONT]
[FONT=Arial, sans-serif]E dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif] | <!--MSEO.COPYRIGHT-->[/FONT]
[FONT=Arial, sans-serif]Ora vai su looks & feel > skin tools e clicca su “Run Tool” per ripristinare tutti i template. [/FONT]
[FONT=Arial, sans-serif]Ora vai sul
[FONT=Arial, sans-serif]A questo punto inizierà l’installazione[/FONT]
[FONT=Arial, sans-serif]Una volta terminata ti verrà proposta questa pagina dove dovrai cliccare su “Your Board” per tornare al forum[/FONT]
[FONT=Arial, sans-serif]Adesso vai nel pannello di amministrazione e clicca su Components[/FONT]
[FONT=Arial, sans-serif]Tra i vari menù che ti vengono proposti troverai questo (clicca su General Settings)[/FONT]
[FONT=Arial, sans-serif]Ti comparirà questa schermata che ti permetterà di settare tutti i parametri per il rewrite dell’url. Puoi attivare il plugin, attivare il rewrite, includere index.php nei links, inserire il link principale del forum, scegliere il separatore, decidere il numero massimo di caratteri per le descrizioni, abilitare i Bookmarking[/FONT]
[FONT=Arial, sans-serif]Da queste opzioni puoi aggiungere gli account per AddThis, Mint e Analytics[/FONT]
[FONT=Arial, sans-serif]Da qui buoi abilitare la riscrittura dei caratteri speciali e il redirect per per le pagine 404.[/FONT]
[FONT=Arial, sans-serif]Puoi abilitare il redirect su una sezione specifica, puoi scegliere i siti per la WhiteList (quelli accettati) e il tipo di redirect da effettuare (se utilizzare MinervaSeo o meno).[/FONT]
[FONT=Arial, sans-serif]Puoi scegliere se e quali acronimi utilizzare.[/FONT]
[FONT=Arial, sans-serif]Una volta settati tutti questi parametri e dopo aver cliccato su Update Settings dovrai cliccare su Tool & Settings[/FONT]
[FONT=Arial, sans-serif]Dal menù che ti comparirà visualizza tutte le impostazioni generali [/FONT]
[FONT=Arial, sans-serif]Tra quelle che ti compariranno scegli General Configuration[/FONT]
[FONT=Arial, sans-serif]Dovrai cambiare due impostazioni in questa configurazione:[/FONT]
[FONT=Arial, sans-serif]Lofiversion/index.php[/FONT]
[FONT=Arial, sans-serif]sources/action_admin/spiderlogs.php[/FONT]
[FONT=Arial, sans-serif]sources/classes/class_display.php[/FONT]
[FONT=Arial, sans-serif]sources/classes/class_forums.php[/FONT]
[FONT=Arial, sans-serif]sources/classes/class_session.php[/FONT]
[FONT=Arial, sans-serif]sources/lib/func_topic_linear.php[/FONT]
[FONT=Arial, sans-serif]sources/action_public/forums.php[/FONT]
[FONT=Arial, sans-serif]sources/action_public/profile.php[/FONT]
[FONT=Arial, sans-serif]sources/action_public/topics.php[/FONT]
[FONT=Arial, sans-serif]sources/ipsclass.php[/FONT]
[FONT=Arial, sans-serif]index.php[/FONT]
[FONT=Arial, sans-serif]Apri il file lofiversion/index.php[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
$output = str_replace( "<% CHARSET %>" , $ipsclass->vars['gb_char_set'], $output);
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif] if($ipsclass->vars['mseo_meta_lofi_enabled'])[/FONT]
[FONT=Arial, sans-serif]{[/FONT]
[FONT=Arial, sans-serif] $output = str_replace('<meta name="robots" content="INDEX,FOLLOW" />','',$output);[/FONT]
[FONT=Arial, sans-serif] $meta = '<meta name="robots" content="NONE" />';[/FONT]
[FONT=Arial, sans-serif] $meta .= '<meta name="googlebot" content="NONE" />';[/FONT]
[FONT=Arial, sans-serif] $meta .= '<meta name="slurp" content="NONE" />';[/FONT]
[FONT=Arial, sans-serif] $output = str_replace('</title>','</title>'.$meta,$output);[/FONT]
[FONT=Arial, sans-serif] }[/FONT]
[FONT=Arial, sans-serif]Apri il file sources/action_admin/spiderlogs.php[/FONT]
[FONT=Arial, sans-serif]Trova: [/FONT]
[FONT=Arial, sans-serif]$query_string_html = "<a href='{$this-?phpMyAdmin=65ce186d8bf2464235449b99ab7b1f3b>ipsclass->vars['board_url']}/index.{$this->ipsclass->vars['php_ext']}?{$row['query_string']}' target='_blank'>{$row['query_string']}</a>";[/FONT]
[FONT=Arial, sans-serif]Sostituiscilo con:[/FONT]
[FONT=Arial, sans-serif]$qs=$this->ipsclass->txt_truncate($row['query_string']);[/FONT]
[FONT=Arial, sans-serif]$query_string_html = "<a href='{$this-?phpMyAdmin=65ce186d8bf2464235449b99ab7b1f3b>ipsclass->vars['board_url']}/index.{$this->ipsclass->vars['php_ext']}?{$row['query_string']}' target='_blank'>{$qs}</a>";[/FONT]
[FONT=Arial, sans-serif]Apri sources/classes/class_display.php[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->skin['_wrapper'] = str_replace( "<% CSS %>" , $css , $this->ipsclass->skin['_wrapper']);[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]$css = $css.$this->ipsclass->minerva->replace_meta();[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->skin['_wrapper'] = str_replace( "<#IMG_DIR#>", $this->ipsclass->skin['_imagedir'], $this->ipsclass->skin['_wrapper'] );[/FONT]
[FONT=Arial, sans-serif] $this->ipsclass->skin['_wrapper'] = str_replace( "<#EMO_DIR#>", $this->ipsclass->skin['_emodir'] , $this->ipsclass->skin['_wrapper'] );[/FONT]
[FONT=Arial, sans-serif] //-----------------------------------------[/FONT]
[FONT=Arial, sans-serif] // Images on another server? uncomment and alter below[/FONT]
[FONT=Arial, sans-serif] //-----------------------------------------[/FONT]
[FONT=Arial, sans-serif] if ( $this->ipsclass->vars['ipb_img_url'] )[/FONT]
[FONT=Arial, sans-serif] {[/FONT]
[FONT=Arial, sans-serif] $this->ipsclass->skin['_wrapper'] = preg_replace( "#img\s+?src=([\"'])style_(images|avatars|emoticons)(.+?)[\"'](.+?)?".">#is", "img src=\\1".$this->ipsclass->vars['ipb_img_url']."style_\\2\\3\\1\\4>", $this->ipsclass->skin['_wrapper'] );[/FONT]
[FONT=Arial, sans-serif] }[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->minerva->html =& $this->ipsclass->skin['_wrapper'];[/FONT]
[FONT=Arial, sans-serif] $this->ipsclass->minerva->includer('replace_url');[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif] $html = str_replace( '<{__body_extra__}>', '', $html );[/FONT]
[FONT=Arial, sans-serif] //-----------------------------------------[/FONT]
[FONT=Arial, sans-serif] // Images on another server? uncomment and alter below[/FONT]
[FONT=Arial, sans-serif] //-----------------------------------------[/FONT]
[FONT=Arial, sans-serif] if ( $this->ipsclass->vars['ipb_img_url'] )[/FONT]
[FONT=Arial, sans-serif] {[/FONT]
[FONT=Arial, sans-serif] $html = preg_replace( "#img\s+?src=[\"']style_(images|avatars|emoticons)(.+?)[\"'](.+?)?".">#is", "img src=\"".$this->ipsclass->vars['ipb_img_url']."style_\\1\\2\"\\3>", $html );[/FONT]
[FONT=Arial, sans-serif] }[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->minerva->html =& $this->ipsclass->skin['_wrapper'];[/FONT]
[FONT=Arial, sans-serif] $this->ipsclass->minerva->includer('replace_url');[/FONT]
[FONT=Arial, sans-serif]Apri: sources/classes/class_forums.php[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]$forum_data['last_topic'] = "<a href='{$this-?phpMyAdmin=65ce186d8bf2464235449b99ab7b1f3b>ipsclass->base_url}showtopic={$forum_data['last_id']}&view=getnewpost' title='{$this->ipsclass->lang['tt_gounread']}: {$forum_data['full_last_title']}'>{$forum_data['last_title']}</a>";[/FONT]
[FONT=Arial, sans-serif]Sostituiscilo con:[/FONT]
[FONT=Arial, sans-serif]$forum_data['last_topic'] = "<a href='{$this-?phpMyAdmin=65ce186d8bf2464235449b99ab7b1f3b>ipsclass->base_url}showtopic={$forum_data['last_id']}&view=getnewpost&f={$forum_data['id']}' title='{$this->ipsclass->lang['tt_gounread']}: {$forum_data['full_last_title']}'>{$forum_data['last_title']}</a>";[/FONT]
[FONT=Arial, sans-serif]Apri: sources/classes/class_session.php[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]$qstring = str_replace( "'", "", $this->ipsclass->my_getenv('QUERY_STRING'));[/FONT]
[FONT=Arial, sans-serif]Sostituiscilo con:[/FONT]
[FONT=Arial, sans-serif]$qstring = str_replace( "'", "", 'automodule=minerva&CODE=redirect&u='.$this->ipsclass->vars['board_url'].$this->ipsclass->my_getenv('REQUEST_URI'));[/FONT]
[FONT=Arial, sans-serif]Apri: sources/lib/func_topic_linear.php[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]$return = $this->lib->parse_row( $row );[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]$temp_minerva_post[] = $return;[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]$this->output .= $this->ipsclass->compiled_templates['skin_topic']->TableFooter( array( 'TOPIC' => $this->topic, 'FORUM' => $this->forum ), 0, $this->ipsclass->return_md5_check() );[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->minerva->current_post = $temp_minerva_post[0];[/FONT]
[FONT=Arial, sans-serif]unset($temp_minerva_post);[/FONT]
[FONT=Arial, sans-serif]Apri: [/FONT]sources/action_public/forums.php
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]//-----------------------------------------[/FONT]
[FONT=Arial, sans-serif]// Get the forum info based on the forum ID,[/FONT]
[FONT=Arial, sans-serif]// and get the category name, ID, etc.[/FONT]
[FONT=Arial, sans-serif]//-----------------------------------------[/FONT]
[FONT=Arial, sans-serif]$this->forum = $this->ipsclass->forums->forum_by_id[ $this->ipsclass->input['f'] ];[/FONT]
[FONT=Arial, sans-serif]Dopo Aggiungi:[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->minerva->forum = $this->forum;[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->minerva->check_forum();[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->print->do_output( array( 'TITLE' => $this->ipsclass->vars['board_name']." -> ".$this->forum['name'],[/FONT]
[FONT=Arial, sans-serif]Sostituiscilo con:[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->print->do_output( array( 'TITLE' => $this->forum['name'] . [/FONT][FONT=Arial, sans-serif]" - ".$this->ipsclass->vars['board_name'],[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]$topic['go_new_post'] = "<a href='{$this-?phpMyAdmin=65ce186d8bf2464235449b99ab7b1f3b>ipsclass->base_url}showtopic={$topic['tid']}&view=getnewpost'><{NEW_POST}></a>";[/FONT]
[FONT=Arial, sans-serif]Sostituiscilo con:[/FONT]
[FONT=Arial, sans-serif] $topic['go_new_post'] = "<a href='{$this-?phpMyAdmin=65ce186d8bf2464235449b99ab7b1f3b>ipsclass->base_url}showtopic={$topic['tid']}&view=getnewpost&f={$topic['forum_id']}'>[/FONT]
[FONT=Arial, sans-serif]<{NEW_POST}></a>";[/FONT]
[FONT=Arial, sans-serif]Apri: [/FONT][FONT=Arial, sans-serif]sources/action_public/profile.php[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]//-----------------------------------------[/FONT]
[FONT=Arial, sans-serif] // Grab all data...[/FONT]
[FONT=Arial, sans-serif] //-----------------------------------------[/FONT]
[FONT=Arial, sans-serif] $member = $this->personal_function_load_member( $member_id );[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->minerva->user = $member;[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->minerva->check_user();[/FONT]
[FONT=Arial, sans-serif]Apri: sources/action_public/topics.php[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]//-----------------------------------------[/FONT]
[FONT=Arial, sans-serif]// Error out if we can not find the forum[/FONT]
[FONT=Arial, sans-serif]//-----------------------------------------[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]$this->ipsclass->minerva->topics = $this->topic;[/FONT]
[FONT=Arial, sans-serif] $this->ipsclass->minerva->check_topic();[/FONT][FONT=Arial, sans-serif]Trova: [/FONT]
[FONT=Arial, sans-serif]//-----------------------------------------[/FONT]
[FONT=Arial, sans-serif] // Siggie stuff[/FONT]
[FONT=Arial, sans-serif] //-----------------------------------------[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]$row = $this->ipsclass->minerva->parse_rowpost( $row );[/FONT]
[FONT=Arial, sans-serif]Apri: sources/ipsclass.php[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]if ($this->member['id'] == "" and $error['MSG'] != 'server_too_busy' and $error['MSG'] != 'account_susp')[/FONT]
[FONT=Arial, sans-serif] {[/FONT]
[FONT=Arial, sans-serif] $safe_string = $this->base_url . str_replace( '&', '&', $this->parse_clean_value($this->my_getenv('QUERY_STRING')) );[/FONT]
[FONT=Arial, sans-serif] $html = str_replace( "<!--IBF.LOG_IN_TABLE-->", $this->compiled_templates['skin_global']->error_log_in( str_replace( '&', '&', $safe_string ) ), $html);[/FONT]
[FONT=Arial, sans-serif] $override = 1;[/FONT]
[FONT=Arial, sans-serif] }[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]$this->minerva->return_checked_error($error['MSG']);[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]function board_offline()[/FONT]
[FONT=Arial, sans-serif]{[/FONT]
[FONT=Arial, sans-serif] $this->quick_init();[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]$this->minerva->r503();[/FONT]
[FONT=Arial, sans-serif]Apri: index.php[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]//------------------------------[/FONT]
[FONT=Arial, sans-serif]// Generate choice array[/FONT]
[FONT=Arial, sans-serif]//-------------------------------[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]require_once(ROOT_PATH.'modules/minerva/tools/include.php');[/FONT]
[FONT=Arial, sans-serif]$ipsclass->minerva = new mseo_inc();[/FONT]
[FONT=Arial, sans-serif]$ipsclass->minerva->ipsclass =& $ipsclass;[/FONT]
[FONT=Arial, sans-serif]$ipsclass->minerva->init();[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]//--------------------------------[/FONT]
[FONT=Arial, sans-serif]// Initialize the FUNC[/FONT]
[FONT=Arial, sans-serif]//--------------------------------[/FONT]
[FONT=Arial, sans-serif]Dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]$ipsclass->minerva->after_init();[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]require ROOT_PATH."modules/module_loader.php";[/FONT]
[FONT=Arial, sans-serif] $loader = new module_loader();[/FONT]
[FONT=Arial, sans-serif] $loader->ipsclass =& $ipsclass;[/FONT]
[FONT=Arial, sans-serif]$loader->run_loader();[/FONT]
[FONT=Arial, sans-serif]Sostituiscilo con:[/FONT]
[FONT=Arial, sans-serif]require ROOT_PATH."modules/module_loader.php";[/FONT]
[FONT=Arial, sans-serif] $ipsclass->minerva->current_class = new module_loader();[/FONT]
[FONT=Arial, sans-serif] $ipsclass->minerva->current_class->ipsclass =& $ipsclass;[/FONT]
[FONT=Arial, sans-serif] $ipsclass->minerva->current_class->run_loader();[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]require_once( $file );[/FONT]
[FONT=Arial, sans-serif] $loader = new component_public();[/FONT]
[FONT=Arial, sans-serif] $loader->ipsclass =& $ipsclass;[/FONT]
[FONT=Arial, sans-serif] $loader->run_component()[/FONT]
[FONT=Arial, sans-serif]Sostituiscilo con:[/FONT]
[FONT=Arial, sans-serif] require_once( $file );[/FONT]
[FONT=Arial, sans-serif]$ipsclass->minerva->current_class = new component_public();[/FONT]
[FONT=Arial, sans-serif] $ipsclass->minerva->current_class->ipsclass =& $ipsclass;[/FONT]
[FONT=Arial, sans-serif] $ipsclass->minerva->current_class->run_component();[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]$runme = new $choice[ strtolower($ipsclass->input['act']) ][1];[/FONT]
[FONT=Arial, sans-serif] $runme->ipsclass =& $ipsclass;[/FONT]
[FONT=Arial, sans-serif] $ipsclass->memory_debug_add( "CORE: Loaded ".$choice[ strtolower($ipsclass->input['act']) ][0].".php", $_pre_load );[/FONT]
[FONT=Arial, sans-serif]$runme->auto_run();[/FONT]
[FONT=Arial, sans-serif]Sostituiscilo con:[/FONT]
[FONT=Arial, sans-serif]$ipsclass->minerva->current_class = new $choice[ strtolower($ipsclass->input['act']) ][1];[/FONT]
[FONT=Arial, sans-serif] $ipsclass->minerva->current_class->ipsclass =& $ipsclass;[/FONT]
[FONT=Arial, sans-serif] $ipsclass->memory_debug_add( "CORE: Loaded ".$choice[ strtolower($ipsclass->input['act']) ][0].".php", $_pre_load );[/FONT]
[FONT=Arial, sans-serif] $ipsclass->minerva->current_class->auto_run();[/FONT]
[FONT=Arial, sans-serif]Ora vai su Look&Feel[/FONT]

[FONT=Arial, sans-serif]Dal tema che stai utilizzando seleziona la voce Edit Template HTML[/FONT]

[FONT=Arial, sans-serif]Ti si aprirà questa finestra[/FONT]

[FONT=Arial, sans-serif]Cerca TableFooter(skin_topic)[/FONT]

[FONT=Arial, sans-serif]In modo tale da visualizzare questa finestra[/FONT]

[FONT=Arial, sans-serif]Ora trova:[/FONT]
[FONT=Arial, sans-serif]<!--IBF.TOPIC_ACTIVE-->[/FONT]
[FONT=Arial, sans-serif]<!--IBF.QUICK_REPLY_OPEN-->[/FONT]
[FONT=Arial, sans-serif]E dopo aggiungi[/FONT]
[FONT=Arial, sans-serif]<!--IPBSEO.TAG-->[/FONT]
[FONT=Arial, sans-serif]Ora, come hai fatto in precedenza, cerca questi altri template e fai le modifiche che ti indico ;-) [/FONT]
[FONT=Arial, sans-serif]Template: [/FONT][FONT=Arial, sans-serif]topic_page_top[/FONT][FONT=Arial, sans-serif](skin_topic)[/FONT]
[FONT=Arial, sans-serif]Trova: [/FONT]
[FONT=Arial, sans-serif]<!--IBF.FORUM_RULES-->[/FONT]
[FONT=Arial, sans-serif]E dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]<!--MSEO.Additional.Description-->[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]<!--IBF.FORUM_RULES-->[/FONT]
[FONT=Arial, sans-serif]E dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]<!--MSEO.Additional.Form-->[/FONT]
[FONT=Arial, sans-serif]Template: [/FONT][FONT=Arial, sans-serif]topic_page_top[/FONT][FONT=Arial, sans-serif](skin_topic)[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]<!--IBF.TOPIC_REPLY-->[/FONT]
[FONT=Arial, sans-serif]E dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]<!-MSEO.Bookmarklet-->[/FONT]
[FONT=Arial, sans-serif]Template: [/FONT][FONT=Arial, sans-serif]forumrow_lastunread_link(skin_boards)[/FONT]
[FONT=Arial, sans-serif]Trova: [/FONT]
[FONT=Arial, sans-serif]$tid[/FONT]
[FONT=Arial, sans-serif]E dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]&f=$fid[/FONT]
[FONT=Arial, sans-serif]Template: [/FONT][FONT=Arial, sans-serif]PageTop(skin_forum)[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]<!--IBF.SUBFORUMS-->[/FONT]
[FONT=Arial, sans-serif]E dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif]<!--MSEO.Additional.Forum.Form-->[/FONT]
[FONT=Arial, sans-serif]<!--MSEO.Additional.Forum.Description-->[/FONT]
[FONT=Arial, sans-serif]Template: [/FONT][FONT=Arial, sans-serif]lobal_board_footer(skin_global)[/FONT]
[FONT=Arial, sans-serif]Trova:[/FONT]
[FONT=Arial, sans-serif]<a href="lofiversion/index.php<%?phpMyAdmin=65ce186d8bf2464235449b99ab7b1f3b LOFIVERSION %>"><b>{$this->ipsclass->lang['global_lofi']}</b></a>[/FONT]
[FONT=Arial, sans-serif]E dopo aggiungi:[/FONT]
[FONT=Arial, sans-serif] | <!--MSEO.COPYRIGHT-->[/FONT]
[FONT=Arial, sans-serif]Ora vai su looks & feel > skin tools e clicca su “Run Tool” per ripristinare tutti i template. [/FONT]

[FONT=Arial, sans-serif]Ora vai sul
Perfavore,
Entra
oppure
Registrati
per vedere i Link!
[/FONT]§/[FONT=Arial, sans-serif]ipbseo_install/index.php per installare MinervaSeo. La prima schermata che ti comparirà sarà questa dove dovrai cliccare su Install [/FONT] 
[FONT=Arial, sans-serif]A questo punto inizierà l’installazione[/FONT]

[FONT=Arial, sans-serif]Una volta terminata ti verrà proposta questa pagina dove dovrai cliccare su “Your Board” per tornare al forum[/FONT]

[FONT=Arial, sans-serif]Adesso vai nel pannello di amministrazione e clicca su Components[/FONT]

[FONT=Arial, sans-serif]Tra i vari menù che ti vengono proposti troverai questo (clicca su General Settings)[/FONT]

[FONT=Arial, sans-serif]Ti comparirà questa schermata che ti permetterà di settare tutti i parametri per il rewrite dell’url. Puoi attivare il plugin, attivare il rewrite, includere index.php nei links, inserire il link principale del forum, scegliere il separatore, decidere il numero massimo di caratteri per le descrizioni, abilitare i Bookmarking[/FONT]

[FONT=Arial, sans-serif]Da queste opzioni puoi aggiungere gli account per AddThis, Mint e Analytics[/FONT]

[FONT=Arial, sans-serif]Da qui buoi abilitare la riscrittura dei caratteri speciali e il redirect per per le pagine 404.[/FONT]

[FONT=Arial, sans-serif]Puoi abilitare il redirect su una sezione specifica, puoi scegliere i siti per la WhiteList (quelli accettati) e il tipo di redirect da effettuare (se utilizzare MinervaSeo o meno).[/FONT]

[FONT=Arial, sans-serif]Puoi scegliere se e quali acronimi utilizzare.[/FONT]

[FONT=Arial, sans-serif]Una volta settati tutti questi parametri e dopo aver cliccato su Update Settings dovrai cliccare su Tool & Settings[/FONT]

[FONT=Arial, sans-serif]Dal menù che ti comparirà visualizza tutte le impostazioni generali [/FONT]

[FONT=Arial, sans-serif]Tra quelle che ti compariranno scegli General Configuration[/FONT]

[FONT=Arial, sans-serif]Dovrai cambiare due impostazioni in questa configurazione:[/FONT]
- [FONT=Arial, sans-serif]Redirect Page (mettere su SI o YES)[/FONT]

- [FONT=Arial, sans-serif]Image url (mettere l’url della cartella per le immagini)[/FONT]
