Class 'CI_Excel' not found
问题 When I load the library of excel I got this error. I follow everything in this Tutorial and still got some error Im using codeigniter framework. Class 'CI_Excel' not found in /var/www/html/warehouse/system/core/Common.php on line 196 this is my controller class Dashboard extends CI_Controller { public function __construct(){ parent::__construct(); $this->load->library('excel'); $this->load->model('dashboard_model'); } public function download(){ $this->excel->setActiveSheetIndex(0); $this-