Results 1 to 3 of 3

Thread: adding RSS feeds to - Pausing RSS scroller

  1. #1
    Join Date
    Apr 2006
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default adding RSS feeds to - Pausing RSS scroller

    Ive just sucessfully installed the Pausing RSS scroller onto my site but I'm not to sure how to add RSS feeds to the page?

    Any help would be great.

    here is the scrip location http://www.dynamicdrive.com/dynamici...ller/index.htm
    Last edited by vannquish; 04-25-2006 at 09:30 AM.

  2. #2
    Join Date
    Apr 2006
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    I have found in the Scrollbridge.php file the place where you define your RSS feeds.

    PHP Code:
    // Define your list of RSS URLs- "RSS_id"=> "URL to RSS feed"
    $rsslist=array(
    "cnn" => "http://rss.cnn.com/rss/cnn_topstories.rss",
    "bbc" => "http://newsrss.bbc.co.uk/rss/newsonline_uk_edition/front_page/rss.xml",
    "news.com" => "http://news.com.com/2547-1_3-0-5.xml",
    "dynamicdrive" => "http://www.dynamicdrive.com/export.php?type=new",
    "yahoo" => "http://rss.news.yahoo.com/rss/internet",
    "microsoft" => "http://rss.news.yahoo.com/rss/microsoft",
    ); 
    As you can see I have added a yahoo and microsft feed. problem is, they dont show up on my page.

    the only RSS feeds that appear are the CNN and the dynamicdrive, and when I take them off to replace with my own the pausing rss scroller doesnt work????

  3. #3
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    The very last feed should not contain a comma at the end, so:

    Code:
    "yahoo" => "http://rss.news.yahoo.com/rss/internet", 
    "microsoft" => "http://rss.news.yahoo.com/rss/microsoft"
    );
    This is just a PHP syntax error.

Bookmarks

Posting Permissions

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