Class 'CI_Driver_Library' not found.
file: url /application/config/config.php
CI Verson
less 3.0
asked cache
and session
as functions library
.
$ autoload [
'libraries'
] = array ('cache'
,'session'
);$ autoload [
'drivers'
] = array ();
And for Verson 3.0 and up
$ autoload [
'libraries'
] = array ();$ autoload [
'drivers'
] = array ('cache'
,'session'
);
remove both from library and then just add it to drivers . You may forget to remove it from library
, it will boot correctly after solving the problem;
source to share