Web Hosting Talk







View Full Version : Plesk 7 - Moving a domain between clients


AussieHosts
04-14-2004, 12:07 PM
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
-----------------------------

Dan L
04-14-2004, 05:06 PM
Excellent tutorial Gary, been wondering how to do that. :)

gilbert
05-12-2004, 02:57 PM
thanks so much man that really helped me for the furture

another1
05-13-2004, 12:08 AM
Do you have any idea if this works the same way for Plesk 6? I don't want to run the risk of losing everything from one of the domains I need to move by doing something wrong.

Thanks! :)

AussieHosts
05-13-2004, 12:52 AM
Here's a thread covering Plesk 6:

http://forum.plesk.com/showthread.php?s=&threadid=12711&highlight=update+domains+set

Gary

another1
05-13-2004, 12:55 AM
Perfect. Thanks so much... I have been searching a long time for this information! :)

san-deep
12-22-2004, 08:58 PM
nice info here helped me too

DHPCentral.com
01-14-2005, 12:27 AM
I use 4psa.com's Notifications. There is a tool for doing this without playing with phpmyadmin. I couldn't live without it. I think it's more secure to use too.

jsonline2k3
05-02-2005, 10:02 PM
thanks! worked great!