@Ego6 Je pense que c'est plutôt du coté de la gestion des titres des tes post qu'il faut chercher. => les tpl contenant body
Pour le reste : premier post updaté : possible méprise sur le cloaking.
Modérateur: Equipe


<a href="index.php?c=2&sid=146b5f1c9574bbc8d093dc08b064c238" class="cattitle">Ego System</a></span></td>
<td style="" class="row1" onmouseover="this.style.backgroundColor='#232323'; this.style.cursor='hand';" onmouseout='this.style.backgroundColor=""' onclick="window.location.href='-span-class-forumlink-a-href-viewforumphpf15-ampsid146b5f1c9574bbc8d093dc08b064c238-class-forumlink-rulez-vf15.html?sid=146b5f1c9574bbc8d093dc08b064c238'" width="100%"> <span class="forumlink"> <a href="viewforum.php?f=15&sid=146b5f1c9574bbc8d093dc08b064c238" class="forumlink">Rulez</a>
onmouseover="this.style.backgroundColor='#232323'; this.style.cursor='hand';" onmouseout='this.style.backgroundColor=""' onclick="window.location.href='-span-class-forumlink-a-href-viewforumphpf15-ampsid146b5f1c9574bbc8d093dc08b064c238-class-forumlink-rulez-vf15.html?sid=146b5f1c9574bbc8d093dc08b064c238'"



<td class="row1" width="100%" onmouseover="this.style.backgroundColor='{T_TR_COLOR2}'; this.style.cursor='hand';" onMouseOut=this.style.backgroundColor="" onclick="window.location.href='{catrow.forumrow.U_VIEWFORUM}'"> <span class="forumlink"> <a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink">{catrow.forumrow.FORUM_NAME}</a><br />
<td class="row1" width="100%" onmouseover="this.style.backgroundColor='{T_TR_COLOR2}'; this.style.cursor='hand';" onMouseOut=this.style.backgroundColor="" <span class="forumlink"> <a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink">{catrow.forumrow.FORUM_NAME}</a><br />

anartoka a écrit:1)phpBB-google-keyword-URLs.txt : C'est le mod url rewrite + titre forum et posts. Les parties à remplacer ou ajouter sont simple à trouver dans le code, il suffit de comprendre page_tail.php quand il dit page_footer.php. Le .htaccess est le même que le mien, sauf que j'ait du ajouter des /votredossierphpBB/. Tant que celui là n'est pas en place, le reste ne sert à rien. Toutes les autres modifs sont optionnelles, à partir de ce stade de l'installation, toutes les combinaisons de mods de la "suite" marchent (au détail pret qu'il se peut que le guest session mod entre en conflit avec le manage bot mod car ce mod possède sa propre gestion des sid. dès que je l'installe je vous donne la réponse).
j'ai installé mais j'ai un problème :
bon déjà, j'utilise le mod Gf-portail.
J'ai bien les liens qui s'affichent de cette sorte :
monsite.com/jeux-gestion-de-cycliste-gt-interractivite-entre-joueur-vp1970.html#1970
Le problème est que je me retrouve toujours à l'accueil de mon portal.php...
Une idée ? une solution ?
EDIT : A force de cliquer j'ai eu ce message d'erreur :
- Code: Tout sélectionner
HTTP/1.1 302 Found Date: Tue, 12 Jul 2005 21:39:15 GMT Server: Apache/1.3.33 (Unix) PHP/4.3.11 X-Powered-By: PHP/4.3.11 Set-Cookie: phpbb2mysql_data=a%3A2%3A%7Bs%3A11%3A%22autologinid%22%3Bs%3A32%3A%22b75d4272087ebb997c9960824b164f76%22%3Bs%3A6%3A%22userid%22%3Bi%3A2%3B%7D; expires=Wed, 12-Jul-06 21:39:15 GMT; path=/ Set-Cookie: phpbb2mysql_sid=74bdae6cb1324ef114b960b10af0bc19; path=/ Location: portal.php Keep-Alive: timeout=15, max=99 Connection: Keep-Alive Transfer-Encoding: chunked Content-Type: text/html 0


