2008年10月15日 星期三

How to limit users to one vote per IP address

http://railsauthority.com/tutorial/how-to-limit-users-to-one-vote-per-ip-address
http://railsauthority.com/tutorial/how-to-obtain-the-ip-address-of-the-current-user
http://ithelp.ithome.com.tw/question/10011184

  1. # 以 regular expression 的設法來指定可執行的 IP 或範圍
  2. unless request.env['HTTP_X_REAL_IP'] =~ /^192\.168\.1\.(101|204|77|9)$|^168\.95\.1\./
  3. render :text => '不准看!'
  4. end

沒有留言: