How Do I Get Setup For Reselling Domains?
You can get everything setup for reselling domains with Hostwinds by following these steps:
- Download the Module Packages
- Get API details here (If you don’t have one, click Generate Key)
- Unzip the files and put them in WHMCS root directory
- Activate the Addon Module
- Select your role group to give it access
- Click Save Changes
- Set API credentials with the info you grabbed above
- Go to the includes folder and find this file: additionaldomainfields.php
- Add the following code to that file just before the ?>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
if(!defined('DS')) define('DS',DIRECTORY_SEPARATOR); $filename = dirname(__FILE__).DS.'..'.DS.'modules'.DS.'registrars'.DS.'HostwindsReseller'.DS.'HostwindsReseller.php'; if(file_exists($filename)){ require_once ($filename); $fields = HostwindsReseller_GetDomainFields(); if(is_array($fields)) $additionaldomainfields = $fields; } |