CabCon Active member Sep 18, 2016 #1 Hello, I was wondering if it's possible to delete one selected IP from the IP log of the members? That you can not see anymore this ip in shared accounts and in the acp. Regards, CabCon.
Hello, I was wondering if it's possible to delete one selected IP from the IP log of the members? That you can not see anymore this ip in shared accounts and in the acp. Regards, CabCon.
P Paul B XenForo moderator Staff member Sep 18, 2016 #2 The only way to do that would be by manually editing the database. Upvote 0 Downvote
CabCon Active member Sep 18, 2016 #3 Brogan said: The only way to do that would be by manually editing the database. Click to expand... Is there a example SQL command for doing that? Upvote 0 Downvote
Brogan said: The only way to do that would be by manually editing the database. Click to expand... Is there a example SQL command for doing that?
Jake Bunce Well-known member Sep 19, 2016 #4 Get the hex value of the IP in question: http://ncalculators.com/digital-computation/ip-address-hex-decimal-binary.htm Then run this query with that value to remove all instances of it from the IP log: Rich (BB code): DELETE FROM xf_ip WHERE ip = X'1342a2a8' Upvote 0 Downvote
Get the hex value of the IP in question: http://ncalculators.com/digital-computation/ip-address-hex-decimal-binary.htm Then run this query with that value to remove all instances of it from the IP log: Rich (BB code): DELETE FROM xf_ip WHERE ip = X'1342a2a8'
CabCon Active member Sep 19, 2016 #5 Jake Bunce said: Get the hex value of the IP in question: http://ncalculators.com/digital-computation/ip-address-hex-decimal-binary.htm Then run this query with that value to remove all instances of it from the IP log: Rich (BB code): DELETE FROM xf_ip WHERE ip = X'1342a2a8' Click to expand... Thank you I will try that out! Upvote 0 Downvote
Jake Bunce said: Get the hex value of the IP in question: http://ncalculators.com/digital-computation/ip-address-hex-decimal-binary.htm Then run this query with that value to remove all instances of it from the IP log: Rich (BB code): DELETE FROM xf_ip WHERE ip = X'1342a2a8' Click to expand... Thank you I will try that out!