PHP 7.4 installation error

have you checked paths? "Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix."
 
The problem is that the "build" script does not set the environment variable "OS_CENTOS_VER" to 6 on time. The variable is needed near line
72 of the script, but it is set near line 262!
You may edit the build script, but remember that it will be overwritten by DA on "./build update". The change is like this, near line 70:


.
.
B64=0
if uname -m | grep -qE -m1 'amd64|x86_64'; then
OS_CENTOS_VER=6
echo "ES: TEST 2, Centos ${OS_CENTOS_VER}"
B64=1
LD_LIBRARY_PATH=/usr/lib/apache:/usr/local/icu/lib:/usr/local/lib64:/usr/local/lib:/usr/lib64:/usr/lib:/lib64:/lib
export LD_LIBRARY_PATH
.
.

I hope DA will fix this soon. It worked before June 29 2022.
 
The problem is that the "build" script does not set the environment variable "OS_CENTOS_VER" to 6 on time. The variable is needed near line
72 of the script, but it is set near line 262!
You may edit the build script, but remember that it will be overwritten by DA on "./build update". The change is like this, near line 70:




I hope DA will fix this soon. It worked before June 29 2022.
Remember this message at the license page of your DirectAdmin on CentOS 6: This OS is now end-of-life. Future automated updates may fail.
 
Back
Top