我已经在我的 CentOS 服务器上安装了git-ftp,这样我就可以从运行 ac_gitolite 模块的 activeCollab 安装中进行部署。
一切安装正常,应用程序位于
/usr/local/bin/git-ftp
当我通过 ssh 登录服务器时,我可以在没有完整路径的情况下运行 git-ftp 命令,但是当我尝试使用 PHP 来运行带有 exec 的命令时,即:
exec ("git-ftp --version 2>&1", $output);
我收到以下错误:
sh: git-ftp: command not found
是否有我需要专门为 PHP 指定某处的环境路径,或者我做错了什么?