I am newbie in zend framework ,
a simple question :
in my IndexController file , I want to instance new class.
I put the file of class declaration under /library
and of course its in the include path (index.php)
set_include_path(implode(PATH_SEPARATOR, array(
realpath(APPLICATION_PATH . '/../library'),
get_include_path()
)));
I get an error :
Fatal error: Class 'Profile' not found in ....
what is the way to auto load this class ?
thanks!