problem .....
http://www.vbulletin.com/forum/showp...44&postcount=2
PHP Code:
Steve Machol Steve Machol is offline
Customer Support Manager
Join Date: Jul 2000
Location: Jelsoft InterGalactic HQ
Age: 54
Posts: 96,803
Steve Machol is on a distinguished road
To delete all PMs, run these 4 queries:
UPDATE `user` SET `pmtotal` = '0',`pmunread` = '0';
TRUNCATE TABLE `pm`;
TRUNCATE TABLE `pmtext`;
TRUNCATE TABLE `pmreceipt`;
Of course, backup your database first.