Gossamer Forum
Home : Products : Links 2.0 : Discussions :

Time between two ratings ?

Quote Reply
Time between two ratings ?
Hello,

When someone rates a site what is the delay before he can vote again ? And where can I change this value ?

Thank you very much!

Christophe
Quote Reply
Re: Time between two ratings ? In reply to
You're welcome.

Regards,

------------------
Eliot Lee
Anthro TECH,L.L.C
http://www.anthrotech.com
Be sure to visit the Resource Center for FAQ's, Modifications and Extra Goodies!!
----------------------





Quote Reply
Re: Time between two ratings ? In reply to
Yes...there is a delay...Which is defaulted to something like 6 hours (based on number of seconds in UNIX time).

Look for the following code line in the rate.cgi file:

Code:
(($time - $old_time) > 86400) and (@IP = ());

I am using 172800, which delays users from rating the same link for 48 hours.

If you divide the number by 360, then you will get the number of hours to delay.

Regards,

------------------
Eliot Lee
Anthro TECH,L.L.C
http://www.anthrotech.com
Be sure to visit the Resource Center for FAQ's, Modifications and Extra Goodies!!
----------------------





Quote Reply
Re: Time between two ratings ? In reply to
Thanks Eliot !

Chris.