Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Assume I have a login page (http://www.my-website.com/login/) and I want to block all users which access to login page base on their IP address except my own IP address. Could you help me to solve this issue?

Thanks in advance!

share|improve this question

1 Answer

up vote 3 down vote accepted

In your controller:

public function login() {
    if ($this->request->clientIp() != 'Your IP address here') {
        throw new ForbiddenException();
    }

    ...
}
share|improve this answer
Thank you! That's information I need. – Tan Viet Jan 30 at 1:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.