php - Codeigniter 3 Query Builder not enabled for the configured database. Aborting. Error
one text
Solution:
Check in autoload.php and ensure that the session library is loaded.
$autoload['libraries'] = array('database', 'session');
Sourceone text
Check in autoload.php and ensure that the session library is loaded.
$autoload['libraries'] = array('database', 'session');
Source