| Server IP : 37.9.174.138 / Your IP : 216.73.216.117 Web Server : Apache System : Linux vps6.backend.sk 6.12.100+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.100-1 (2026-07-30) x86_64 User : ftpuser ( 1001) PHP Version : 8.4.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/wwwconfig-common/ |
Upload File : |
#!/bin/sh
# File: apache-php.sh
# Changes:
# 20010219 Ola Lundqvist <opal@debian.org>
# 20011022 Luca De Vitis <luca@debian.org>
# Introduced the error variable.
# o /[[:space:]][[:space:]]*/[[:space:]]\+/
# o / */[[:space:]]\+/
# o / */[[:space:]]*/
# 20020116 Ola Lundqvist <opal@debian.org>
# Documented the error variable.
# 20040525 Jeremy Laine <jeremy.laine@m4x.org>
# Switched to modules-config.
# 20040806 Pierre Habouzit <pierre.habouzit@m4x.org>
# Changed from modules-config to apache-modconf. Just a name
# change, no functionality changed.
# 20040820 Jeremy Laine <jeremy.laine@m4x.org>
# Replace remaining calls to modules-config by apache-modconf.
# Needs: $phpver - the php version to use.
# $phpini - the php config file to use.
# $server - the apache server to use,
# anything that matches /etc/$server/*.conf
# Description: Verifies that the php module is loaded in the apache config file.
# Sets: $status = {error, nothing, include, uncomment}
# $error = error message (if $status = error)
status=error
error=""
if [ -z "$phpver" ] ; then
error="No php version to check for."
elif [ -z "$phpini" ] ; then
error="No php ini file to check for."
elif [ ! -f $phpini ] ; then
error="Php config file $phpini not found."
elif [ -z $(which apache-modconf) ] ; then
error="Could not find apache-modconf."
else
phpverm="mod_"$phpver
phpstatus=`apache-modconf $server query $phpverm || true`
if [ -z "$phpstatus" ] ; then
apache-modconf $server enable $phpverm
# Uncomment successful.
status=uncomment
else
status=nothing
fi
fi