From 4d2b2f5d1c870af97d396206187bd67eb668644a Mon Sep 17 00:00:00 2001 From: Webslice Date: Thu, 22 Dec 2022 09:43:56 +0100 Subject: [PATCH] Use PHP from path in server.sh --- server/server.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/server.sh b/server/server.sh index 9c92a868b0..3956d05b8b 100755 --- a/server/server.sh +++ b/server/server.sh @@ -15,14 +15,14 @@ if [ -f /usr/local/ispconfig/server/lib/php.ini ]; then fi cd /usr/local/ispconfig/server -/usr/bin/php -q \ +$(which php) -q \ -d disable_classes= \ -d disable_functions= \ -d open_basedir= \ /usr/local/ispconfig/server/server.php cd /usr/local/ispconfig/security -/usr/bin/php -q \ +$(which php) -q \ -d disable_classes= \ -d disable_functions= \ -d open_basedir= \ -- GitLab