Files
BiveEngine/config.php
2025-12-24 19:19:01 +03:00

43 lines
1.1 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
// Имя базы данных
define("DB_NAME", "bive");
// Пользователь базы данных
define("DB_USER", "root");
// Пароль базы данных
define("DB_PASS", "root");
// Адрес базы данных
define("DB_HOST", "localhost");
// Нужно ли кешировать шаблоны
define("TEMPLATE_CACHE", false);
// НЕ ТРОГАТЬ, ТО ЧТО НИЖЕ
// НЕ ТРОГАТЬ, ТО ЧТО НИЖЕ
// НЕ ТРОГАТЬ, ТО ЧТО НИЖЕ
define("ADMIN_PAGE", "admin");
// Сессия только по HTTPS
define("SESSION_SECURE", false);
// Сохранение Root дирректории сайта
define("ROOT_DIR", __DIR__);
// Имя директории с движком
define("ENGINE_DIR_NAME", "engine");
// Имя директории с хранилищем
define("STORAGE_DIR_NAME", "storage");
// Имя директории с пользовательским кодом
define("PLAYAREA_DIR_NAME", "playarea");
// Слеш, подставляется в пути
define("SLASH", "/");
// Директории движка
define("ENGINE_DIR", ROOT_DIR . SLASH . ENGINE_DIR_NAME);