| Server IP : 3.111.61.48 / Your IP : 216.73.216.67 Web Server : Apache System : Linux ip-10-0-5-176 6.8.0-1057-aws #60~22.04.1-Ubuntu SMP Wed May 27 08:16:59 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.2.31 Disable Function : exec,passthru,shell_exec,system 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
if [ "$1" = "remove" ] || [ "$1" = "purge" ]; then
if [ -L /usr/lib/libphp.so ] && [ "$(realpath -L /usr/lib/libphp.so)" = /usr/lib/libphp8.2.so ]; then
rm -f /usr/lib/libphp.so
fi
ldconfig
fi
php_enable() { return 0; }
if [ "$1" = "purge" ]; then
phpini=/etc/php/8.2/embed/php.ini
# remove the flag to remember the original state
if [ -e /etc/php/8.2/embed/.start ]; then
rm -f /etc/php/8.2/embed/.start
fi
for ext in '~' '%' .bak .ucf-new .ucf-old .ucf-dist; do
rm -f $phpini$ext
done
rm -f $phpini
if which ucf >/dev/null; then
ucf --purge $phpini
fi
if which ucfr >/dev/null; then
ucfr --purge libphp8.2-embed $phpini
fi
for dir in \
/etc/php/8.2/embed/conf.d \
/etc/php/8.2/embed \
/etc/php/8.2 \
/etc/php;
do
if [ ! -L $dir ] && [ -d $dir ]; then
rmdir --ignore-fail-on-non-empty $dir
fi
done
fi
exit 0