So I'm attempting to install some Zend Framework components mainly so I can use the google API picasa library.
I tried adding the Zend library to my
codeigniter-> application-> libraries
and then running $this->load->library('Zend');
but I receive
Unable to load the requested class: zend
Then I tried doing it
$clientLibraryPath = '/usr/local/lib/php/Zend/Gdata';
$oldPath = set_include_path(get_include_path() . PATH_SEPARATOR . $clientLibraryPath);
Error
> Exception thrown trying to access Zend/Loader.php using
> 'use_include_path' = true. Make sure you include Zend Framework in
> your include_path which currently contains:
> .:/usr/share/php:/usr/share/pear:/usr/local/lib/php/Zend/Gdata
I'm not sure on what the actual path should be I also uploaded the Zend libary into users/local/lib/php as well. What am I doing wrong?