I seem to have a very strange problem concerning my FastDL: I currently host a Garry's Mod server (dedicated) with custom maps, models and such.
Of course, to avoid endless downloading, I've set up the FastDL on a free web host, respected the order of the folders corresponding to the game (garrysmod/...), but, when I wanted to play with some friends, only I was able to connect out of 3.
They all got the error "Missing map".
I've tried re-downloading the map from different sources, set net_maxfilesize to 64, also tried changing of web host. But nothing.
Server OS: Windows 7 64-bit
Processor: Intel Core 2 Duo E6750 2.66 GHz
Ram: 2GB
Game: Garry's Mod
Start up Command:
server.cfg:
Edit: Just tried CHMOD-ing the whole folder, still not working.
Of course, to avoid endless downloading, I've set up the FastDL on a free web host, respected the order of the folders corresponding to the game (garrysmod/...), but, when I wanted to play with some friends, only I was able to connect out of 3.
They all got the error "Missing map".
I've tried re-downloading the map from different sources, set net_maxfilesize to 64, also tried changing of web host. But nothing.
Server OS: Windows 7 64-bit
Processor: Intel Core 2 Duo E6750 2.66 GHz
Ram: 2GB
Game: Garry's Mod
Start up Command:
Code:
@echo off
cls
echo Protecting srcds from crashes...
echo If you want to close srcds, close the srcds window and type Y depending on your language followed by Enter.
title Server Watchdog
:srcds
echo (%time%) srcds started.
start /wait C:\srcds\orangebox\srcds.exe -console -game garrysmod -ip 192.168.0.100 -port 27015 +maxplayers 24 +sv_scriptenforcer 1 +sv_defaultgamemode zombiesurvival +map zs_fortress +net_maxfilesize 64
echo (%time%) WARNING: srcds closed or crashed, restarting.
goto srcds
server.cfg:
Code:
//server cvars
hostname "*"
rcon_password "*"
sv_password ""
sv_region "3" // eastcoast: 0 - westcoast: 1 - south america: 2 - europe: 3 - asia: 4 - australia: 5 - middle east: 6 - africa: 7 - world: 255
sv_lan "0"
sv_alltalk "1"
sv_voiceenable "1"
// I've obviously replaced the link to my website by downloadurl.
sv_downloadurl "www.downloadurl.com/garrysmod/"
sv_allowupload "1"
sv_allowdownload "1 "
// Sandbox server settings
sbox_godmode "0"
sbox_plpldamage "-0"
sbox_noclip "0"
// Sandbox limits
sbox_maxprops "75"
sbox_maxragdolls "0"
sbox_maxnpcs "0"
sbox_maxballoons "10"
sbox_maxeffects "0"
sbox_maxdynamite "0"
sbox_maxlamps "10"
sbox_maxthrusters "4"
sbox_maxwheels "10"
sbox_maxhoverballs "5"
sbox_maxvehicles "0"
sbox_maxbuttons "25"
sbox_maxsents "0"
sbox_maxemitters "10"
sbox_maxspawners "0"
sbox_maxturrets "0"
Edit: Just tried CHMOD-ing the whole folder, still not working.