Reputation: 1668
I'm using CodeIgniter. Now I am upgrading CodeIgniter from 2.2.0 to 3.0.0
I need to use PhpExcel. But it shows an error like:
Non-existent class: CI_Excel
What can I try next?
Upvotes: 0
Views: 7585
Reputation: 1
change the library name As CI_Ex.... and save it on libraries folder
Upvotes: 0
Reputation: 14752
The system/ directory is reserved for CI, you're not supposed to modify or put anything in there.
Any custom libraries you use should go into application/libraries/.
Upvotes: 1