2
I found how to do it using the PHPMYADMIN, very simple SQL, even if you dont know SQL just follow these easy steps:
1) Assume the admin is user ID 1, and you create a new user to transfer the PMs to him, let's refer him as Archive and his user ID is 5000.
The user Id is shown on the profile of each XOOPS user, just as if you would click on my username in this website (Xoops.org) then you will see my user ID is 50673.
2) Go to PHPMYADMIN
3) Choose the "xoops_priv_msgs" (left tab)
4) Click on SQL
5) Type the following command:
UPDATE `xoops_priv_msgs` SET `to_userid` = "5000" WHERE `to_userid`= 1That will transfer all the PMs from Admin(1) to Archive(5000).
That's it!
If you want to transfer ONLY read messages so unread messages will remain in the Admin's inbox then just type it this way:
UPDATE `xoops_priv_msgs` SET `to_userid` = "5000" WHERE `to_userid`= 1 and `read_msg` = 1The `read_msg` field is 1 for read messages and 0 for unread messges.
Goodluck