Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/9f03c98e8fe8c4d2aaacb353a6821bb1aea6fc26?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
23 additions and
1 deletions
@ -34,6 +34,8 @@ catch_errors() {
}
}
error_handler() {
error_handler() {
if [ -n "$SPINNER_PID" ] && ps -p $SPINNER_PID > /dev/null; then kill $SPINNER_PID; fi
printf "\e[?25h"
local exit_code="$?"
local exit_code="$?"
local line_number="$1"
local line_number="$1"
local command="$2"
local command="$2"
@ -41,17 +43,37 @@ error_handler() {
echo -e "\n$error_message\n"
echo -e "\n$error_message\n"
}
}
# This function displays a spinner.
spinner() {
printf "\e[?25l"
spinner="/-\\|/-\\|"
spin_i=0
while true; do
printf "\b%s" "${spinner:spin_i++%${#spinner}:1}"
sleep 0.1
done
}
# This function displays an informational message with a yellow color.
msg_info() {
msg_info() {
local msg="$1"
local msg="$1"
echo -ne " ${HOLD} ${YW}${msg}..."
echo -ne " ${HOLD} ${YW}${msg} "
spinner &
SPINNER_PID=$!
}
}
# This function displays a success message with a green color.
msg_ok() {
msg_ok() {
if [ -n "$SPINNER_PID" ] && ps -p $SPINNER_PID > /dev/null; then kill $SPINNER_PID; fi
printf "\e[?25h"
local msg="$1"
local msg="$1"
echo -e "${BFR} ${CM} ${GN}${msg}${CL}"
echo -e "${BFR} ${CM} ${GN}${msg}${CL}"
}
}
# This function displays a error message with a red color.
msg_error() {
msg_error() {
if [ -n "$SPINNER_PID" ] && ps -p $SPINNER_PID > /dev/null; then kill $SPINNER_PID; fi
printf "\e[?25h"
local msg="$1"
local msg="$1"
echo -e "${BFR} ${CROSS} ${RD}${msg}${CL}"
echo -e "${BFR} ${CROSS} ${RD}${msg}${CL}"
}
}