Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. <?php
  2. // HTTP
  3. define('HTTP_SERVER', 'http://bizcards.com/');
  4.  
  5. // HTTPS
  6. define('HTTPS_SERVER', 'http://bizcards.com/');
  7.  
  8. // DIR
  9. define('DIR_APPLICATION', '/home/wwwmovie/public_html/bizcards.com/catalog/');
  10. define('DIR_SYSTEM', '/home/wwwmovie/public_html/bizcards.com/system/');
  11. define('DIR_IMAGE', '/home/wwwmovie/public_html/bizcards.com/image/');
  12. define('DIR_LANGUAGE', '/home/wwwmovie/public_html/bizcards.com/catalog/language/');
  13. define('DIR_TEMPLATE', '/home/wwwmovie/public_html/bizcards.com/catalog/view/theme/');
  14. define('DIR_CONFIG', '/home/wwwmovie/public_html/bizcards.com/system/config/');
  15. define('DIR_CACHE', '/home/wwwmovie/public_html/bizcards.com/system/storage/cache/');
  16. define('DIR_DOWNLOAD', '/home/wwwmovie/public_html/bizcards.com/system/storage/download/');
  17. define('DIR_LOGS', '/home/wwwmovie/public_html/bizcards.com/system/storage/logs/');
  18. define('DIR_MODIFICATION', '/home/wwwmovie/public_html/bizcards.com/system/storage/modification/');
  19. define('DIR_UPLOAD', '/home/wwwmovie/public_html/bizcards.com/system/storage/upload/');
  20.  
  21. // DB
  22. define('DB_DRIVER', 'mysqli');
  23. define('DB_HOSTNAME', 'localhost');
  24. define('DB_USERNAME', 'xxxxxx');
  25. define('DB_PASSWORD', 'xxxxx');
  26. define('DB_DATABASE', 'xxxxx');
  27. define('DB_PORT', '3306');
  28. define('DB_PREFIX', 'oc_');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement