robins
robins

Reputation: 1668

Non-existent class error after updating CodeIgniter

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

Answers (2)

Thilina Palkumbura
Thilina Palkumbura

Reputation: 1

change the library name As CI_Ex.... and save it on libraries folder

Upvotes: 0

Narf
Narf

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

Related Questions