SCRIPTS: PHP bin is not always php5 (#2352)

This commit is contained in:
Luis Daniel Lucio Quiroz
2017-02-07 23:32:39 -05:00
committed by FusionPBX
parent d6f888f6a9
commit 3f9ce5bf86

View File

@@ -213,8 +213,11 @@ if (!class_exists('scripts')) {
if (substr(strtoupper(PHP_OS), 0, 3) == "WIN") {
$tmp .= " php_bin = \"php.exe\";\n";
}
elseif (file_exists(PHP_BINDIR."/php5")) {
$tmp .= " php_bin = \"php5\";\n";
}
else {
$tmp .= " php_bin = \"php5\";\n";
$tmp .= " php_bin = \"php\";\n";
}
$tmp .= $this->correct_path(" document_root = [[".$_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."]];\n");
$tmp .= $this->correct_path(" project_path = [[".PROJECT_PATH."]];\n");