<?php
// HTTP
define('HTTP_SERVER', 'https://xxxx .com/admin/');
define('HTTP_CATALOG', 'https://xxxx .com/');
// HTTPS
define('HTTPS_SERVER', 'https://xxxx /admin/');
define('HTTPS_CATALOG', 'https://xxxx .com/');
// DIR
define('DIR_APPLICATION', '/home/xxxx /public_html/admin/');
define('DIR_SYSTEM', '/home/xxxx /public_html/system/');
define('DIR_IMAGE', '/home/xxxx /public_html/image/');
define('DIR_STORAGE', '/home/xxxx /ocartdata/storage/');
define('DIR_CATALOG', '/home/xxxx /public_html/catalog/');
define('DIR_LANGUAGE', DIR_APPLICATION . 'language/');
define('DIR_TEMPLATE', DIR_APPLICATION . 'view/template/');
define('DIR_CONFIG', DIR_SYSTEM . 'config/');
define('DIR_CACHE', DIR_STORAGE . 'cache/');
define('DIR_DOWNLOAD', DIR_STORAGE . 'download/');
define('DIR_LOGS', DIR_STORAGE . 'logs/');
define('DIR_MODIFICATION', DIR_STORAGE . 'modification/');
define('DIR_SESSION', DIR_STORAGE . 'session/');
define('DIR_UPLOAD', DIR_STORAGE . 'upload/');
// DB
define('DB_DRIVER', 'xxxx ');
define('DB_HOSTNAME', xxxx ');
define('DB_USERNAME', 'xxxx ');
define('DB_PASSWORD', 'xxxx ');
define('DB_DATABASE', 'xxxx ');
define('DB_PORT', 'xxxx ');
define('DB_PREFIX', 'xxxx ');
// OpenCart API
define('OPENCART_SERVER', 'https://www.opencart.com/');