diff options
Diffstat (limited to 'var/www/htdocs/phoenixcart/includes/configure.php')
| -rw-r--r-- | var/www/htdocs/phoenixcart/includes/configure.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/www/htdocs/phoenixcart/includes/configure.php b/var/www/htdocs/phoenixcart/includes/configure.php new file mode 100644 index 0000000..32a0408 --- /dev/null +++ b/var/www/htdocs/phoenixcart/includes/configure.php @@ -0,0 +1,23 @@ +<?php + error_reporting(E_ALL); + + const HTTP_SERVER = 'https://bookcorner.ge'; + const COOKIE_OPTIONS = [ + 'lifetime' => 0, + 'domain' => 'bookcorner.ge', + 'path' => '/', + 'samesite' => 'Lax', + 'secure' => true, + ]; + const DIR_WS_CATALOG = '/'; + + date_default_timezone_set('Asia/Tbilisi'); + +// If you are asked to provide configure.php details, +// please remove the data below before sharing. + const DIR_FS_CATALOG = '/htdocs/phoenixcart/'; + + const DB_SERVER = '127.0.0.1'; + const DB_SERVER_USERNAME = 'phoenixcart'; + const DB_SERVER_PASSWORD = 'h8wr8zsmzivqjvlxh5odpex4zah4anar'; + const DB_DATABASE = 'phoenixcart'; |
