AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Source Servers (SRCDS) (https://forums.alliedmods.net/forumdisplay.php?f=130)
-   -   Solved FastDL not downloading all files. (https://forums.alliedmods.net/showthread.php?t=331731)

NaphtaliRacer 04-04-2021 22:18

FastDL not downloading all files.
 
I've ran into an issue where clients aren't downloading every model and sound from my fastdl. Everything in the '/materials' and '/maps' path come through without any issue but only some assets from my models and sound folder will download. I've checked my fastdl server to see if i was missing files or maybe i misplaced them but my fastdl and tf paths are perfectly aligned.
Maybe something is missing from my server.cfg ?

_______________
sv_pure 0
sv_allowupload 0
sv_allowdownload 0
sv_downloadurl "https://X.X.X.X.com/tf"
_______________

i can't seem to find what's causing the issue.

drakunovu6 04-04-2021 22:30

Re: FastDL not downloading all files.
 
You need to allow sv_allowupload and sv_allowdownload to make it work.

NaphtaliRacer 04-04-2021 22:39

Re: FastDL not downloading all files.
 
Quote:

Originally Posted by drakunovu6 (Post 2743056)
You need to allow sv_allowupload and sv_allowdownload to make it work.

I tried that yesterday and the problem still persists.

drakunovu6 04-04-2021 22:51

Re: FastDL not downloading all files.
 
Try using HTTP if you don't have SSL

oqyh 04-05-2021 00:45

Re: FastDL not downloading all files.
 
1 Attachment(s)
Quote:

Originally Posted by NaphtaliRacer (Post 2743055)
I've ran into an issue where clients aren't downloading every model and sound from my fastdl. Everything in the '/materials' and '/maps' path come through without any issue but only some assets from my models and sound folder will download. I've checked my fastdl server to see if i was missing files or maybe i misplaced them but my fastdl and tf paths are perfectly aligned.
Maybe something is missing from my server.cfg ?

_______________
sv_pure 0
sv_allowupload 0
sv_allowdownload 0
sv_downloadurl "https://X.X.X.X.com/tf"
_______________

i can't seem to find what's causing the issue.



Try
sv_pure 0
sv_allowupload 0
sv_allowdownload 1
sv_downloadurl "https://X.X.X.X.com/tf"


And download zip At "Attach Files"

Just Put path at sourcemod/configs/downloads.ini

Example :
sound/levels_ranks/rankup.mp3
materials/models/parachute/gargoyle.vtf
models/parachute/gargoyle.mdl


MAKE SURE PATH / NOT \ + Make Sure No Space Between Paths

Bacardi 04-05-2021 06:54

Re: FastDL not downloading all files.
 
...don't pack them bz2 format ? Let them be normal files.

CryWolf 04-06-2021 08:08

Re: FastDL not downloading all files.
 
Quote:

Originally Posted by Bacardi (Post 2743096)
...don't pack them bz2 format ? Let them be normal files.

It has nothing to do with .bz2 format.

Anyway you should check for sure for plugin not to precache
Code:

models/parachute/Gargoyle.mdl
And your filename to be
Code:

models/parachute/gargoyle.mdl
or vice-versa because in linux servers capitalization does not exist, until are requested, in linux system is alowed to files with the same name/extension with diferent Capitalization.
Ex:
Code:

models/parachute/gargoyle.mdl
models/parachute/garGoyle.mdl
models/parachute/gargoYle.mdl

But in Windows doesn't work, so veryfy the request of file how it is precached or file-name.

NaphtaliRacer 04-06-2021 18:27

Re: FastDL not downloading all files.
 
Quote:

Originally Posted by oqyh (Post 2743067)

Try
sv_pure 0
sv_allowupload 0
sv_allowdownload 1
sv_downloadurl "https://X.X.X.X.com/tf"


And download zip At "Attach Files"

Just Put path at sourcemod/configs/downloads.ini

Example :
sound/levels_ranks/rankup.mp3
materials/models/parachute/gargoyle.vtf
models/parachute/gargoyle.mdl


MAKE SURE PATH / NOT \ + Make Sure No Space Between Paths

This has solved my download issues. Thanks for the help everyone. :avast:

DarkDeviL 04-06-2021 19:19

Re: FastDL not downloading all files.
 
Quote:

Originally Posted by drakunovu6 (Post 2743056)
You need to allow sv_allowupload and sv_allowdownload to make it work.

You need to familiarize yourself with how things actually works, before you shout out things that aren't true.


sv_allowdownload and sv_allowupload parameters controls the file transfers via the game server itself, - allowing/disallowing the so-called "slow" file transfers.

They do NOT do affect the FastDL / "fast" downloads through sv_downloadurl.

So when you have sv_downloadurl set up properly, simply set / leave the other two (sv_allowdownload and sv_allowupload) on 0.


All times are GMT -4. The time now is 05:49.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.