I recently pointed my Xenforo install server's DNS to Ezoic nameservers. Ezoic is an ad management service. The Ezoic servers then request the content from my site to serve to visitors.
Right away, this created an issue where members were unable to login. I found the member login solution below, here on the site.
This solution I used was to add this to my config.php file
$_SERVER["REMOTE_ADDR"] = $_SERVER["HTTP_X_FORWARDED_FOR"];
That solved the member login issue.
Now I've noticed that the guest count is always just 1. This has always been much higher. The guests aren't being counted like they should be.
Any ideas on how to get the guests counted again with this setup?
Thanks!
Eric
Right away, this created an issue where members were unable to login. I found the member login solution below, here on the site.
This solution I used was to add this to my config.php file
$_SERVER["REMOTE_ADDR"] = $_SERVER["HTTP_X_FORWARDED_FOR"];
That solved the member login issue.
Now I've noticed that the guest count is always just 1. This has always been much higher. The guests aren't being counted like they should be.
Any ideas on how to get the guests counted again with this setup?
Thanks!
Eric