Wesker Well-known member Jun 16, 2014 #1 As the title says, what table are IP Addresses stored in for users when they login, post etc.
Adam K M Active member Jul 6, 2014 #3 Mind sharing? Update: I'm looking at the xf_ip table, and the actual IP field in phpMyAdmin... doesn't look like an IP Address at all Upvote 0 Downvote
Mind sharing? Update: I'm looking at the xf_ip table, and the actual IP field in phpMyAdmin... doesn't look like an IP Address at all
Jake Bunce Well-known member Jul 7, 2014 #4 IPs are normally viewed through XenForo. They are not stored in a readable format in the database. If you are running MySQL 5.6.3 or higher then this function should work to view the stored IPs in the xf_ip table: Code: SELECT INET6_NTOA(ip) AS ipaddress FROM xf_ip Otherwise there isn't an easy way to query the readable IP since XF started supporting IPv6 addresses. Upvote 0 Downvote
IPs are normally viewed through XenForo. They are not stored in a readable format in the database. If you are running MySQL 5.6.3 or higher then this function should work to view the stored IPs in the xf_ip table: Code: SELECT INET6_NTOA(ip) AS ipaddress FROM xf_ip Otherwise there isn't an easy way to query the readable IP since XF started supporting IPv6 addresses.