Derleek 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 comment https://forums.phpfreaks.com/topic/122404-solved-installing-zend-zend-framework-include_path-confusion/ Share on other sites More sharing options...
wildteen88 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 comment https://forums.phpfreaks.com/topic/122404-solved-installing-zend-zend-framework-include_path-confusion/#findComment-632149 Share on other sites More sharing options...
Derleek Posted September 2, 2008 Author Share Posted September 2, 2008 awesome thanks Link to comment https://forums.phpfreaks.com/topic/122404-solved-installing-zend-zend-framework-include_path-confusion/#findComment-632211 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.