Quote:
Originally Posted by Avalon111
great hack!!!
i had to change _SERVER['REMOTE_ADDR'] to $_SERVER['HTTP_X_REMOTECLIENT_IP']. because my host uses a loadbalancer.
before i changed that all users had the same ip (from the host). now all users appear in the Users sharing the same IP Address. because the old wrong ip is still in the database.
is it possible to clear all stored ip adresses?
|
So basicly every user's post ip must be reset. This hack looks @ the IP recorded on each post. If all your posts have the same IP then we could Null the posts that are currently on you forum to "enpty or blank" value and all the new posts will be ok.
Code:
UPDATE `post` SET `ipaddress` = '' WHERE `ipaddress` ='xxx.xxx.xxx.xxx';
xxx.xxx.xxx.xxx fill in the IP you want to remove.