| 123456789101112131415161718192021222324252627 |
- #!/bin/bash
- # LGSM fn_ut2k4fix function
- # Author: Daniel Gibbs
- # Website: http://danielgibbs.co.uk
- # Version: 011214
- echo "Applying ${gamename} Server Fixes"
- echo "================================="
- echo "applying WebAdmin ut2003.css fix."
- echo "http://forums.tripwireinteractive.com/showpost.php?p=585435&postcount=13"
- sed -i 's/none}/none;/g' "${filesdir}/Web/ServerAdmin/ut2003.css"
- sed -i 's/underline}/underline;/g' "${filesdir}/Web/ServerAdmin/ut2003.css"
- sleep 1
- echo "applying WebAdmin CharSet fix."
- echo "http://forums.tripwireinteractive.com/showpost.php?p=442340&postcount=1"
- sed -i 's/CharSet="iso-8859-1"/CharSet="utf-8"/g' "${systemdir}/UWeb.int"
- sleep 1
- echo "applying server name fix."
- sleep 1
- echo "forcing server restart..."
- sleep 1
- cd "${rootdir}"
- ${selfname} start
- sleep 5
- ${selfname} restart
- sleep 5
- ${selfname} stop
|