Reply to thread

If you are using cloudflare check the CMS is restoring the real IP instead of giving all visitors the CloudFlare IP


use something like this in one of the main core files of the cms



if (isset($_SERVER["HTTP_CF_CONNECTING_IP"])) {

  $_SERVER['REMOTE_ADDR'] = $_SERVER["HTTP_CF_CONNECTING_IP"];

}


Top