| Server IP : 217.160.0.212 / Your IP : 216.73.216.141 Web Server : Apache System : Linux www 6.18.51-i1-ampere #1196 SMP Fri Sep 11 20:43:55 CEST 2026 aarch64 User : sws1073854427 ( 1073854427) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/lib/dpkg/info/ |
Upload File : |
#!/bin/sh
set -e
if [ "$1" = "configure" ] && [ -n "$2" ]; then
for sapi in $(phpquery -v "8.3" -S); do
ini="/etc/php/8.3/$sapi/conf.d/20-redis.ini"
if [ -h "$ini" ]; then
rm "$ini"
fi
done
fi
# Automatically added by dh_php/UNDECLARED
# Hey emacs, this is -*- shell-script -*-
if [ -e /usr/lib/php/php-maintscript-helper ] ; then
. /usr/lib/php/php-maintscript-helper
for version in 8.3 ; do
for name in redis ; do
php_invoke enmod "$version" ALL "$name" || exit 1
done
done
else
for name in redis ; do
phpenmod "$name"
done
fi
# End automatically added section
exit 0