$active_group = 'default';
$query_builder = TRUE;

 $db['default'] = array(
    'dsn'	=> '',
    'hostname' => 'localhost',
    'username' => 'sposadmin', // ইউজারনেমে প্রিফিক্স আছে কিনা চেক করুন
    'password' => 'R00t@dmin123',
    'database' => 'spos',               // URL অনুযায়ী ডাটাবেস নাম 'spos'
    'dbdriver' => 'mysqli',
    'dbprefix' => 'tec_',
    'pconnect' => FALSE,
    'db_debug' => FALSE,
    'cache_on' => FALSE,
    'cachedir' => '',
    'char_set' => 'utf8',
    'dbcollat' => 'utf8_general_ci',
    'swap_pre' => '',
    'encrypt' => FALSE,
    'compress' => FALSE,
    'stricton' => FALSE,
    'failover' => array(),
    'save_queries' => FALSE
);



---------------- config.php for domain set
// $config['base_url'] = 'http://localhost:84/simplepos/';

$host = $_SERVER['HTTP_HOST'] ?? 'localhost';

if (in_array($host, ['223.27.93.37:8080', '192.168.9.215:8080', 'localhost:84'])) {
    $config['base_url'] = 'http://' . $host . '/simplepos/';
} else {
    //$config['base_url'] = 'http://localhost:84/simplepos/'; // fallback
    $config['base_url'] = 'https://axoneasebd.com/simplepos/';
}

admin
Hasib123