I put all the files on the root level of the server, hopefully allowing no problems with the path. But now I get an error message for each feed:
Error fetching remote RSS feed!
Sorry: It's not possible to reach RSS file
I don't know why that would be. Any suggestions?
Thanks
Here are the scripts and paths I have set up:
rssticker.js
Code:
// -------------------------------------------------------------------
// Advanced RSS Ticker (Ajax invocation) core file
// Author: Dynamic Drive (http://www.dynamicdrive.com)
// -------------------------------------------------------------------
//Relative URL syntax:
var lastrssbridgeurl="http://www.thecassidyfeed.com/bridge.php"
////////////No need to edit beyond here//////////////
bridge.php
Code:
// include lastRSS
include "lastRSS.php"; //path to lastRSS.php on your server from this script ("bridge.php")
// Create lastRSS object
$rss = new lastRSS;
$rss->cache_dir = 'cache'; //path to cache directory on your server from this script. Chmod 777!
$rss->date_format = 'M d, Y g:i:s A'; //date format of RSS item. See PHP date() function for possible input.
Bookmarks