Just by looking at http://www.voicesfrombeyond.com/rssbox/demo.htm, your paths are still incorrect. Inside your source, you're referencing the external files, such as the .js file, as follows:
Code:
<script type="text/javascript" src="rssbox/rssdisplaybox.js">
//credit notice here...
</script>
This tells the browser that the .js file is located in the directory:
rssbox/rssdisplaybox.js
relative to the directory the webpage is located in. Adding the two up, you're telling the browser the .js file is located in:
http://www.voicesfrombeyond.com/rssb...sdisplaybox.js
Clearly not correct.
Is there any reason why you're moving and renaming files directories? That's the source of your problem. All you should be doing at this point to get the demo working is this:
1) Create an arbitrary directory, say "test" in your root directory.
2) Upload all the files of the zip into this directory as is and mantaining the original structure of the directories.
3) Chmod the cache directory and any other details as mentioned in the instructions
4) Run demo.htm to see if it works.
Bookmarks