Il y a en tout n utilisateur en ligne :: x Enregistré, y Invisible, z Invité et w Bots
#
#-----[ Open ]----------------------------------------------
#
includes/page_header.php
#
#-----[ Find ]----------------------------------------------
#
if( $row['is_robot'] )
{
$online_userlist = $row['is_robot'] . (($online_userlist!='') ? ', ' : '') . $online_userlist;
}
#
#-----[ Replace by ]----------------------------------------------
#
if( $row['is_robot'] )
{
$guests_online--;
$bot_count++;
$online_userlist = $row['is_robot'] . (($online_userlist!='') ? ', ' : '') . $online_userlist;
}
#
#-----[ Find ]----------------------------------------------
#
$total_online_users = $logged_visible_online + $logged_hidden_online + $guests_online;
#
#-----[ Replace by ]----------------------------------------------
#
$total_online_users = $logged_visible_online + $logged_hidden_online + $guests_online + $bot_count;
#
#-----[ Find]----------------------------------------------
#
else
{
$l_g_user_s = $lang['Guest_users_total'];
}
#
#-----[ After addon ]----------------------------------------------
#
if ( $bot_count == 0 )
{
$l_bot = $lang['Bot_nul'];
}
else if ( $bot_count == 1 )
{
$l_bot = $lang['Bot_one'];
}
else
{
$l_bot = $lang['Bot_total'];
}
#
#-----[ Find]----------------------------------------------
#
$l_online_users .= sprintf($l_g_user_s, $guests_online);
#
#-----[ After addon ]----------------------------------------------
#
$l_online_users .= sprintf($l_bot, $bot_count);
#
#-----[ Save and close]----------------------------------------------
#
#
#-----[ Open ]----------------------------------------------
#
language/lang_english/lang_main.php
#
#-----[ Find]----------------------------------------------
#
$lang['Hidden_users_zero_total'] = '0 Hidden and ';
$lang['Hidden_user_total'] = '%d Hidden and ';
$lang['Hidden_users_total'] = '%d Hidden and ';
#
#-----[ Replace by]----------------------------------------------
#
$lang['Hidden_users_zero_total'] = '0 Hidden, ';
$lang['Hidden_user_total'] = '%d Hidden, ';
$lang['Hidden_users_total'] = '%d Hidden, ';
#
#-----[ Find ]----------------------------------------------
#
$lang['Guest_users_zero_total'] = '0 Guests';
$lang['Guest_users_total'] = '%d Guests';
$lang['Guest_user_total'] = '%d Guest';
#
#-----[ Replace by ]----------------------------------------------
#
$lang['Guest_users_zero_total'] = '0 Guests and ';
$lang['Guest_users_total'] = '%d Guests and ';
$lang['Guest_user_total'] = '%d Guest and';
#
#-----[ Find ]----------------------------------------------
#
$lang['Guest_users_zero_total'] = '0 Guests and ';
$lang['Guest_users_total'] = '%d Guests and ';
$lang['Guest_user_total'] = '%d Guest and';
#
#-----[ After addon ]----------------------------------------------
#
$lang['Bot_nul'] = '0 Bots';
$lang['Bot_total'] = '%d Bots';
$lang['Bot_one'] = '%d Bot';
#
#-----[ Open ]----------------------------------------------
#
language/lang_french/lang_main.php
#
#-----[ Find]----------------------------------------------
#
$lang['Hidden_users_zero_total'] = '0 Invisible et ';
$lang['Hidden_user_total'] = '%d Invisible et ';
$lang['Hidden_users_total'] = '%d 0 Invisible et ';
#
#-----[ Replace by]----------------------------------------------
#
$lang['Hidden_users_zero_total'] = '0 Invisible, ';
$lang['Hidden_user_total'] = '%d Invisibles, ';
$lang['Hidden_users_total'] = '%d Invisible, ';
#
#-----[ Find ]----------------------------------------------
#
$lang['Guest_users_zero_total'] = '0 Invité';
$lang['Guest_users_total'] = '%d Invités';
$lang['Guest_user_total'] = '%d Invité';
#
#-----[ Replace by ]----------------------------------------------
#
$lang['Guest_users_zero_total'] = '0 Invité et ';
$lang['Guest_users_total'] = '%d Invités et ';
$lang['Guest_user_total'] = '%d Invité et ';
#
#-----[ Find ]----------------------------------------------
#
$lang['Guest_users_zero_total'] = '0 Invité et ';
$lang['Guest_users_total'] = '%d Invités et ';
$lang['Guest_user_total'] = '%d Invité et ';
#
#-----[ After addon ]----------------------------------------------
#
$lang['Bot_nul'] = '0 Bots';
$lang['Bot_total'] = '%d Bots';
$lang['Bot_one'] = '%d Bot';
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
#
#-----[ Open ]----------------------------------------------
#
admin/admin_bots.php
#
#-----[ FIND ]---------------------------------------------
#
'IP' => "<a href=\"http://network-tools.com/default.asp?host=" . $pending_array[$loop+1] . "\" target=\"_phpbbwhois\">" . $pending_array[$loop+1] . "</a>")
#
#-----[ REPLACE WITH ]---------------------------------------
#
'IP' => "<a href=\"http://www.dnsstuff.com/tools/whois.ch?ip=" . $pending_array[$loop+1] . "\" target=\"_phpbbwhois\">" . $pending_array[$loop+1] . "</a>")
#
#-----[ FIND ]---------------------------------------------
#
'IP' => "<b><a href=\"http://network-tools.com/default.asp?host=" . $pending_array[$loop] . "\" target=\"_phpbbwhois\">" . $pending_array[$loop] . "</a></b>")
#
#-----[ REPLACE WITH ]---------------------------------------
#
'IP' => "<b><a href=\"http://www.dnsstuff.com/tools/whois.ch?ip=" . $pending_array[$loop] . "\" target=\"_phpbbwhois\">" . $pending_array[$loop] . "</a></b>")
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM




Retourner vers Coding, Webmastering et Sécurité informatique
Utilisateurs parcourant ce forum: Aucun utilisateur enregistré et 3 invités