Go Back   Pligg CMS Forum > Other > Suggestions

Reply
 
LinkBack Thread Tools Display Modes
  #11 (permalink)  
Old 06-21-2007, 06:46 PM
Constant Pligger
 
Join Date: Mar 2006
Posts: 575
Thanks: 14
Thanked 126 Times in 61 Posts
While we're on the subject, I just built my first official wordpress plugin, which I've named the "Dilution Factor". It uses the classic noindex,follow meta tag on certain pages, but the twist is that it places the tag on all category / tag pages that have fewer posts than a set minimum:

Check out the full explanation, plus download, here.


Unashamedly taken from what wanderingmind said earlier in the thread. As we've already said, it *may* make no difference, but then again it just might! I might later also add unique meta description tags per page (although its already been done plenty of times for wordpress) - and then maybe think about porting it over to a pligg module.
__________________

Reply With Quote
  #12 (permalink)  
Old 06-21-2007, 10:48 PM
Constant Pligger
 
Join Date: Jun 2006
Posts: 109
Thanks: 75
Thanked 1 Time in 1 Post
how many pages will be indexed when using Simon's recommendation?

how much to gain with this?...please share your results.

thanks
noyP
Reply With Quote
  #13 (permalink)  
Old 06-21-2007, 10:58 PM
New Pligger
 
Join Date: Jun 2007
Location: AZ
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Simon View Post
I just looked at one of my pligg sites today, loads of supplemental results stopping the stories from ever having a chance of indexing well. Categories and tagging = duplicate story content.

In index.php, added in the following code, near to where pagename is defined:

Code:
$the_page = get_current_page();
if($the_page == 1) {
    $main_smarty->assign('indexit', 1);
} else {
    $main_smarty->assign('indexit', 0);
}
Then added into meta.tpl:

Code:
{if $indexit eq "1" OR $pagename eq "story"}
<meta name="robots" content="index,follow" />
{else}
<meta name="robots" content="noindex,follow" />
{/if}
This will only index the home page and story pages, since everything else is duplicate content to the search engines. Story links on non-indexed pages will still be followed though. Some people may say this is too much, but duplicate content will really hurt your rankings, so removing it completely (other than the home page content) should help.

You can always change the code to allow more pages to be indexed, such as user profile pages.

Great idea! Just curious then, what does your sitemap.xml file look like then?

As an aside, is there an tutorial or post on how to create another page on the pligg site installation. I can't figure out how to get one with the template and all. (Sorry, I'm new. )

~cml
Reply With Quote
  #14 (permalink)  
Old 06-22-2007, 12:31 AM
Constant Pligger
 
Join Date: Mar 2006
Posts: 575
Thanks: 14
Thanked 126 Times in 61 Posts
I don't use a sitemap for pligg yet - its actually been indexed pretty quickly, so I never bothered creating one.

Page Creation: Simple Static Page Support...

@noyp - what I set out in the first post should cover indexing of the home page, individual story pages, and the first page of all categories (since they run through index.php too). Whether you want to add other pages is up to you.

What we really need is a way to produce unique meta descriptions for category and tag pages, then I could combine it for what I've done in my wordpress plugin, and stop indexing of pages that are potentially "too similar", based on the number of articles on a page.
__________________


Last edited by Simon; 06-22-2007 at 12:34 AM..
Reply With Quote
  #15 (permalink)  
Old 06-26-2007, 06:09 AM
Constant Pligger
 
Join Date: Jun 2006
Posts: 109
Thanks: 75
Thanked 1 Time in 1 Post
Simon

thanks for the reply

another question, how can i have "search result pages" indexed from my site?
Since i sometimes use "keyword results" as "categories", i'd like google to index these.

A better question would be how to add pages for indexing using your code

thanks

noyP
Reply With Quote
  #16 (permalink)  
Old 06-26-2007, 09:21 AM
Constant Pligger
 
Join Date: Mar 2006
Posts: 575
Thanks: 14
Thanked 126 Times in 61 Posts
For search pages, you'd want to use $pagename eq "search" I think (in the if condition). You may also want to put in the "page one only" code into search.php as well as index.php, depending on your preferences.
__________________

