View Single Post
  #2 (permalink)  
Old 03-27-2008, 03:28 PM
notrub225 notrub225 is offline
Senior Member
 
Join Date: Jan 2008
Location: chicago
Posts: 101
Default

Try modifying the 'include_path' php variable in your bootstrap file. I assume this is to add the library directory which has the Zend library in it?

Put this at the top of your bootstrap file (index.php) :

PHP Code:
// Add the library/ directory to the include path
set_include_path('.' PATH_SEPARATOR '../library/' PATH_SEPARATOR get_include_path()); 
Reply With Quote