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
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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.