Jump to content
WebFlake
  • 0

ip problem


resaller89

Question

7 answers to this question

Recommended Posts

  • 0

Use phpmyadmin to check the admin_login_logs table and your member table  and see what the differences are in the ip_address for your member..  

 

Some internet providers change your ip regularly.. 

 

Also did you start using cloudfare on your website?

 

 

If they are different you can check your current ip at whatsmyip.com ..

Link to comment
Share on other sites

  • 0

CloudFlare Support

 

How do I restore original visitor IP with IPB (Invision Power Board)?
 
 
To enable correct IP matching when running an Invision Power Board3 installation through CloudFlare, follow these directions:
 

1. Log into your IPB installation's ACP.

2. Go to System Settings.

3. Click Security and Privacy.

4. Scroll down to Security [General - High].

5. Find the setting "Enable X_FORWARDED_FOR IP matching?" and select Yes.

6. Scroll down to the bottom of the page and click Update Settings.

Link to comment
Share on other sites

  • 0

That means your host has fixed his server.

 

Add this code after <?php in the conf_global.php file by using ftp to edit it..

if (isset($_SERVER["HTTP_CF_CONNECTING_IP"])) {
  $_SERVER['REMOTE_ADDR'] = $_SERVER["HTTP_CF_CONNECTING_IP"];
  $_SERVER['HTTP_X_FORWARDED_FOR'] = $_SERVER["HTTP_CF_CONNECTING_IP"];
}
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...