Quote:
Originally Posted by mvandemar Simon,
In button.php, modify the following code: Code: function pliggit() {
var check = window.parent.submit_url;
if(!check) {
var url1 = document.URL;
} else {
var url1 = window.parent.submit_url;
}
var url2 = '<?php echo $server; ?>/evb/url.php?url='+url1;
document.write('<iframe name="pliggit" width="54" height="71" scrolling="no" frameborder="0" src="'+url2+'"></iframe>');
}
to look like this: Code: function pliggit() {
var check = window.parent.submit_url;
if(!check) {
var url1 = document.URL;
} else {
var url1 = window.parent.submit_url;
}
url1 = url1.replace(http:\/\//i,'');
var url2 = '<?php echo $server; ?>/evb/url.php?url='+url1;
document.write('<iframe name="pliggit" width="54" height="71" scrolling="no" frameborder="0" src="'+url2+'"></iframe>');
}
-Michael |
Michael,
I tried making this change and noticed that now the
EVB on the
blog's test page no longer has an error... it's blank. I'm not sure if I was supposed to (I kept the original), but thought I'd try and see what happens.
After this change, I also tested what happens when I try voting without logging in... no change, 406 error still.
I'll keep trying to let you all know what happens.