Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1. #1
    New Pligger msdi's Avatar
    Joined
    Oct 2006
    Posts
    7
    Thanks
    Received:0
    Given: 0

    Replacing Pligg RSS Feeds with Feedburner ones

    Hello,

    I'm after replacing the the published/unpublished/all feeds that Pligg generates with some feedburner'd ones so I can track them. Any idea how I can do this?

  2. #2
    Pligg Donor beatniak's Avatar
    Joined
    Apr 2006
    Posts
    197
    Thanks
    Received:0
    Given: 0
    The best method for this is:

    1) open /Pliggfolder/templates/<yourtemplate>/sidebar_modules/rss.tpl
    Change the RSS-links to this:
    Code:
    <li><a href="{$my_pligg_base}/rss/popular" target="_blank">{#PLIGG_Visual_RSS_Published#}</a></li>
    <li><a href="{$my_pligg_base}/rss/queued" target="_blank">{#PLIGG_Visual_RSS_Queued#}</a></li>
    <li><a href="{$my_pligg_base}/rss/all" target="_blank">{#PLIGG_Visual_RSS_All#}</a></li>
    2) open /Pliggfolder/templates/<yourtemplate>/pligg.tpl
    Change the RSS link:
    Code:
    <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="http://{$server_name}{$my_pligg_base}/rss/popular"/>
    3) add this to your .htaccess file
    Code:
    Redirect /rss/popular http://feeds.feedburner.com/<yourfeed>-popular
    Redirect /rss/queued http://feeds.feedburner.com/<yourfeed>-queued
    Redirect /rss/all http://feeds.feedburner.com/<yourfeed>-all
    NOTE: I did the redirect with the htaccess, so you can easily change the feed URL to another service if you want and your feed-users can keep the same feed URL.

  3. #3
    New Pligger euspirit's Avatar
    Joined
    Mar 2007
    Posts
    1
    Thanks
    Received:0
    Given: 0
    Thanks for the method but I have still a problem:

    The link to the small RSS icon in the top address bar of the browser is broken.
    I have tried to put the feedburner link directly but the rss is not updated.

    Any idea which link can I write in pligg.tpl ?

  4. #4
    Constant Pligger Peter's Avatar
    Joined
    Oct 2006
    Posts
    124
    Thanks
    Received:0
    Given: 0
    Hi beatniak, does this replace all the category feeds as well ?

    Or its needed to change them all manually each time a category is created ?

    I have pligg 9.8 with yget, just to know the same files are the ones to edit.

    Thanks.

  5. #5
    Constant Pligger Peter's Avatar
    Joined
    Oct 2006
    Posts
    124
    Thanks
    Received:0
    Given: 0
    Hi, how can I change the rss feed in pligg to use my feedburner address.

    I am using 9.8.2.

    Thanks.

  6. #6
    Constant Pligger Peter's Avatar
    Joined
    Oct 2006
    Posts
    124
    Thanks
    Received:0
    Given: 0
    Quote Originally Posted by Peter View Post
    Hi, how can I change the rss feed in pligg to use my feedburner address.

    I am using 9.8.2.

    Thanks.
    ..........

  7. #7
    Casual Pligger godrox's Avatar
    Joined
    Oct 2007
    Posts
    34
    Thanks
    Received:0
    Given: 0
    Does anyone know how to do this for all the category feeds?

  8. #8
    Casual Pligger godrox's Avatar
    Joined
    Oct 2007
    Posts
    34
    Thanks
    Received:0
    Given: 0

    Replacing category RSS feeds with Feedburner

    Here's what I did to replace the category feeds with Feedburner feeds. It works okay, except that I still have "?category=1" (or whatever the appropriate category number is) after each Feedburner RSS URL, but oh well. It doesn't seem to affect it much and I don't know enough to know how to get rid of it.

    First I burned all my category feeds in Feedburner. Then I opened .htaccess and at the end I added this:

    Code:
    RewriteCond %{HTTP_USER_AGENT} !FeedBurner
    RewriteRule category/1$ http://feeds.feedburner.com/PlugRug-YouthMinistry [R,L]
    RewriteRule category/2$ http://feeds.feedburner.com/PlugRug-ChildrensMinistry [R,L]
    RewriteRule category/3$ http://feeds.feedburner.com/PlugRug-WorshipArts [R,L]
    etc....

    Basically, rewriting anything that ends with "category/1" to the Feedburner feed instead. Since pligg's category feed is the only thing that ends with "category/1" "category/2" etc, there's no conflict that I know of.

    My site is still a work in progress, but you can see how it works here: PlugRug.com / Published Stories

  9. #9
    Casual Pligger swese44's Avatar
    Joined
    Apr 2008
    Posts
    39
    Thanks
    Received:0
    Given: 0
    I'm doing something similar:

    Code:
    ##### RSS Routing to FeedBurner
    redirect 301 /rss/queued http://feeds.feedburner.com/JoomlaVote/Upcoming-Stories
    redirect 301 /rss/category/2 http://feeds.feedburner.com/JoomlaVote/Joomla-Community-News
    redirect 301 /rss/category/3 http://feeds.feedburner.com/JoomlaVote/Articles-Tutorials
    redirect 301 /rss/category/6 http://feeds.feedburner.com/JoomlaVote/Modules
    redirect 301 /rss/category/7 http://feeds.feedburner.com/JoomlaVote/Plugins
    redirect 301 /rss/category/8 http://feeds.feedburner.com/JoomlaVote/Components
    redirect 301 /rss/category/5 http://feeds.feedburner.com/JoomlaVote/Templates
    redirect 301 /rss/category/10 http://feeds.feedburner.com/JoomlaVote/Search-Engine-Optimization
    redirect 301 /rss/category/12 http://feeds.feedburner.com/JoomlaVote/Monetizing-Advertising
    redirect 301 /rss/category/13 http://feeds.feedburner.com/JoomlaVote/Community-Events
    redirect 301 /rss/category/9 http://feeds.feedburner.com/JoomlaVote/Sites-Powered-By-Joomla
    redirect 301 /rss http://feeds.feedburner.com/JoomlaVote
    I also have the problem of the category numbers getting added to the FeedBurner URL:

    feeds.feedburner.com/JoomlaVote/Search-Engine-Optimization?category=10
    instead of
    feeds.feedburner.com/JoomlaVote/Search-Engine-Optimization


    Does anybody out there have a better way to incorporate FeedBurner?

  10. #10
    Casual Pligger na3s's Avatar
    Joined
    Apr 2008
    Posts
    48
    Thanks
    Received:0
    Given: 0

    yeh

    Switch to Drigg before you get too knee deep in a messy coded Pligg. I wish I woulda done that...

Page 1 of 2 12 LastLast

Similar Threads

  1. Removing the pligg name and replacing it with my site name
    By DianeCorriette in forum Questions & Comments
    Replies: 1
    Last Post: 08-05-2008, 03:52 AM
  2. [SOLVED] Need Help with directing feeds to Feedburner
    By blaze in forum Questions & Comments
    Replies: 1
    Last Post: 10-03-2007, 10:34 PM
  3. Replacing default Pligg search with Google Site search
    By aaronpais in forum Questions & Comments
    Replies: 8
    Last Post: 08-20-2007, 11:27 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Pligg Modules and Pligg Templates from Pligg Pro Web Hosting Services by Midphase Dreamhost Web Hosting Donate to Pligg