Ain't there a rule called no private help on here? lol.
<?php
if($_REQUEST['novote'] == 1) {
//Do nothing
} else {
header("location: http://findretros.com/rankings/vote/YOURPAGEUSERNAME");
} ?>
what about wwwroot web.config??Make an account for example
user:12345
Manage Pages -> Create page
Page username could be your hotel name for example
If rev: On your app/tpl/skins/{skin}/index.php
at the top add:
PHP:<?php if($_REQUEST['novote'] == 1) { //Do nothing } else { header("location: http://findretros.com/rankings/vote/YOURPAGEUSERNAME"); } ?>
And on your page settings -> voting
set the return url to
You must be registered for see links
In your .htaccess file add:
RewriteRule ^index/novote/(.*)/?$ index.php?url=index&novote=1 [L,QSA]
Hope that helped
Thanks babe.Code:<rule name="Imported Rule 8" stopProcessing="true"> <match url="^index/novote/" ignoreCase="false" /> <action type="Rewrite" url="index.php?url=index&novote=1" appendQueryString="true" /> </rule>