• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

How to delete unity mobile sites via CLI - Preventing subscription transfer

Chris1

Regular Pleskian
Hello,

I am trying to migrate a couple of sites from one owner to another but I am getting the following error:

Code:
Unable to continue subscription transfer: this subscription requires more resources than can be provided by the new owner's provider.

It seems that the error output in the GUI doesn't provide all the information. When I attempt a change of ownership via CLI I get this line which I am guessing is causing the problem.

Code:
Resource name            Allocated Used  Will be used
max_unity_mobile_sites 0            2       2

These domains were migrated from Plesk 10 to Plesk 12. The unity mobile sites I believe were available on our previous server but not on our new Plesk 12 server.

How can I remove these "used" unity mobile sites via the database or CLI?
 
Can anyone help with this?

I can't perform a simple task of moving a subscription to another customer.
 
Last edited:
Could someone please help with this query?

I tried migrating the domain to a Plesk 12.5 server and then could re-assign the domain to a different customer without a problem. But I cannot re-assign the domain to a different customer on the Plesk 12.0 server.
 
Hello,

i've digged around a lot, but there's a workaround: at this KB: https://kb.plesk.com/en/128801

{in short}
(make a backup) mysqldump -uadmin -p`cat /etc/psa/.psa.shadow` psa > psa_backup.sql
(connect to plesk db) plesk db
(search for site that use unity) select * from dom_param where param like "%unity%";
(delete this records) DELETE FROM dom_param WHERE PARAM LIKE "%unity%";

Now i can move subscriptions.
 
Back
Top