· 6 years ago · Feb 29, 2020, 08:44 AM
1// $config['check_version']
2// To ensure you are running the latest version of this script every time you generate a new backup
3// you can enable checks back to https://check_version.whmbackup.solutions/.
4// There are 3 levels of update notifications you can set the configuration variable to.
5// 0 - Disable Checking For Updates.
6// 1 - Notify of Major Update.
7// 2 - Notify of Major & Minor Updates.
8$config['check_version'] = '2';
9// Checking for updates will also enable automatic script upgrading.
10// To disable automatic script updates uncomment the line below.
11// $config["skip_update"] = '1';
12
13// $config['whm_hostname']
14// This is the hostname or ip address of the cPanel server your reseller is hosted on.
15$config['whm_hostname'] = '';
16
17// $config['whm_port']
18// The WHM login port value. Typically this is 2086 for Non-SSL and 2087 for SSL connections.
19$config['whm_port'] = '';
20
21// $config['whm_username']
22// This is your username used to login to your WHM.
23$config['whm_username'] = '';
24
25// $config['whm_auth']
26// To authenticate into your account this value can be set to either password or hash.
27// The password or hash should then be entered into $config['whm_auth_key'];
28// password - Is the password used to login to your WHM.
29// hash - This is using the hash generated within WHM (Remote Access Key or API Token)
30$config['whm_auth'] = '';
31$config['whm_auth_key'] = '';