PDA

View Full Version : [solved]Issue with uploading demos


Mirandor
06-12-2013, 06:51
hi all,

i run sourcebans on the same computer than the srcds, linux operating system, private hosting.

Everything works fine, excepted when i try to upload a demo by using the admin control panel of sourcebans ; i select the demo to upload, i "save" it ; after few seconds, a message is displayed "demo uploaded", but when i want to view the demo, i get on a blank page with "File not found".

By exploring the datas on the server, the directory "Demos" is empty...

Every files has correctly chmoded 777...

Questions:
-Is there a special port to route for sourcebans?
-did i forget something?

Thanks.

Electr000999
01-19-2014, 08:30
have same issue, system: debian 7, nginx, php5-fpm

edit 1: this is size issue, i send for test zip with .txt file, and work fine, how increase size limit ?

WildCard65
01-20-2014, 08:24
have same issue, system: debian 7, nginx, php5-fpm

edit 1: this is size issue, i send for test zip with .txt file, and work fine, how increase size limit ?

Try your php.ini

Electr000999
01-22-2014, 02:51
WildCard65, what variables?

WildCard65
01-22-2014, 08:43
WildCard65, what variables?

Edit: Posted wrong variable info.
Real info: find a variable with Mb or MB or try 20
Edit: Or scroll through php.ini till you catch something about file size or max files per upload(I believe one your looking for is close with one that limits how many files you can upload at once)

Walliski
01-25-2014, 08:34
https://www.google.fi/search?q=php+file+size+upload+limit&ie=utf-8&oe=utf-8&rls=org.mozilla:fi:official&client=firefox-a&channel=fflb&gws_rd=cr&ei=Sb3jUve-FLOe7AavuoBY
says:

; Maximum allowed size for uploaded files.
upload_max_filesize = 40M
; Must be greater than or equal to upload_max_filesize
post_max_size = 40M

Electr000999
01-27-2014, 10:48
thx)