From 07cfe14903d629b87f444edc17c321e64bf4213b Mon Sep 17 00:00:00 2001 From: Amin Mahmoudi Date: Fri, 29 Dec 2023 16:54:23 +0330 Subject: [PATCH] Fixed issues. --- application/config/config.php.sample | 4 ++-- application/include/core_handler.php | 4 +--- application/include/database.php | 3 +-- application/loader.php | 11 ++++++----- 4 files changed, 10 insertions(+), 12 deletions(-) diff --git a/application/config/config.php.sample b/application/config/config.php.sample index 9dc5d49..9495bcd 100755 --- a/application/config/config.php.sample +++ b/application/config/config.php.sample @@ -134,7 +134,7 @@ $config['db_auth_host'] = '127.0.0.1'; // Database host address. $config['db_auth_port'] = '3306'; // Database port. $config['db_auth_user'] = 'root'; // Database username. $config['db_auth_pass'] = 'root'; // Database password. -$config['db_auth_dbname'] = 'realmd'; // Database name for your auth/realmd database. +$config['db_auth_dbname'] = 'auth'; // Database name for your auth/realmd database. // Realmlist Configuration - Configure the connection details for each realm's character database. $config['realmlists'] = array( @@ -145,7 +145,7 @@ $config['realmlists'] = array( 'db_port' => "3306", // MySQL Host Port 'db_user' => "root", // MySQL username 'db_pass' => 'root', // MySQL password - 'db_name' => "realm1_characters" // Characters database name + 'db_name' => "characters" // Characters database name ) ); diff --git a/application/include/core_handler.php b/application/include/core_handler.php index 2900083..d3cdc0c 100644 --- a/application/include/core_handler.php +++ b/application/include/core_handler.php @@ -1,12 +1,10 @@