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:
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'));.
array
$this->load->library('email','custom');
$this->load->library(array('email','custom'));