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
example load $this->load->library('profilewall');
usage $this->profilewall->function();
Library in code igniter didn't concentrate for lower case, Have you placed your library in folder application/library? before or try changed your class name with CI_ProfileWall
I have been saved my files with CKEditor CKFinder in /libraries folder. I changed with first letter of CKFinder to Ckfinder and CKEditor to Ckeditor. Working fine.
In your profileWall , it should be Profilewall
I had the same problem and after straggling alot I realized that I was loading my libraries in a wrong format. I was not putting them into an array
. I changed
$this->load->library('email','custom');
to $this->load->library(array('email','custom'));
.