在centos安装bugify

我正尝试在CentOS服务器上安装bugify。 当我用来安装bugify时,下面的错误被拔出:

Bugify requires certain binaries to exist on this server in order to run properly. Could not find the PHP Cli tool at /usr/bin/php. 

我需要哪些二进制文件,以及如何获取它们?

您的安装

 Could not find the PHP Cli tool at /usr/bin/php. 

想必这意味着你需要安装它。


所以你找出它在哪个包:

 yum provides /usr/bin/php 

系统告诉你它在php-cli包中。


所以现在安装:

 yum install php-cli 

然后再次尝试你的bugify安装。

现在只是抱怨php。

只需使用此命令安装PHP

#yum安装php -y

之后这至less不会给这个错误之后。 可能是一些其他的依赖。

如果你确定安装了php-cli,那么path可能不是/usr/bin/php (Bugify在/usr/bin/php/usr/local/bin/php )。

从SSH, which phpphp -v的输出是什么?