PDA

View Full Version : How to clear a single user's history?


wholemama
05-16-2006, 06:46 PM
I see how to do it for everyone...is there a way to clear a single person, either through the front end or the DB?

And deleting all rows with their userid from vbp_itemhistory doesn't work, already tried that.

CMX_CMGSCCC
06-20-2006, 04:44 PM
Try running a query like...


UPDATE (TABLE_PREFIX)user SET vbp_history = '' WHERE userid = X;


-CMX