Flash005 wrote:Flash005 wrote:Instead of having like googlebot (3) i have - googlebot, googlebot , googlebot
Can someone help me on this one?
Let me try again..
Does anyone knows how to solve this?
Follow the steps below exactly as shown in their mods respectfully, and it should work perfectly..
------------------------------------------------------------------------------
http://www.phpbb.com/phpBB/viewtopic.php?t=200361 - for bot indexing mod - v1.2 i do believe.
then add this code below
Code: Select all
#
#-----[ OPEN ]----------------------------------------
#
includes/page_header.php
#
#-----[ FIND ]-----------------------------------
#
if( $row['is_robot'] )
{
$online_userlist = $row['is_robot'] . (($online_userlist!='') ? ', ' : '') . $online_userlist;
}
#
#-----[ REPLACE WITH ]-----------------------------
#
if( $row['is_robot'] )
{
$RbList = '';
if($row['is_robot']!="0") // If it's not zero it can only be a Bot's Name
{
$BotName = $row['is_robot']; // Extract is_robot's datas into a dedicaced array
if (!isset($arrRobot[$BotName]))
{
$arrRobot[$BotName]=1; // If first Bot Name's view, define 1
}
else
{
$arrRobot[$BotName]++; // If it's viewed again, just $var++
}
}
}
#
#-----[ FIND ]-----------------------------------
#
if ( empty($online_userlist) )
{
$online_userlist = $lang['None'];
}
#
#-----[ INSERT BEFORE ]-----------------------------
#
if(is_array($arrRobot))
{
foreach($arrRobot as $RbName=>$nbOnline)
{
$RbList .= $RbName . (($nbOnline > 1) ? "($nbOnline), " : ", ");
}
}
$online_userlist = "<i>".$RbList."</i>" . $online_userlist;
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
try this one - http://www.phpbb.com/phpBB/viewtopic.ph ... 87#1732587