XF 1.5 IP logging bug?

Escobar

Active member
hello,

i experiencing a ip logging bug for some time now ips shown at accounts are often same as other users when its no multi account or anything which caused us a lot of fake accusions for multi accounts. Sometimes people are complete in differet state or country but still have the same ip

Wat could be the issue?
 
Try adding this to your config.php

PHP:
if (isset($_SERVER['HTTP_CF_CONNECTING_IP'])) { $_SERVER['REMOTE_ADDR'] = $_SERVER['HTTP_CF_CONNECTING_IP']; }
 
Top Bottom