How to set_include_path for php project?
Now I set path is
include('Zend/Search/Lucene.php');<br>
set_include_path('Zend'.PATH_SEPARATOR.get_include_path());<br>
require_once('Zend/Loader.php');
and directory for save this project is
C:\AppServ\www\Search
in this folder has Zend (Zend is the library of ZF)
Now it show
Warning: Zend_Search_Lucene_Storage_Directory_Filesystem::require_once(Zend/Search/Lucene/Storage/File/Filesystem.php) [zend-search-lucene-storage-directory-filesystem.require-once]: failed to open stream: No such file or directory in C:\AppServ\www\Search\Zend\Search\Lucene\Storage\Directory\Filesystem.php on line 349
Fatal error: Zend_Search_Lucene_Storage_Directory_Filesystem::require_once() [function.require]: Failed opening required 'Zend/Search/Lucene/Storage/File/Filesystem.php' (include_path='/Search/Zend/;.;C:\php5\pear') in C:\AppServ\www\Search\Zend\Search\Lucene\Storage\Directory\Filesystem.php on line 349
Help me please.