phpBB and sessions ID, Search Engine optimization technique

by Ricky on January 06, 2004, 11:32:19 AM
Pages: [1] 2  All
Print
Author  (Read 21148 times)
Ricky
Yoindian Shayar
******

Rau: 8
Offline Offline

Gender: Male
Waqt Bitaya:
4 days, 3 hours and 56 minutes.

Posts: 2455
Member Since: Dec 2003


View Profile
During working on this forum and few others i came to understand different techniques to  make phpBB search engine friendly so I decided to summ up all .
Here I have collected all what i have found...

Right in the begining there are two  mods  (php+google) and (google-enhancement-mode)  The first one  is used to remove the   SIDs for google and google like search engines and the second one is to give google a single session.    
I found that both the mods work fine untill the version 2.0.3 of phpBB. and the later versions reaquires some changes. So people later to phpBB
2.0.3 should use the following

Google Single Session mod #1
Code:



includes/sessions.php


   global $SID;

if ( !empty($SID) && !preg_match('#sid=#', $url) )


   global $SID, $HTTP_SERVER_VARS;

   if ( !empty($SID) && !preg_match('sid=', $url) && !strstr($HTTP_SERVER_VARS['HTTP_USER_AGENT'] ,'Googlebot') && !strstr($HTTP_SERVER_VARS['HTTP_USER_AGENT'] ,'slurp@inktomi.com'))










Also there are several other version of this mod.. but the should be this untill i m writhing this.. I have got this conclusion from the feedback of various other users.
Now in addition to that mod...people should have robots.txt in ther root directory.. (here assumes that u have installed ur forum in root otherwise change the path respective to ur forums path)..
Code:
User-agent: * 
Disallow: /admin/
Disallow: /attach_mod/
Disallow: /db/
Disallow: /files/
Disallow: /images/
Disallow: /includes/
Disallow: /language/
Disallow: /mycalendar_mod/
Disallow: /spelling/
Disallow: /templates/
Disallow: /common.php
Disallow: /config.php
Disallow: /glance_config.php
Disallow: /groupcp.php
Disallow: /memberlist.php
Disallow: /mini_cal.php
Disallow: /modcp.php
Disallow: /mycalendar.php
Disallow: /news_insert.php
Disallow: /posting.php
Disallow: /printview.php
Disallow: /privmsg.php
Disallow: /profile.php
Disallow: /ranks.php
Disallow: /search.php
Disallow: /statistics.php
Disallow: /tellafriend.php
Disallow: /viewonline.php


The robots.txt don't let google to spider the unwanted posts..
-------------------------------------------------------------------
Also there was also a another approach to get rid of SIds for guest and search engines..  That is another mod. But this mods don't work if u allow annonymous user on to post on ur site...
SID removal for all #2
Code:
# 


includes/sessions.php




$SID = 'sid=' . $session_id;




if ( $userdata['session_user_id'] != ANONYMOUS ){
   $SID = 'sid=' . $session_id;
} else {
   $SID = '';
}



Here also inclusion of the above provided robots.txt is appreciated.

