@george1421 I followed your instructions but I am still getting the same error page, not a different debug one. Here is the postinit script I made. I did notice that I do not have a fog.download in my bin and I saw that the script replaces that.
#Current File in FOS Linux to be replaced
currfile="/bin/fog.download"
#Patch file to send to FOS Linux virtual hard drive
newfile="${postinitpath}fog.download"
# ---------------------------------------------
# DO NOT edit any text below this line
# ---------------------------------------------
. /usr/share/fog/lib/funcs.sh
echo "Testing path for our fixed file at ${newfile}"
debugPause
# Test path and run copy if found and matched.
if [[ -r $newfile ]]; then
echo "Found source file preparing to copy"
debugPause
cp -f $newfile $currfile >/dev/null 2>&1
[[ ! $? -eq 0 ]] && echo "Copy Failed" || echo "Copy Succeeded"
debugPause
else
echo "Failed to find file [${newfile}] sorry. Copy Failed"
debugPause
fi
. ${postinitpath}fog.patch.man.reg