Log in

View Full Version : IP address


goshalim
08-27-2010, 05:13 AM
Hi ,

How can i hide a specific IP from a user ? so even the moderetors and super moderator cannot see it ?

I do not want to block this function from them , just to hide a spesific user.

Thanks

borbole
08-27-2010, 01:19 PM
Hi ,

How can i hide a specific IP from a user ? so even the moderetors and super moderator cannot see it ?

I do not want to block this function from them , just to hide a spesific user.

Thanks

To hide it where? For ex, in posts you can hide it with a qyery like this:

UPDATE post SET ipaddress = '' WHERE userid = x;

And replace x with the actual id of the user whose ip you want to hide in posts. And if your db tables have a prefix you should apend it next to the tables name at the query above.