11-29-2012, 01:33 PM
(11-29-2012, 02:45 AM)axel76 Wrote: I have search "Zend" and find this folders:
/usr/share/php/Zend
and
/usr/share/php/libzend-framwork-php/Zend
The correct path is the first.
I have modify the file as:
----------------------------------------------------------------------------------------------
require_once('/usr/share/php/Zend/Search/Lucene.php');
/**
* @uses Zend_Search_Lucene_Analysis_TokenFilter_Stopwords
*/
require_once("/usr/share/Zend/Search/Lucene/Analysis/TokenFilter/StopWords.php");
Setting absolute paths is always an option but better would be to set you php include_dir propperly.
Uwe