| Server IP : 150.230.34.123 / Your IP : 216.73.217.23 Web Server : LiteSpeed System : Linux amd-instance-20210802-1657 5.15.0-1042-oracle #48~20.04.1-Ubuntu SMP Mon Aug 21 18:27:46 UTC 2023 x86_64 User : ubuntu ( 1001) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/lib/dpkg/info/ |
Upload File : |
#!/bin/sh
#set -e
CONFDIR=/usr/local/lsws/lsphp74/etc/php/7.4/mods-available
if [ "$1" = "configure" ]; then
phpini="/usr/local/lsws/lsphp74/etc/php/7.4/litespeed/php.ini"
ucf /usr/local/lsws/lsphp74/lib/php/7.4/php.ini-production $phpini
ucfr lsphp74 $phpini
if [ -e /usr/local/lsws/lsphp74/bin/php-maintscript-helper ] ; then
. /usr/local/lsws/lsphp74/bin/php-maintscript-helper
elif [ -e /usr/lib/php/php-maintscript-helper ] ; then
. /usr/lib/php/php-maintscript-helper
fi
if [ -e /usr/local/lsws/lsphp74/bin/phpquery ] ; then
mods=$(/usr/local/lsws/lsphp74/bin/phpquery -M -v 7.4)
elif [ -e /usr/sbin/phpquery ] ; then
mods=$(phpquery -M -v 7.4)
fi
for mod in $mods; do
if [ -e /usr/local/lsws/lsphp74/bin/phpenmod ] ; then
/usr/local/lsws/lsphp74/bin/phpenmod 7.4 litespeed $mod
elif [ -e /usr/sbin/phpenmod ] ; then
phpenmod 7.4 litespeed $mod
fi
done
fi
exit 0