Results 1 to 15 of 15

How to stop someone taking your RSS Feed?

This is a discussion on How to stop someone taking your RSS Feed? within the Off-Topic & Chit Chat forums, part of the Focus on Members category; I got a forum that is copying everything that is posted on my forum. Before also i had problems with ...

  1. #1
    Senior Member UnderEstimated's Avatar
    Real Name
    Kaleem
    Join Date
    May 2006
    Location
    NJ
    Posts
    267
    Liked
    10 times

    How to stop someone taking your RSS Feed?

    I got a forum that is copying everything that is posted on my forum. Before also i had problems with that now a Site copying the whole forum.

    How to stop this?

  2. #2
    nfn
    nfn is offline
    Senior Member
    Real Name
    Nuno
    Join Date
    Feb 2008
    Location
    Portugal
    Posts
    276
    Liked
    1 times
    You can use htaccess:

    Code:
    order allow,deny
    deny from xxx.xxx.xxx.xxx
    allow from all
    where xxx.xxx.xxx.xxx is the ip of the crawler.

  3. #3
    vBSEO Staff Ace Shattock's Avatar
    Real Name
    Ace Shattock
    Join Date
    Jul 2005
    Location
    Auckland, New Zealand, New Zealand
    Posts
    4,012
    Liked
    13 times
    Isn't that (providing the ability to post your site's content) the entire point of RSS feeds?

  4. #4
    Senior Member woostar's Avatar
    Real Name
    woostar
    Join Date
    Apr 2007
    Posts
    788
    Liked
    5 times
    {edit} scrub that, apparently doesnt work either.
    Last edited by woostar; 01-29-2009 at 09:05 AM.
    2011 Average: 1 post every 5 seconds... 24/7

  5. #5
    Senior Member UnderEstimated's Avatar
    Real Name
    Kaleem
    Join Date
    May 2006
    Location
    NJ
    Posts
    267
    Liked
    10 times
    Quote Originally Posted by Ace Shattock View Post
    Isn't that (providing the ability to post your site's content) the entire point of RSS feeds?

    So you mean to say I make another website with the name of anything and put eveyrthing from your site on RSS FEED auto posting on my site and you will be happy cus RSS FEED's point is posting your content ?

  6. #6
    Senior Member
    Real Name
    Future
    Join Date
    Mar 2006
    Posts
    579
    Liked
    1 times
    Blog Entries
    1
    This is the problem with stock vbulletin code i should say.
    Vbulletin should give us rock solid options on how to control the number of words/characters displayed in rss feeds.

    What about sites like boardreader or boardtracker, they use our content to make money.
    They pull content mainly via rss feeds and display this content on there adsense rich pages !!!!

    We require some functionality which will restrict only title of thread going out via rss feeds and not the whole thread.
    | F | U | T | U | R | E |

  7. #7
    Senior Member Shadab's Avatar
    Real Name
    Shadab
    Join Date
    Oct 2007
    Location
    Bhopal
    Posts
    821
    Liked
    0 times
    Blog Entries
    12
    We require some functionality which will restrict only title of thread going out via rss feeds and not the whole thread.
    XML and RSS1 feeds give out only the title, date and other minimalist information.

    geekpoint.net/external.php?type=XML
    geekpoint.net/external.php?type=RSS

    RSS2 gives a lot more than that.

    geekpoint.net/external.php?type=RSS2

  8. #8
    Senior Member Lee G's Avatar
    Real Name
    Lee
    Join Date
    Sep 2006
    Location
    Costa Blanca
    Posts
    690
    Liked
    40 times
    Blog Entries
    4
    You can limit the rss feed to just a certain amount of characters, rather than the full post.

    Create a new plug in called "rss feed limiter"

    Product Vbulletin

    Hook location external_query

    Plugin PHP Code

    PHP Code:
    unset($vbulletin->GPC['fulldesc']);
    $vbulletin->options['threadpreview'] = 200;
    $hook_query_fields .= ",LEFT(post.pagetext,400) AS message"
    I searched high and low for the code on vbulletin once and from memory "200" is the amount of characters that get displayed.

    The above works a treat

  9. #9
    Senior Member
    Real Name
    Future
    Join Date
    Mar 2006
    Posts
    579
    Liked
    1 times
    Blog Entries
    1
    Lee G your code will not work, we are using vbulletin 3.6.5

    Product = vbulletin
    Hook location = external_query
    execution order = 5
    plugin code =
    unset($vbulletin->GPC['fulldesc']);
    $vbulletin->options['threadpreview'] = 200;
    $hook_query_fields .= ",LEFT(post.pagetext,400) AS message";
    plugin active = yes

    But still wont work.

    The only problem with RSS2 is, it pulls the entire post and we just cannot disable only rss2 :/
    | F | U | T | U | R | E |

  10. #10
    Senior Member
    Real Name
    Dhillon
    Join Date
    Apr 2006
    Posts
    341
    Liked
    1 times
    It worked for me after disabling and re-enabling feeds, Thank you Lee

  11. #11
    Senior Member
    Real Name
    Future
    Join Date
    Mar 2006
    Posts
    579
    Liked
    1 times
    Blog Entries
    1
    Quote Originally Posted by Notorious View Post
    It worked for me after disabling and re-enabling feeds, Thank you Lee
    well still wont work after disabling and re-enabling feeds :(
    this small plugin will be very handy, if someone can help on how to make it use.

    Morever, i guess this modification is only restricting the thread view text to 200 or 400 chars/alphabets not the actual rss content ?
    We want to restrict the actual data inside posts to 200 or 400 chars only.
    | F | U | T | U | R | E |

  12. #12
    Senior Member Lee G's Avatar
    Real Name
    Lee
    Join Date
    Sep 2006
    Location
    Costa Blanca
    Posts
    690
    Liked
    40 times
    Blog Entries
    4
    If you cant get around the above, what about banning the sites ip from your server in the htaccess file

    You can get their ip via Reverse IP DNS Tool- Free Reverse IP Lookup

    Then put a ban on their ip.

  13. #13
    Member
    Real Name
    Aaron Wilson
    Join Date
    Jun 2006
    Posts
    35
    Liked
    0 times
    My first instinct would be to use feedburner. Lately feedburner has been in the press and I think it may have some issues at the moment. I have yet to see it mess up on me though....
    Someone else mentioned it in this thread:
    Trimmed RSS Feeds Option

    And vbulletin.org looks to have a tutorial
    Integrate Feedburner RSS tools - replace the standard RSS feeds - vBulletin.org Forum

    I only briefly looked at it but it looks simple enough with some minor template changes.

    Anyways you'd use feedburner to shorten your feeds and their bandwidth to promote them

  14. #14
    Junior Member
    Real Name
    Kang
    Join Date
    Nov 2007
    Posts
    2
    Liked
    0 times
    even after banning the IP of the blog which is copying my feeds are not stopping and they are gaining higher google rank.

  15. #15
    Member Jibber's Avatar
    Real Name
    Jibber
    Join Date
    Aug 2006
    Posts
    46
    Liked
    5 times
    Well that has to suck.
    Founder/Administrator | Chat Forum | Also the Malware Wiki.

Similar Threads

  1. RSS Taking Visitors?
    By theothersully in forum Ad Networks
    Replies: 2
    Last Post: 01-01-2009, 12:24 PM
  2. Google taking their time
    By saltedm8 in forum Analysis: Traffic & SERPS
    Replies: 3
    Last Post: 07-29-2008, 01:27 AM
  3. Help Needed Site not taking off
    By jellybabys in forum Analysis: Traffic & SERPS
    Replies: 5
    Last Post: 04-23-2008, 01:02 PM
  4. Taking forever
    By webmonkeydp in forum General Discussion
    Replies: 1
    Last Post: 12-20-2007, 07:12 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •