Linux ams-business-8.hostwindsdns.com 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64
LiteSpeed
Server IP : 192.236.177.161 & Your IP : 216.73.216.50
Domains :
Cant Read [ /etc/named.conf ]
User : ajzdfbpz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lsws /
admin /
html.6.1 /
utility /
build_php /
Delete
Unzip
Name
Size
Permission
Date
Action
buildPHP.php
567
B
-rw-r--r--
2023-03-25 11:58
buildProgress.php
367
B
-rw-r--r--
2023-03-25 11:58
buildStep1.php
1.45
KB
-rw-r--r--
2023-03-25 11:58
buildStep2.php
9.97
KB
-rw-r--r--
2023-03-25 11:58
buildStep3.php
3.46
KB
-rw-r--r--
2023-03-25 11:58
buildStep4.php
4.22
KB
-rw-r--r--
2023-03-25 11:58
build_common.template
565
B
-rw-r--r--
2023-03-25 11:58
build_install.template
4
KB
-rw-r--r--
2023-03-25 11:58
build_install_ext.template
1.72
KB
-rw-r--r--
2023-03-25 11:58
build_manual_run.template
1.05
KB
-rw-r--r--
2023-03-25 11:58
build_prepare.template
5.29
KB
-rw-r--r--
2023-03-25 11:58
build_prepare_ext.template
2.6
KB
-rw-r--r--
2023-03-25 11:58
buildconf.inc.php
2.26
KB
-rw-r--r--
2023-03-25 11:58
buildfunc.inc.php
29.19
KB
-rw-r--r--
2023-03-25 11:58
Save
Rename
########################################### EXTENSION_NAME="__extension_name__" EXTENSION_DIR=__extension_dir__ EXTENSION_EXTRA_CONFIG="__extension_extra_config__" ########################################### echo "" echo "==============================================" main_msg "Start building ${EXTENSION_NAME} Extension" echo "==============================================" echo `date` echo "" main_msg "Changing to build directory ${PHP_BUILD_DIR}/php-${PHP_VERSION}/${EXTENSION_DIR}" cd ${PHP_BUILD_DIR}/php-${PHP_VERSION}/${EXTENSION_DIR} check_errs $? "Could not get into build directory" main_msg "Running PHPize for ${EXTENSION_NAME} extension" ${INSTALL_DIR}/bin/phpize check_errs $? "Could not run PHPize for ${EXTENSION_NAME}" main_msg "Configuring ${EXTENSION_NAME} extension build" ./configure ${EXTENSION_EXTRA_CONFIG} --with-php-config=${INSTALL_DIR}/bin/php-config check_errs $? "Could not configure ${EXTENSION_NAME} extension build" main_msg "Compiling ${EXTENSION_NAME} extension" make check_errs $? "Could not compile ${EXTENSION_NAME} extension" main_msg "Installing ${EXTENSION_NAME} extension" make install check_errs $? "Could not install ${EXTENSION_NAME} extension" if [ "${INST_USER}" = "root" ]; then echo "chown -R ${PHP_USR}:${PHP_USRGROUP} ${PHP_BUILD_DIR}/php-${PHP_VERSION}/${EXTENSION_DIR} " chown -R ${PHP_USR}:${PHP_USRGROUP} ${PHP_BUILD_DIR}/php-${PHP_VERSION}/${EXTENSION_DIR} check_errs $? "Could not chown to ${PHP_USR}:${PHP_USRGROUP} for direcotry ${PHP_BUILD_DIR}/php-${PHP_VERSION}/${EXTENSION_DIR}" fi echo "" echo "==============================================" main_msg "${EXTENSION_NAME} extension build complete" echo "==============================================" echo `date` echo ""