Jump to content

How to stop users uploading -HUGE- files....


wombatvvv

Recommended Posts

Hi,

 

I'm pretty new to this, so apologies if there's some simple solution/misunderstanding.

 

It seems to me that when the user uploads a file, PHP pulls in the file into the temporary directory and then you can query it using the $_FILES array. Assuming I am correct so far, I have two questions:

 

1. Is there anyway to prevent the upload to the temporary folder based on file size? Seems to me a good way to overload a server to upload 10GB files, even if they are picked up as "errors" and deleted from the temp folder.

 

2. How long do files stay in the temporary folder? Does PHP delete them automatically, and if so, when?

 

Thanks.

Link to comment
https://forums.phpfreaks.com/topic/235044-how-to-stop-users-uploading-huge-files/
Share on other sites

you could also look in your php.ini file for something like max_upload_size... the default is set to 2M..

That will only prevent PHP from dealing with the file. It will still be transmitted to the server, occupying a worker thread the whole time.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.