I have a problem that I can\'t load my library in my controller :S
I got this error: Message: Undefined property: Profil::$profileWall
My library:
Make sure your library loading is always done in lowercase, per the Documentation, object instances will always be lower case.
Also make sure your library file is capitalized ProfileWall.php
ProfileWall.php
example load $this->load->library('profilewall');
$this->load->library('profilewall');
usage $this->profilewall->function();
$this->profilewall->function();