Derleek 0 Posted September 2, 2008 Share Posted September 2, 2008 I'm installing the zend framework. I am Not familiar with modifying this stuff(php.ini?) which i need to do in order to include/install zend for my scripts. I can't seem to figure out/understand how to add the '/library directory to my PHP include_path'... as the zend install.txt reads. do i just add -> include_path = ".;users/zend/library" - to the php.ini file? eep... i get scared modifying this stuff Link to post Share on other sites
wildteen88 3 Posted September 2, 2008 Share Posted September 2, 2008 I'm installing the zend framework. I am Not familiar with modifying this stuff(php.ini?) which i need to do in order to include/install zend for my scripts. I can't seem to figure out/understand how to add the '/library directory to my PHP include_path'... as the zend install.txt reads. do i just add -> include_path = ".;users/zend/library" - to the php.ini file? eep... i get scared modifying this stuff You'll find it a lot simpler if you add the following to your bootstrapper file (index.php) // modify the include_path set_include_path('users/zend/library' . PATH_SEPARATOR . get_include_path()); Link to post Share on other sites
Derleek 0 Posted September 2, 2008 Author Share Posted September 2, 2008 awesome thanks Link to post Share on other sites
Recommended Posts
Archived
This topic is now archived and is closed to further replies.