PDA

View Full Version : what the heck is with all these security tokens stuff


TamCaVBoy3
10-28-2008, 05:16 PM
everything works fine in my forum except whenever i try to attach a zip file (around 180mb) then it shows the error, but when i try to upload a smaller zip file, it works fine, WTH? by the way, i allowed members to upload zip files up to 500mb !

iogames
10-28-2008, 05:22 PM
i allowed members to upload zip files up to 500mb !

WTH!?!?!

what contain those files?

p.s. I smell piracy

TamCaVBoy3
10-28-2008, 05:25 PM
it was just a test ! :) but the error is real !

nexialys
10-28-2008, 05:35 PM
Josh you're too close from your monitor, at 18 inches away it smells nothing...

iogames
10-28-2008, 05:35 PM
can I see the site to assets the problem?

snakes1100
10-28-2008, 08:14 PM
Unfortunately, you will never upload a file that size until you change both of these limits in php.ini and restart the webserver so they take effect.

post_max_size = 512M
upload_max_filesize = 512M

Im sure after that, you will run into a timeout issue as well, so then you will need to change at least the first and then the second listed settings below as php is going to timeout.

max_execution_time
max_input_time

You can find your current settings in phpinfo in the admincp, if its a vhost, they will never set it that high for you anyways, you'll need a VPS/Dedicated server.

TamCaVBoy3
10-28-2008, 10:42 PM
cool, thanks a lot snakes, that makes sense. i will check !