<?php
// HTTP
define('HTTP_SERVER', 'http://lan.rldcreative.nl/shop/admin/');
define('HTTP_CATALOG', 'http://lan.rldcreative.nl/shop/');

// HTTPS
define('HTTPS_SERVER', 'https://lan.rldcreative.nl/shop/admin/');
define('HTTPS_CATALOG', 'https://lan.rldcreative.nl/shop/');

// DIR
define('DIR_APPLICATION', 'C:/webpages/creative/public/shop/admin/');
define('DIR_SYSTEM', 'C:/webpages/creative/public/shop/system/');
define('DIR_IMAGE', 'C:/webpages/creative/public/shop/image/');
define('DIR_STORAGE', 'C:/webpages/creative/application/shop/system/storage/');
define('DIR_CATALOG', 'C:/webpages/creative/public/shop/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', 'mysqli');
define('DB_HOSTNAME', 'localhost');
define('DB_USERNAME', 'oc_creative');
define('DB_PASSWORD', 'Dan!que97@RLD');
define('DB_DATABASE', 'creative_oc');
define('DB_PORT', '3306');
define('DB_PREFIX', 'oc_');

// OpenCart API
define('OPENCART_SERVER', 'https://www.opencart.com/');
