I am new to CI and now I am trying to use CodeIgniter 3 to develop my site. I just extract only the framework and change only one file in the config / autoload.php file:
$autoload['libraries'] = array('database','input');
when I start the site, an error occurs:
Unable to load the requested class: Input
When I tried it with CI version 2.2.0, everything is fine, no errors. Can someone explain why and help me solve this problem?
source share