HelloCan someone please help me with getting the real IP's from Incapsula reverse proxy ?The php code they provide on the support forum is posted below. <?php/** * This file should be included at the beginning of your PHP code * * It changes the value of $_SERVER['REMOTE_ADDR'], to the value provided in the Incap-Client-IP header. * If such a value is not provided, or is not valid - no change is made. *///name of HTTP header with the initial client IP addressdefine('HEADER_NAME','HTTP_INCAP_CLIENT_IP');try { //stop process if there is no header if (empty($_SERVER[HEADER_NAME])) throw new Exception('No header defined', 1); //validate header value if (function_exists('filter_var')) { $ip = filter_var($_SERVER[HEADER_NAME], FILTER_VALIDATE_IP); if (false === $ip) throw new Exception('The value is not a valid IP address', 2); } else { $ip = trim($_SERVER[HEADER_NAME]); if (false === preg_match('/^[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}$/', $ip)) throw new Exception('The value is not a valid IP address', 2); } //At this point the initial IP value is exist and validated $_SERVER['REMOTE_ADDR'] = $ip;} catch (Exception $e) {}?>Does anyone know how to use this with IPB ?Thnx