> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://docs.clientexec.com/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# How to move/merge a package to a different user

|| First, make sure the current recurring fee for the package is not under a Paypal subscription. If it is, make sure to cancel the Paypal subscription before continue.

If you are using **Clientexec 5.9.0** or higher, it now has the ability to merge packages using a multi-select dropdown in the merge section to select the packages you want to move to the other account.

1. Go to the client profile that has the package.
2. Go to his/her **Packages** tab and take note of the id of the package you want to move.
3. Go back to the **Contact** tab.
4. Go to the bottom of the profile and there must be an orange button labeled **Merge** . Click on it.
5. There fill the field **Destination Client ID** - Enter there the ID of the new user that will have the package.
6. Go to the **Merge Packages** field and select there the package you want to move. You can review it has the id you took note on step 2).
7. Make sure to **Uncheck** the **Merge All Data** field. If you miss this step, you will end merging all the client data.
8. Do not select or fill any other field there.
9. Press Merge Button.


 If you have a lower version of Clientexec, then use queries like these ones to change the package owner and the recurring fee owner: 

```html
UPDATE `domains` SET `CustomerID` = new_customer_id WHERE `CustomerID` = old_customer_id AND `id` = package_id;
UPDATE `recurringfee` SET `customerid` = new_customer_id WHERE `customerid` = old_customer_id AND `appliestoid` = package_id; 
```

Replace **new\_customer\_id** with the id of the new customer.
Replace **old\_customer\_id** with the id of the old customer.
Replace **package\_id** with the id of the package you are modifying.  