Jump to content

Changing Merchant Account Providers


davet

Recommended Posts

I want to change the Merchant Account WHMCS uses to automatically charge cards every billing period.

 

I am currently using Authorize.net and have it setup within WHMCS > Payment Gateways. I have "Visible Name" specified as "Credit Card".

 

I want to start using my new Merchant Account from CDGCommerce (Quantum).

 

I have this setup within WHMCS > Payment Gateway as "Quantum Gateway"

 

If I delete the Authorize.net merchant account from within WHMCS, will I then have to go to every product that is set to Credit Card and change it to Quantum Gateway?

 

Or can I just renamed Quantum Gateway to Credit Card and it will work?

 

Basically what I am asking is if I change my main merchant account do I then have to visit each product to change the default payment?

 

Thanks for your help!

Link to comment
Share on other sites

  • WHMCS CEO

Hi,

 

You can avoid having to change all your clients from the current payment module you use to your new one manually by simply executing some SQL queries as below on your WHMCS database:

 

UPDATE tblhosting SET paymentmethod='quantumgateway' WHERE paymentmethod='authorize';
UPDATE tblhostingaddons SET paymentmethod='quantumgateway' WHERE paymentmethod='authorize';
UPDATE tbldomains SET paymentmethod='quantumgateway' WHERE paymentmethod='authorize';
UPDATE tblorders SET paymentmethod='quantumgateway' WHERE paymentmethod='authorize';
UPDATE tblinvoices SET paymentmethod='quantumgateway' WHERE paymentmethod='authorize' AND status='Unpaid';

 

In the above queries you just need to replace 'authorize' with the gateway module you are currently using and changing from, and 'quantumgateway' with the module you are switching to.

 

All new and future invoices will then use the new payment method, as will any open unpaid invoices that have already generated. And you will then be able to disable the old gateway module in Setup > Payment Gateways.

 

Hope that helps!

 

Matt

Link to comment
Share on other sites

  • 2 months later...

Hi Matt or davet:

 

Clarification question to Matt's instructions above:

What do I do first to do this change? (We have version 4.2, by the way.) Do I first add the new Quantum gateway via the WHMCS panel, or do I do the database changes before activating that?

Thanks.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated