Guest User

Untitled

a guest
Sep 25th, 2024
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1.  
  2. // HTTP
  3. define('HTTP_SERVER', 'http://store.domain.org/adm1n/');
  4. define('HTTP_CATALOG', 'http://store.domain.org/');
  5.  
  6. // HTTPS
  7. define('HTTPS_SERVER', 'https://store.domain.org/adm1n/');
  8. define('HTTPS_CATALOG', 'https://store.domain.org/');
  9.  
  10. // DIR
  11. define('DIR_APPLICATION', '/var/www/opencart/webroot/adm1n/');
  12. define('DIR_SYSTEM', '/var/www/opencart/webroot/system/');
  13. define('DIR_IMAGE', '/var/www/opencart/webroot/image/');
  14. define('DIR_STORAGE', '/var/www/opencart/storage_opencart/');
  15. define('DIR_CATALOG', '/var/www/opencart/webroot/catalog/');
  16. define('DIR_LANGUAGE', DIR_APPLICATION . 'language/');
  17. define('DIR_TEMPLATE', DIR_APPLICATION . 'view/template/');
  18. define('DIR_CONFIG', DIR_SYSTEM . 'config/');
  19. define('DIR_CACHE', DIR_STORAGE . 'cache/');
  20. define('DIR_DOWNLOAD', DIR_STORAGE . 'download/');
  21. define('DIR_LOGS', DIR_STORAGE . 'logs/');
  22. define('DIR_MODIFICATION', DIR_STORAGE . 'modification/');
  23. define('DIR_SESSION', DIR_STORAGE . 'session/');
  24. define('DIR_UPLOAD', DIR_STORAGE . 'upload/');
Advertisement
Add Comment
Please, Sign In to add comment