Gossamer Forum
Home : Products : Links 2.0 : Customization :

Interesting for all - depends rating system

Quote Reply
Interesting for all - depends rating system
Hi,
some webmaster are very clever ...
they intigrate the rating box ( rate my homesite ) and
put the value thing in the code.

If you rate with 1 or 5 or 10 ... the rating result is always 10 !!!
I bold it out in the following html code.

This canīt be the sense of the rating system !

===========================================
CAN SOMEONE HELP ME OUT TO PREVEND THIS IN FUTURE ??????
How can i stop this ??????
===========================================

Greetings,
Fantanis



In Reply To:
<FORM action=http://www.clubgolfer.de/cgi-bin/links/ratehome.cgi method=post>
<INPUT name=ID type=hidden value=593>
<DIV align=center>
<P><SELECT name=R size=1>

<OPTION value=10>1</OPTION>
<OPTION value=10>2</OPTION>
<OPTION value=10>3</OPTION>
<OPTION value=10>4</OPTION>
<OPTION value=10>5</OPTION>
<OPTION value=10>6</OPTION>
<OPTION value=10>7</OPTION>
<OPTION value=10>8</OPTION>
<OPTION value=10>9</OPTION>
<OPTION selected>10</OPTION>

</SELECT>
<INPUT style="FONT-SIZE: smaller" type=submit value=Bewerten></P></DIV></FORM>
Quote Reply
Re: Interesting for all - depends rating system In reply to
You could ban this person's rating by adding something like this to your ratehome.cgi in the sub rate_it

Code:
if ($id eq "593") {
&site_html_rate_failure ("Ratings have been disabled for this web site.");
return;
}
or if you didn't won't to ban them you could have the rating equal a value that you set instead of the &site_html_rate_failure.

Jimmy Crow
http://www.homewithgod.com/
Quote Reply
Re: Interesting for all - depends rating system In reply to
Huh,
i donīt want to ban nobody ... hmm

ANY OTHER IDEAS ? Its a big problem.

Greetings

Quote Reply
Re: Interesting for all - depends rating system In reply to
Other people have had this problem and there is really no way you can keep people from changing the codes that you give him that I know of. The only alternative that I can think of short of banning that ID would be to have that id always have a rating of 5 or whatever you wanted to give him.

You could say if $ID eq 593 $rating eq 5 (I believe this could be replaced in the codes above with a little changes)

If you set the rating to equal a certain number regardless of the real rating maybe you would discourage him from trying to cheat or remove the box.

Jimmy Crow
http://www.homewithgod.com/
Quote Reply
Re: Interesting for all - depends rating system In reply to
Ok thanks !

i am thinking over it !

Cheers,
Fantanis

Quote Reply
Re: Interesting for all - depends rating system In reply to
Why would you even bother wasting your time with one guy/girl who feels it necessary to cheat? Why don't simply send an email asking them to not cheat....or better yet, just remove the link?? I don't think it would be that difficult replacing them. I personally don't like cheaters.........

Quote Reply
Re: Interesting for all - depends rating system In reply to
Yeah, no kidding. Ban him, or do what cgi-resources.com does. They put them up on display as De-listed due to Rate-It! abuse:
http://www.cgi-resources.com/rate/rated.html

That'll teach everyone that you won't tolerate cheaters.

Quote Reply
Re: Interesting for all - depends rating system In reply to
In your email responder, reduce the External "Rate" link to simply:

<a href="<%db_cgi_url%>/rate.cgi?ID=<%ID%>" target="_new">Rate Our Site!</a>

Or, some variation of that.

This way, the visitor can only apply the rating through your link site. Smile



Quote Reply
Re: Interesting for all - depends rating system In reply to
i wouldn't think twice..delete ID link !

gregor