forked from mmycool/FRED-WHMCS-EPP-Registrar-Module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
26 lines (17 loc) · 782 Bytes
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
// EPP Server settings
define('EPP_HOST', 'tls://server'); //Protocol setting depends on the allowed protocols on both sides...registry and client PHP setting...sslv3, tls, etc
define('EPP_PORT', 700);
define('EPP_TIMEOUT', 60);
// EPP Cert information
define('EPP_CERT', 'certs.pem');
// EPP Auth information
define('EPP_USER', 'GGGGGG');
define('EPP_PWD', 'KKKKKKKK');
// EPP Log settings
define('EPP_LOG', true);
define('EPP_LOG_FILE', 'log.xml');
define('FORMAT_OUTPUT', true);
define('XMLNS_EPP', 'urn:ietf:params:xml:ns:epp-1.0');
define('XSCHEMA_EPP', 'urn:ietf:params:xml:ns:epp-1.0 epp-1.0.xsd');
define('XMLNS_XSCHEMA', 'http://www.w3.org/2001/XMLSchema-instance');