OXIESEC PANEL
- Current Dir:
/
/
opt
/
alt
/
php56
/
usr
/
bin
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/16/2023 01:46:45 PM
rwxr-xr-x
📄
lsphp
4.77 MB
11/09/2024 11:09:09 PM
rwxr-xr-x
📄
pear
1.44 KB
01/28/2020 05:24:47 PM
rwxr-xr-x
📄
peardev
428 bytes
01/28/2020 05:24:47 PM
rwxr-xr-x
📄
pecl
319 bytes
01/28/2020 05:24:47 PM
rwxr-xr-x
📄
phar
14.49 KB
11/09/2024 11:08:59 PM
rwxr-xr-x
📄
phar.phar
14.49 KB
11/09/2024 11:08:59 PM
rwxr-xr-x
📄
php
4.77 MB
11/09/2024 11:09:09 PM
rwxr-xr-x
📄
php-cgi
4.74 MB
11/09/2024 11:09:08 PM
rwxr-xr-x
📄
php-config
6.62 KB
01/24/2024 04:04:26 PM
rwxr-xr-x
📄
phpdbg
4.85 MB
11/09/2024 11:09:09 PM
rwxr-xr-x
📄
phpize
4.44 KB
01/24/2024 04:04:26 PM
rwxr-xr-x
Editing: pear
Close
#!/bin/sh alt_php_dir="/opt/alt/php56" if [ `getconf LONG_BIT` = "64" ] then libdir="lib64" else libdir="lib" fi FIRST_RUN=`${alt_php_dir}/usr/bin/php -C -q \ -d include_path=${alt_php_dir}/usr/share/pear \ -d date.timezone=UTC \ -d output_buffering=1 \ -d variables_order=EGPCS \ -d safe_mode=0 \ -d register_argc_argv="On" \ -d open_basedir="" \ -d auto_prepend_file="" \ -d auto_append_file="" \ ${alt_php_dir}/usr/share/pear/pearcmd.php "$@"` if `echo "${FIRST_RUN}" | grep -q "requires PHP extension"`; then EXTENSIONS=`echo "${FIRST_RUN}" | grep -o 'requires PHP extension "[a-z]*"' | sed 's/requires PHP extension //' | sed 's/"//g'` INCLUDE="" for ext in ${EXTENSIONS}; do if [ -e ${alt_php_dir}/usr/${libdir}/php/modules/${ext}.so ]; then INCLUDE="${INCLUDE} -d extension=${ext}.so" else echo "$FIRST_RUN" echo "alt-PHP extension ${ext} is required." exit 1 fi done ${alt_php_dir}/usr/bin/php -C -q -n \ -d include_path=${alt_php_dir}/usr/share/pear \ -d date.timezone=UTC \ -d output_buffering=1 \ -d variables_order=EGPCS \ -d safe_mode=0 \ -d register_argc_argv="On" \ -d open_basedir="" \ -d auto_prepend_file="" \ -d auto_append_file="" \ ${INCLUDE} \ ${alt_php_dir}/usr/share/pear/pearcmd.php "$@" else echo "$FIRST_RUN" fi