| Server IP : 167.99.254.82 / Your IP : 216.73.216.76 Web Server : Apache System : Linux host.techisquad.com 5.15.0-187-generic #197-Ubuntu SMP Fri Jul 17 19:17:01 UTC 2026 x86_64 User : pawluxera ( 1011) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/bug/php8.5-phpdbg/ |
Upload File : |
#!/bin/sh
MATCH="^[[:space:]]*($|;)"
echo "==== Additional PHP 8.5 information ====" >&3
echo "" >&3
echo "++++ PHP 8.5 SAPI (php8.5query -S): ++++" >&3
/usr/sbin/php8.5query -S >&3
echo "" >&3
echo "++++ PHP 8.5 Extensions (php8.5query -M -v): ++++" >&3
/usr/sbin/php8.5query -M -v >&3
echo "" >&3
echo "++++ Configuration files: ++++" >&3
"**** /etc/php/8.5/phpdbg/php.ini ****" >&3
grep -Ev "$MATCH" /etc/php/8.5/phpdbg/php.ini >&3
echo "" >&3
find /etc/php/8.5/phpdbg/conf.d/ -name '*.ini' | \
while read CONF; do
echo "**** $CONF ****" >&3
grep -Ev "$MATCH" "$CONF" >&3
echo "" >&3
done