Panel/includes/config.inc.php.example
2026-04-29 18:22:40 -04:00

23 lines
711 B
Text

<?php
###############################################
# Site configuration
# Copy this file to config.inc.php and fill in
# your actual database credentials.
# config.inc.php is excluded from version control.
###############################################
$db_host="your_db_host";
$db_port="3306";
$db_user="your_db_user";
$db_pass="your_db_password";
$db_name="your_db_name";
$table_prefix="gsp_";
$db_type="mysql";
###############################################
# Debug mode
# Set to true on dev/staging, false on production.
###############################################
define('DEBUG_MODE', false);
// Load the debug system immediately after credentials are known
require_once __DIR__ . '/debug.php';