Reply With Quote
  #17 (permalink)  
Old 06-26-2007, 03:24 PM
Constant Pligger
 
Join Date: Mar 2006
Posts: 575
Thanks: 14
Thanked 126 Times in 61 Posts
Just wanted to bring people's attention to a few posts, made by Aaron Wall, and ShoeMoney. If Aaron Wall says something, it's usually best to follow his advice!

http://www.seobook.com/archives/002021.shtml
http://www.shoemoney.com/2007/02/01/...ve-new-months/
http://www.shoemoney.com/robots.txt

In summary, Aaron talks about not spreading your link authority across too many pages. Less is more, is the feeling I get from his post. He also gave some advice to ShoeMoney, which resulted in a 1400% increase in traffic to some pages. It seems to have been a combination of not allowing indexing of "fluff" pages, combined with the acquiring of a few choice links to get pages out of the supplementals.

If you look at ShoeMoney's robots file, you will see that category pages have been dis-allowed. I found that interesting. Anyone got any comments or analysis on what Aaron / SM have said in the above posts?
__________________

Reply With Quote
  #18 (permalink)  
Old 06-26-2007, 05:48 PM
P1mpPanther's Avatar
Constant Pligger
 
Join Date: Feb 2007
Posts: 292
Thanks: 47
Thanked 10 Times in 9 Posts
thanks for continuing this discussion simon and sharing these great resources...
__________________
RunStream :: RSS feed creator | RSS Marketing Platform | TagBlast!

...and a Pligg site on deck!
Reply With Quote
  #19 (permalink)  
Old 06-26-2007, 07:28 PM
Constant Pligger
 
Join Date: Feb 2007
Posts: 236
Thanks: 20
Thanked 29 Times in 15 Posts
this part is really insightful:

Quote:
Many people believe that having more pages is always better, but ever since Google got more aggressive with duplicate content filters
I used to own a beginner website which was a photo gallery and used many includes such as the header, footer, sidebar, similar to the yget layout.

I noticed that many of my pages were recognized by google as "the same" although they had different titles, meta information, and main contents. And, as you know, many of these pages resulted in ending up in Google's supplementary results.

So, after reading this, I think I'm just going to allow spiders to crawl the index, the upcoming stories and any stories that can be accessed via these pages.
Reply With Quote
  #20 (permalink)  
Old 07-18-2007, 06:23 PM
Pligg Donor
 
Join Date: Mar 2007
Posts: 85
Thanks: 16
Thanked 16 Times in 10 Posts
Quote:
Originally Posted by Simon View Post
You can insert unique meta descriptions for story pages, but not for tag and category pages I believe. That's how I have it set up at any rate, along with a unique description for the home page.

I have been reading around the whole duplicate content issue quite a lot lately, and to be honest there is very little consensus on what actually constitutes duplicate content. Some will class it as you have above, some will say that if you have the same story content on multiple pages (regardless of what other content is on the page) then that can be a trigger.

Then you have the view that it is not worth the effort for a search engine to check for duplicate content in the first place. Billions of pages - that's a lot of checking to be done. Then you've got the fact that articles are re-published all over the internet, should the original authors be specifically penalised for writing successful articles?

The only conclusion I can easily draw is that it is an unknown - although it probably makes little difference in the long run. Building links to your inner pages will do far more good for a webmaster.
Simon - how did you get unique metas on your home page? I've gotten them on other pages I've added to the system, as well as some already there, but I've not been able to sort out getting the home page unique. Thanks for any tips!
Reply With Quote
Reply

Thread Tools
Display Modes
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Similar Threads
Thread Thread Starter Forum Replies Last Post
Pagination Help Please blaze General Help 5 07-09-2008 07:30 AM
Is there a way of submitting content Tessa General Help 2 02-23-2008 08:38 AM
Filter Your Published and Unpublished Content For Deletion blaze General Help 2 12-05-2007 09:49 PM
How show a short content in homepage,and show the full content in story page? iweb General Help 5 05-07-2006 08:22 PM


Search Engine Friendly URLs by vBSEO 3.2.0