Done !
| Server IP : 194.181.228.65 / Your IP : 216.73.216.226 Web Server : LiteSpeed System : Linux wn13.webd.pl 5.14.0-687.46.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Sep 11 09:03:19 EDT 2026 x86_64 User : prusit ( 133039) PHP Version : 5.6.40 Disable Function : exec, system, shell_exec, passthru, proc_open, proc_close, popen MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/usr/local/php5.5/bin/ |
Upload File : |
#!/bin/sh
# first find which PHP binary to use
if test "x$PHP_PEAR_PHP_BIN" != "x"; then
PHP="$PHP_PEAR_PHP_BIN"
else
if test "/usr/local/php-5.5.38/bin/php" = '@'php_bin'@'; then
PHP=php
else
PHP="/usr/local/php-5.5.38/bin/php"
fi
fi
# then look for the right pear include dir
if test "x$PHP_PEAR_INSTALL_DIR" != "x"; then
INCDIR=$PHP_PEAR_INSTALL_DIR
INCARG="-d include_path=$PHP_PEAR_INSTALL_DIR"
else
if test "/builddir/build/BUILDROOT/php5.5-5.5.38-8.el8.x86_64/usr/local/php-5.5.38/lib/php" = '@'php_dir'@'; then
INCDIR=`dirname $0`
INCARG=""
else
INCDIR="/builddir/build/BUILDROOT/php5.5-5.5.38-8.el8.x86_64/usr/local/php-5.5.38/lib/php"
INCARG="-d include_path=/builddir/build/BUILDROOT/php5.5-5.5.38-8.el8.x86_64/usr/local/php-5.5.38/lib/php"
fi
fi
exec $PHP -C -n -q $INCARG -d date.timezone=UTC -d output_buffering=1 -d variables_order=EGPCS -d safe_mode=0 -d register_argc_argv="On" $INCDIR/peclcmd.php "$@"