I have been editting and editting the style and the header and the pligg.tpl.
Then when I try to click on vote, i realize that i can't make the function work!!! what happen?
when do I check the vote function and where is the code for functions?


I have the same problem too!!
Do you also get the same JavaScript error:
-------------------------------------------------This is from firebug---------------------------------------------
target2 has no properties
changemnmvalues(0, 10, true)xmlhttp.php (line 190)
onreadystatechange()()xmlhttp.php (line 95)
[Break on this error] if (value > 0) { target2.innerHTML = "<span>Voted</span> "; }
-----------------------------------------------This is from firebug------------------------------------------------
I am using Firefox 2.0 and my pligg (1.0.0) install is on a Linux server, PHP 5, MySQL 5.
Most likely it was caused by editing pligg.tpl or link_summary.tpl. I suggest comparing your template with the original Wistie one, there are probably a couple elements around the vote button that need to remain such as a span, list element (<li>), or div. Most likely it's a span that you removed.
The Facebook Module for Pligg CMS!
Register, Login, and Submit Stories with Facebook. An absolute MUST HAVE for all Pligg sites!
Sorry to have hi-jacked the OPs thread but I am hoping he has the same problems as me.
To be honest, I did not change anything on any of the .tpl files. If you view my sites source. You will see there are no missing tags etc. At least I think there isn't.
Please view this site: http://www.episodeshare.com
I can tell from loading your site you have installed the mootools module. Go to the module management page in your admin and disable it.
Yes you are correct. I have now disabled it BUT i still get the same error.I have also removed a few other modules in the hope they could be the problem but that still didn't work.
I have just tested it on IE7 and the problem is the same.
What else can I try?? Any more info I can give to help?
Thank you for your help.
Hang on a minute. There is no target2 element even on the page which JavaScript is trying to referrence!
So the above will fail!Code:if (value > 0) { target2.innerHTML = "<span>Voted</span> "; }
Am I reading this right?
---------Yes I am! Just consulted a manual:
Code:"[elementname] has no properties" is javascript error speak for "the element you tried to reference doesn't exist or is nil"