Quote:
Originally Posted by Masala4india
Could you please tell the manual way to delete the IP addresses coz i want to see how many IP's are stored.
|
Execute the following lines via PhpMyAdmin for example.
PHP Code:
UPDATE adminlog SET ipaddress = ''
UPDATE moderatorlog SET ipaddress = ''
UPDATE post SET ipaddress = ''
UPDATE threadrate SET ipaddress = ''
UPDATE user SET ipaddress = ''
Quote:
Originally Posted by Sparticus_V2
here is a question, I used this to delete the logs off all the proxy servers that had been used... But just to save time i deleted all intervals, and i figured the true IPs should start showing up as the members logged in... But now no IPs store in the user info section and I want them to, I deleted the Cron, what else must i do? I NEED TO KNOW THE IPs!!
|
If you want to delete the IPs except the IPs in the user info section you should remove the following line:
PHP Code:
$vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "user SET ipaddress = ''");
from the deleteip.php.