diff options
| author | bookcorner <git@bookcorner.ge> | 2026-07-27 00:14:05 +0400 |
|---|---|---|
| committer | bookcorner <git@bookcorner.org> | 2026-07-27 00:14:05 +0400 |
| commit | 1a1b60b6ef37af8d4895be0b0a0cbffd0a84c88e (patch) | |
| tree | caf0948f2b5614db71c76a0ea4ffd9f5cc68b4e0 /var/www/htdocs/PhoenixCart-1.1.0.7/includes/configure.php | |
| parent | 778d9d98a81a368ccf03475310dd9b83e4526f28 (diff) | |
| download | infra-1a1b60b6ef37af8d4895be0b0a0cbffd0a84c88e.tar infra-1a1b60b6ef37af8d4895be0b0a0cbffd0a84c88e.tar.gz infra-1a1b60b6ef37af8d4895be0b0a0cbffd0a84c88e.tar.bz2 infra-1a1b60b6ef37af8d4895be0b0a0cbffd0a84c88e.tar.lz infra-1a1b60b6ef37af8d4895be0b0a0cbffd0a84c88e.tar.xz infra-1a1b60b6ef37af8d4895be0b0a0cbffd0a84c88e.tar.zst infra-1a1b60b6ef37af8d4895be0b0a0cbffd0a84c88e.zip | |
Install MariaDB, PHP, Phoenix Cart
Diffstat (limited to 'var/www/htdocs/PhoenixCart-1.1.0.7/includes/configure.php')
| -rw-r--r-- | var/www/htdocs/PhoenixCart-1.1.0.7/includes/configure.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/www/htdocs/PhoenixCart-1.1.0.7/includes/configure.php b/var/www/htdocs/PhoenixCart-1.1.0.7/includes/configure.php new file mode 100644 index 0000000..781e5b6 --- /dev/null +++ b/var/www/htdocs/PhoenixCart-1.1.0.7/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-1.1.0.7/'; + + const DB_SERVER = '127.0.0.1'; + const DB_SERVER_USERNAME = 'phoenixcart'; + const DB_SERVER_PASSWORD = 'h8wr8zsmzivqjvlxh5odpex4zah4anar'; + const DB_DATABASE = 'phoenixcart'; |
