Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

same ip for all requests #73

Open
mnfi3 opened this issue Jan 17, 2024 · 1 comment
Open

same ip for all requests #73

mnfi3 opened this issue Jan 17, 2024 · 1 comment

Comments

@mnfi3
Copy link

mnfi3 commented Jan 17, 2024

In some networks the logged ips are same for all users and this cause block all requests for all users.please use below code for getting user ip in your Traits/Helper.php file.

public function ip()
    {
       $client = @$_SERVER['HTTP_CLIENT_IP'];
        $forward = @$_SERVER['HTTP_X_FORWARDED_FOR'];
        $remote = @$_SERVER['REMOTE_ADDR'];
        if (filter_var($client, FILTER_VALIDATE_IP)) {
            $ip = $client;
        } elseif (filter_var($forward, FILTER_VALIDATE_IP)) {
            $ip = $forward;
        } else {
            $ip = $remote;
        }
        return $ip ?: '0.0.0.0';
    }
    
@MCKLtech
Copy link

+1

I've noticed on some projects, including those that use Cloudflare, that we get the edge IP, not the user IP, and this has caused blocks to other users.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants