I have managed to vote at the URL you provided,
by using a direct link, (don't worry it does not let me vote twice), you can see that i voted for 5 stars
Anyway the problem is that the voting function is confused because your installation is in a subfolder called "feed" and you are using SEF URLs.
For some reason JURI::base()
doesnot seem to return the joomla subfolder which is then stored in a javascript variable
sfolder. I looked at the page source and it is initialized to '' meaning no subfolder.
Put this in your template just before </body>, and it should fix the problem
Code:
<script type="text/javascript" language="javascript">
if (typeof sfolder != 'undefined') {
sfolder = '/feed/';
}
</script>
Other options:
1. Try configuring your SEF component or
2. Try modifying .htaccess file changing line
Code:
RewriteBase /
to
RewriteBase /feed/
3. Patch the fcvote.js to set sfolder variable
Test the above to see if things voting works and if something breaks ... please post back feedback, if any of the above suggestions work