我已经使用命令安装了pecl / solr,
pecl install solr
和梨使用
wget http://pear.php.net/go-pear.phar
php go-pear.phar
重启Apache后,我仍然收到错误
Fatal error: Class 'SolrClient' not found
在PHP代码上
$client = new SolrClient($options);
任何人都可以描述在Centos上逐步安装pecl / solr扩展.
解决方法:
只是为了简化程序:
1使用安装扩展
pear install pecl/solr
OR
pecl install -n solr
2将此扩展名添加到php ini文件中
echo "extension=solr.so" > /etc/<Your php ini path>/php.ini
3重新启动服务器
Service httpd/apache2 restart