PDA

View Full Version : File Size Limit



KBC
October 31st, 2002, 11:52
I was wondering if there was a good CGI/PHP script which can restrict directory sizes in my hosting account...example...

I create a folder called "Test" for a friend and I want the max size limit to be 3MB, is there anyway of doing this, so that people can't upload more than 3MB?

Regards.

YUPAPA
October 31st, 2002, 12:25
Yes.

Method 1, create a temporary directory. Stat the size of the file. Check to see if that is over 3MB, delete... otherwise move to the 'test' directory.

Method 2, while uploading the file, keep track of the bytes you are writing to the file... if the bytes are over 3MB, exit the program.

KBC
November 1st, 2002, 13:30
O-K Thanks.:D