Right now the path you're specifying to main.php inside your .js file is based on this line:
Code:
var rssoutputscript="rssbox/main.php"
The other line is commented out ("//" preceeding it), so it's not used. That's fine, as based on the above, it assumes main.php is located here, which from what I can tell it is indeed:
Code:
http://donatello-restaurant.com/popcornandroses/rssbox/main.php
Now what is a problem is that when I try to go to that URL above, all I get is a blank page. This tells me Simpiepie isn't running properly on your server for some reason. When you call main.php with no parameters, you should get the output:
Code:
Error: Can't find requested RSS in list.
Did you remember to chmod 777 the cache directory used by the script? If that doesn't help, inside main.php, right after the opening <? tag, try adding the line in red to enable error debugging:
Code:
<?
error_reporting(E_ALL);
Now run main.php again in your browser, and see what error message gets output.
Bookmarks