-------------------------------
Below is the mod.. can be used with Mod #1 to get indexed in google faster..
It requires mod_rewrite enabled.. as directed below. (This mod is not in standard form but u can understand it.
Code:
Requirements: you need mod_rewrite enabled as well as ability to use .htaccess or modify apache config files. 

Implementation:

Step 1. In /includes/page_header.php before

Code:
//
// Generate logged in/logged out status
//


add this code (make sure there are no space breaks at line ends after you paste):

Code:
ob_start();
function replace_for_mod_rewrite(&$s)
{
$urlin =
array(
"'(?<!/)viewforum.php\?f=([0-9]*)&topicdays=([0-9]*)&start=([0-9]*)'",
"'(?<!/)viewforum.php\?f=([0-9]*)&mark=topics'",
"'(?<!/)viewforum.php\?f=([0-9]*)'",
"'(?<!/)viewtopic.php\?t=([0-9]*)&view=previous'",
"'(?<!/)viewtopic.php\?t=([0-9]*)&view=next'",
"'(?<!/)viewtopic.php\?t=([0-9]*)&postdays=([0-9]*)&postorder=([a-zA-Z]*)&start=([0-9]*)'",
"'(?<!/)viewtopic.php\?t=([0-9]*)&start=([0-9]*)&postdays=([0-9]*)&postorder=([a-zA-Z]*)&highlight=([a-zA-Z0-9]*)'",
"'(?<!/)viewtopic.php\?t=([0-9]*)&start=([0-9]*)'",
"'(?<!/)viewtopic.php\?t=([0-9]*)'",
"'(?<!/)viewtopic.php&p=([0-9]*)'",
"'(?<!/)viewtopic.php\?p=([0-9]*)'",
);
$urlout = array(
"viewforum\\1-\\2-\\3.html",
"forum\\1.html",
"forum\\1.html",
"ptopic\\1.html",
"ntopic\\1.html",
"ftopic\\1-\\2-\\3-\\4.html",
"ftopic\\1.html",
"ftopic\\1-\\2.html",
"ftopic\\1.html",
"sutra\\1.html",
"sutra\\1.html",
);
$s = preg_replace($urlin, $urlout, $s);
return $s;
}


Step 2. In /includes/page_tail.php after

Code:
$db->sql_close();


add this:

Code:
$contents = ob_get_contents();
ob_end_clean();
echo replace_for_mod_rewrite($contents);
global $dbg_starttime;
 


in the same file after

Code:
ob_end_clean();


add this:

Code:
echo replace_for_mod_rewrite($contents);
global $dbg_starttime;


Step 3. In your .htaccess file (if you don't have one create it; should be located in you forum root directory) paste these lines:

Code:
RewriteEngine On
RewriteRule ^forums.* index.php
RewriteRule ^forum([0-9]*).* viewforum.php?f=$1&mark=topic
RewriteRule ^viewforum([0-9]*)-([0-9]*)-([0-9]*).* viewforum.php?f=$1&topicdays=$2&start=$3
RewriteRule ^forum([0-9]*).* viewforum.php?f=$1
RewriteRule ^ptopic([0-9]*).* viewtopic.php?t=$1&view=previous
RewriteRule ^ntopic([0-9]*).* viewtopic.php?t=$1&view=next
RewriteRule ^ftopic([0-9]*)-([0-9]*)-([a-zA-Z]*)-([0-9]*).* viewtopic.php?t=$1&postdays=$2&postorder=$3&start=$4
RewriteRule ^ftopic([0-9]*)-([0-9]*).* viewtopic.php?t=$1&start=$2
RewriteRule ^ftopic([0-9]*).* viewtopic.php?t=$1
RewriteRule ^ftopic([0-9]*).html viewtopic.php?t=$1&start=$2&postdays=$3&postorder=$4&highlight=$5
RewriteRule ^sutra([0-9]*).* viewtopic.php?p=$1


Note: sometimes this .htaccess code won't work properly if the forum is on a subdomain (was the case with me), you may need to try this variation:

Code:
RewriteEngine On
RewriteRule ^forums.* /index.php
RewriteRule ^forum([0-9]*).* /viewforum.php?f=$1&mark=topic
RewriteRule ^viewforum([0-9]*)-([0-9]*)-([0-9]*).* /viewforum.php?f=$1&topicdays=$2&start=$3
RewriteRule ^forum([0-9]*).* /viewforum.php?f=$1
RewriteRule ^ptopic([0-9]*).* /viewtopic.php?t=$1&view=previous
RewriteRule ^ntopic([0-9]*).* /viewtopic.php?t=$1&view=next
RewriteRule ^ftopic([0-9]*)-([0-9]*)-([a-zA-Z]*)-([0-9]*).* /viewtopic.php?t=$1&postdays=$2&postorder=$3&start=$4
RewriteRule ^ftopic([0-9]*)-([0-9]*).* /viewtopic.php?t=$1&start=$2
RewriteRule ^ftopic([0-9]*).* /viewtopic.php?t=$1
RewriteRule ^ftopic([0-9]*).html /viewtopic.php?t=$1&start=$2&postdays=$3&postorder=$4&highlight=$5
RewriteRule ^sutra([0-9]*).* /viewtopic.php?p=$1


Step 4. Very important! In your robots.txt file (goes at the *site* root) add these lines:

Code:
Disallow: /your-forum-folder/sutra*.html$
Disallow: /your-forum-folder/ptopic*.html$
Disallow: /your-forum-folder/ntopic*.html$
Disallow: /your-forum-folder/ftopic*asc*.html$


(This is required to avoid feeding duplicate content to Google)

Step 5. Apply Google Mod #1 described at this page.


Then there was a suggestion to make a sitemap page having static url to each topic in ur forum generated dynamically. This will allow google to get ur  all topics indexed without Sids. But some suggest it is not a good idea for big forums because google don't like more than 200 links on a page. Well the sitemap page u need is below..
Code:

<?php 
/*************************************************************************** 
* Save this file as&#58;   site_map.php &#40;or anything you like&#41; 
* Version&#58;      Friday, Oct 4, 2002 
* Email&#58;      angus@phphacks.com 
* Purpose of hack&#58;   Basically generates a list of topics and 
*      displays them with link to the topic. Goal 
*      is to provide search engines like Google 
*      with a static page of links to dynamic pages 
*      You should link to this page from your sites 
*      home page somewhere. 
* Demo&#58;      http&#58;//www.aussiecelebs.com/forums/site_map.php 
* Tested on&#58;   phpBB 2.01, 2.02 

***************************************************************************/ 

/*************************************************************************** 

* This program is free software; you can redistribute it and/or modify 
* it under the terms of the GNU General Public License as published by 
* the Free Software Foundation; either version 2 of the License, or 
* &#40;at your option&#41; any later version. 

***************************************************************************/ 

echo 

<!-- Start header here. Make sure you dont use any \" s --> 

<html> 
<head> 
<meta http-equiv='Content-Language' content='en-au'> 
<title>Enter Your Title Here</title> 
<meta name='keywords' content='keyword phrase, keyword phrase'> 
<meta name='description' content='Site description including reference to keyword prhase'> 
<base target='_top'> 
</head> 
<body bgcolor='#FFFFFF'> 
<h1>Site Map</h1> 
<!-- End Header --> 

"


define&#40;'IN_PHPBB', true&#41;; 
$phpbb_root_path './'
include&
#40;$phpbb_root_path . 'extension.inc'&#41;; 
include&#40;$phpbb_root_path . 'common.'.$phpEx&#41;; 

echo "<h2>All Categories</h2>"

$result mysql_query&#40;"SELECT cat_title, cat_id FROM phpbb_categories ORDER BY cat_title"&#41;; 
while&#40;$row=  mysql_fetch_assoc&#40;$result&#41;&#41; 
&#123; 
      
echo "<a href='index.php?c=".$row["cat_id"&#93;."'>".$row["cat_title"&#93;."</a><br>"; 

&#125; 

echo "<h2>All Forums</h2>"

$result mysql_query&#40;"SELECT forum_id, forum_name, forum_desc FROM phpbb_forums ORDER BY forum_name"&#41;; 
while&#40;$row=  mysql_fetch_assoc&#40;$result&#41;&#41; 
&#123; 
      
echo "<a href='viewforum.php?f=".$row["forum_id"&#93;."'>".$row["forum_name"&#93;."</a>"." - ".$row["forum_desc"&#93;."<br>"; 

&#125; 

echo "<h2>All Topics</h2>"

$result mysql_query&#40;"SELECT topic_title, topic_id FROM phpbb_topics ORDER BY topic_title"&#41;; 
while&#40;$row=  mysql_fetch_assoc&#40;$result&#41;&#41; 
&#123; 
      
echo "<a href='viewtopic.php?t=".$row["topic_id"&#93;."'>".$row["topic_title"&#93;."</a><br>"; 

&#125; 

echo 

<!-- Start footer here. --> 

</body> 
</html> 

<!-- End footer --> 

"


?>

Place this page inside ur forum directory and give a link to ur site map in ur mainpage.

In addition to use that .. u can also use dynamic metatage generator by doing the following..
Code:

 includes/page_header.php
find
Code:
define('HEADER_INC', TRUE);

after, add
Code:

// MOD TOPIC META TAGS BEGIN
// add meta tags - we only want to do this is specifaclly asked
if( isset($HTTP_GET_VARS['with_meta']) || isset($HTTP_POST_VARS['with_meta']) )
{
    if ( isset($HTTP_GET_VARS[POST_TOPIC_URL]) )
    {
       $topic_id = intval($HTTP_GET_VARS[POST_TOPIC_URL]);
    }
    else if ( isset($HTTP_GET_VARS['topic']) )
    {
       $topic_id = intval($HTTP_GET_VARS['topic']);
    }
   
    if ( $topic_id )
    {
        $sql = "SELECT c.cat_title, f.forum_name, t.topic_title
                FROM " . TOPICS_TABLE . " t, " . FORUMS_TABLE . " f, " . CATEGORIES_TABLE . " c
                WHERE f.forum_id = t.forum_id
                AND c.cat_id = f.cat_id
                AND t.topic_id = $topic_id";
        if( ($result = $db->sql_query($sql)) )
        {
            if ( $meta_row = $db->sql_fetchrow($result) )
            {
                $meta_description = '<meta name=description content="' . $meta_row['cat_title'] . ' :: ' . $meta_row['forum_name'] . ' :: ' . $meta_row['topic_title'] . '">';
            }
        }
        $sql = "SELECT w.word_text
                FROM " . TOPICS_TABLE . " t, " . SEARCH_MATCH_TABLE . " m, " . SEARCH_WORD_TABLE . " w
                WHERE t.topic_first_post_id = m.post_id
                AND m.word_id = w.word_id
                AND t.topic_id = $topic_id";
        if( ($result = $db->sql_query($sql)) )
        {
            $meta_keywords = '';
            while ( $meta_row = $db->sql_fetchrow($result) )
            {
                $meta_keywords .= ($meta_keywords=='') ? $meta_row['word_text'] : ',' . $meta_row['word_text'];
            }
            $meta_keywords = '<meta name=keywords content="' . $meta_keywords . '">';
        }    
    }
}
// MOD TOPIC META TAGS END
 


find
Code:
'PAGE_TITLE' => $page_title,

after, add
Code:

    'META_DESCRIPTION' => $meta_description,
    'META_KEYWORDS' => $meta_keywords,
 


in templates/subSilver/overall_header.tpl
find
Code:
<meta http-equiv="Content-Style-Type" content="text/css">

after, add
Code:

{META_DESCRIPTION}
{META_KEYWORDS}
 


then all you need to do in your sitemap page is add...
Code:
&with_meta=


This another mod by bradleyk
Code:




includes/sessions.php


function append_sid($url, $non_html_amp = false)


function tep_not_null($value) {
    if (is_array($value)) {
      if (sizeof($value) > 0) {
        return true;
      } else {
        return false;
      }
    } else {
      if (($value != '') && (strtolower($value) != 'null') &&       (strlen(trim($value)) > 0)){
        return true;
      } else {
        return false;
      }
    }
}


   global $SID;

if ( !empty($SID) && !preg_match('#sid=#', $url) )


    $user_agent = strtolower($HTTP_SERVER_VARS['HTTP_USER_AGENT']);
    $spider_flag = false;

    if (tep_not_null($user_agent)) {
      $spiders = file($phpbb_root_path . 'includes/spiders.txt');

      for ($i=0, $n=sizeof($spiders); $i<$n; $i++) {
        if (tep_not_null($spiders[$i])) {
          if (is_integer(strpos($user_agent, trim($spiders[$i])))) {
            $spider_flag = true;
            break;
          }
        }
      }
    }


        if ( !empty($SID) && !eregi('sid=', $url) &&
             !($spider_flag))


includes/spiders.txt


almaden.ibm.com
appie 1.1
architext
ask jeeves
asterias2.0
augurfind
baiduspider
bannana_bot
bdcindexer
crawler
crawler@fast
docomo
fast-webcrawler
fluffy the spider
frooglebot
geobot
googlebot
gulliver
henrythemiragorobot
ia_archiver
infoseek
kit_fireball
lachesis
lycos_spider
mantraagent
mercator
moget/1.0
muscatferret
nationaldirectory-webspider
naverrobot
ncsa beta
netresearchserver
ng/1.0
osis-project
polybot
pompos
scooter
seventwentyfour
sidewinder
sleek spider
slurp/si
slurp@inktomi.com
steeler/1.3
szukacz
t-h-u-n-d-e-r-s-t-o-n-e
teoma
turnitinbot
ultraseek
vagabondo
voilabot
w3c_validator
zao/0
zyborg/1.0
 

The above mod gives some error using Admin CP but you can fix that by making a file admin/includes/spiders.txt
Also there are few more mods and they are good. but the above i have mention turns out to be the successfull and checked by various users feedback.

Also I am very-very thankful to those who had worked a lot to provide varoious mods in this thread.
Well if you find and  any errors in it then plz point out..
Thanx..
Logged
Similar Poetry and Posts (Note: Find replies to above post after the related posts and poetry)
Have to login twice in phpBB ... Help!! by gmages in Technology & Computers
Modified or moded phpBB sessions.php with SID removal MOD by Ricky in Technology & Computers
Most used search engine is here by Ricky in Technology & Computers « 1 2  All »
Anonymous
Guest
«Reply #1 on: January 23, 2004, 12:51:41 PM »
You have an error in the last script from bradleyk:

Code:
#-----[ FIND ]------------------------------------------ 
   global $SID;

if ( !empty($SID) && !preg_match('#sid=#', $url) )


.....


must be:

Code:
#-----[ FIND ]------------------------------------------ 
if ( !empty($SID) && !preg_match('#sid=#', $url) )


.....


Because we need the global $SID ! Winking

cu 2cows
Logged
Ricky
Yoindian Shayar
******

Rau: 8
Offline Offline

Gender: Male
Waqt Bitaya:
4 days, 3 hours and 56 minutes.

Posts: 2455
Member Since: Dec 2003


View Profile
«Reply #2 on: February 01, 2004, 07:57:30 AM »
Here is the MODIFIED sessions.php with the most effective mode..
http://www.yoindia.com/forums/viewtopic.php?p=189
Logged
kuco
Guest
«Reply #3 on: March 02, 2004, 03:19:05 PM »
Hi Ricky,

I have a problem with the sessions in my forums: all mods found on your page and phpbbhacks.com wont work, and i don't know why.
I'm sure i tried everything, but on checking with submit-express or spider simulater there are always PHPsid's, checking your site (and others) there are none.
Don't know what else to do  :?

Lg
Jürgen
Logged
Ricky
Yoindian Shayar
******

Rau: 8
Offline Offline

Gender: Male
Waqt Bitaya:
4 days, 3 hours and 56 minutes.

Posts: 2455
Member Since: Dec 2003


View Profile
«Reply #4 on: March 03, 2004, 05:47:21 AM »
I think you should first change your sessions.php with the one i have given here.. then tell me what happened...
Logged
kuco
Guest
«Reply #5 on: March 03, 2004, 06:24:47 PM »
Hello,

i tried this:
Code:
includes/sessions.php 

   if ( $userdata['session_user_id'] != ANONYMOUS ){
   $SID = 'sid=' . $session_id;
} else {
   $SID = '';
}


and this:
Code:
   global $SID; 

if ( !empty($SID) && !preg_match('#sid=#', $url) )


   global $SID, $HTTP_SERVER_VARS;

   if ( !empty($SID) && !preg_match('#sid=#', $url) && !strstr($HTTP_SERVER_VARS['HTTP_USER_AGENT'] ,'Googlebot') && !strstr($HTTP_SERVER_VARS['HTTP_USER_AGENT'] ,'slurp@inktomi.com'))

... in sessions.php, each alone or in combination. Then a google-hack with changes in common.php and sessions.php, the mod_rewrite-code is not supported by server-admin, the code from bradleyk on this page had for me no good descripton what changes in code (place) i've to tod.
Several mods on phpbb.com (here) didn't work, too. (pls edit if you won't this url on your site).
Maybe differences with the last visit mod or another modification?

Thx for help.
Logged
Ricky
Yoindian Shayar
******

Rau: 8
Offline Offline

Gender: Male
Waqt Bitaya:
4 days, 3 hours and 56 minutes.

Posts: 2455
Member Since: Dec 2003


View Profile
«Reply #6 on: March 03, 2004, 06:36:32 PM »
So your having problem.. I am only using SID removal mode..  #2 That is working great . as you can see all pages of my forum are indexed , same for http:///www.linuxsolved.com So I suggest you again to use this sessions.php http://www.yoindia.com/forums/viewtopic.php?p=189 instead of ur sessions.php I am not using anything else.. apart of this i have done some tweaking for on the forum but those are all true SEO thing and are not related to SID removal.. and tell me the results..
Logged
kuco
Guest
«Reply #7 on: March 04, 2004, 09:51:36 AM »
Hello,

just changed your sessions.php on zierfischforum.at an checked on http://tools.summitmedia.co.uk/spider
Still session-id's there  :?
Yep, your forums are clean of sids. Dont know what further to do, this problem contains in both of my forums (updated last year from 2.04 to 2.06, no original 2.06).
Logged
Ricky
Yoindian Shayar
******

Rau: 8
Offline Offline

Gender: Male
Waqt Bitaya:
4 days, 3 hours and 56 minutes.

Posts: 2455
Member Since: Dec 2003


View Profile
«Reply #8 on: March 04, 2004, 02:17:55 PM »
I was seeing your forum.. and found that you have got SID only on ur portal hack. but ur forum is fine..
Logged
kuco
Guest
«Reply #9 on: March 04, 2004, 02:54:37 PM »
Hmm... url in forum/portal.php:
http://www.zierfischforum.at/forum/viewtopic.php?t=302&sid=07b9019a15a676ad543531bb7b2c5d22&PHPSESSID=b940de5a5e31f9b798593e97d970b5cf
url on forum/index.php:
http://www.zierfischforum.at/forum/viewforum.php?f=16&sid=a9f70eee72ad58ea2f069d213198d055&PHPSESSID=c6d00e6394b34cf6aeb11c2402653671  
Aren't this sid's? Just inserted <link rel="forum1" href="viewforum.php?f=1" title="" /> for the forum-id's in the overall.header. Can i do this or might this cause problems in any way? Can the search engine read this link and will follow?
Logged
kuco
Guest
«Reply #10 on: March 05, 2004, 09:26:24 AM »
Good Morning,

Just installed a brand new 2.06 for testing on my domain with sid-removal hack. On summit media page checker there a link (as google will see, too?) looks as this:
http://www.zierfischforum.at/foren/viewtopic.php?p=2&PHPSESSID=20ed388d331fbda122c9077ba9c7cae2
Only want to know if this ist sid-clear and why the checker show this sid in the urls, and whats the difference between sessid as posted and this one in my last posting (./viewforum.php?t=302&sid=a970eee....&PHPSESSID=c6d00...).
Can you maybe explain, pls? Am no professionel in php  :oops:
(... and in english language).

Thx,
Jürgen
Logged
Anonymous
Guest
«Reply #11 on: March 07, 2004, 08:37:52 AM »
This seems to work for me, but we'll see in a few weeks when google visits again! sid's are definitely gone, and most pages are .html instead of .php . I couldn't get your session.php mod #1 to work, it caused a compile problem - you might like to try it again. Your premodded version worked well, but i'd rather have good modding instructions, as my forum is heavily modded and I don't know if i've broken anything using the premodded version.

Nice work compiling all this, it's much appreciated!
Logged
Ricky
Yoindian Shayar
******

Rau: 8
Offline Offline

Gender: Male
Waqt Bitaya:
4 days, 3 hours and 56 minutes.

Posts: 2455
Member Since: Dec 2003


View Profile
«Reply #12 on: March 07, 2004, 03:16:44 PM »
kuco!!
I was out for a while.. BTw.. I don't know why you are getting extra.. PHPSID thing.. here. http://www.zierfischforum.at/foren/viewtopic.php?p=2&PHPSESSID=20ed388d331fbda122c9077ba9c7cae2  

I think it is due to some mode..
Logged
cdr740
Guest
«Reply #13 on: March 17, 2004, 05:05:08 PM »
Hi,

I have added this part so far.

[code]#-----[ OPEN  ]------------------------------------------
includes/sessions.php


   global $SID;

if ( !empty($SID) && !preg_match('#sid=#', $url) )


   global $SID, $HTTP_SERVER_VARS;

   if ( !empty($SID) && !preg_match('sid=', $url) && !strstr($HTTP_SERVER_VARS['HTTP_USER_AGENT'] ,'Googlebot') && !strstr($HTTP_SERVER_VARS['HTTP_USER_AGENT'] ,'slurp@inktomi.com;'))






Please can you tell me what I need to add next so that my forum is indexed in search engines.

Thanks for your help
Dan
Logged
Ricky
Yoindian Shayar
******

Rau: 8
Offline Offline

Gender: Male
Waqt Bitaya:
4 days, 3 hours and 56 minutes.

Posts: 2455
Member Since: Dec 2003


View Profile
«Reply #14 on: March 17, 2004, 06:29:09 PM »
As I told that adding the mods don't gaurantee that your site will be indexed. it also require that u do SEO at the level of whole site also get good PR in the case of google.
Lastly I recommend using MOD #2 as shown on this page as I had ur mod on this forum and was not so impressive. so MOD #2 is suggested by me.. Usual Smile
Logged
Pages: [1] 2  All
Print
Jump to:  


Get Yoindia Updates in Email.

Enter your email address:

Ask any question to expert on eTI community..
Welcome, Guest. Please login or register.
Did you miss your activation email?
April 26, 2024, 03:25:43 PM

Login with username, password and session length
Recent Replies
[April 23, 2024, 09:54:09 AM]

by ASIF
[April 22, 2024, 01:50:33 PM]

[April 04, 2024, 04:49:28 PM]

[April 02, 2024, 12:27:12 PM]

by ASIF
[March 24, 2024, 04:34:54 AM]

by ASIF
[March 24, 2024, 04:30:44 AM]

by ASIF
[March 24, 2024, 04:26:39 AM]

by ASIF
[March 23, 2024, 08:50:46 AM]

[March 21, 2024, 07:59:38 PM]

[March 17, 2024, 02:01:29 PM]
Yoindia Shayariadab Copyright © MGCyber Group All Rights Reserved
Terms of Use| Privacy Policy Powered by PHP MySQL SMF© Simple Machines LLC
Page created in 0.103 seconds with 25 queries.
[x] Join now community of 8498 Real Poets and poetry admirer