Plesk 7 - Moving a domain between clients
Run your mouse over the clients and domains you need to change and note their id numbers.
Proceed with caution
Example: You want to move domain "abc.com" (domains.id=2) from client Harry (client.id=3) to client Mary (client.id=1).
-----------------------------
Login to mysql with:
mysql -u admin -p`cat /etc/psa/.psa.shadow`
Type:
use psa;
Type:
update domains set cl_id='1' where cl_id='3' and name='abc.com' and id='2';
Type:
exit
-----------------------------