[PHP] uploading large files through php

2003-03-28 Thread Dimitar Haralanov
Hi, I have a script that allows the user to upload a file. Sometimes the files are going to be rather large (in the order of 60Mb). I know that this is very dangerous but only trusted users will be able to upload since they have to login through ssl and the entire session is

Re: [PHP] uploading large files through php

2003-03-28 Thread Larry E. Ullman
The problem that I am facing is that I can get the script/browser/php to pass such large file. I have modified the upload_max_size variable in php.ini to be larger the 60Mb but this still does not help! Is there any hard limitation that I am unaware of? You'll probably need to adjust the

Re: [PHP] uploading large files through php

2003-03-28 Thread Dimitar Haralanov
On Fri, 28 Mar 2003 12:39:10 -0500 Larry E. Ullman wrote: memory_limit = 8M ; Maximum amount of memory a script may consume (8MB) Does this mean that the content of the entire file will be stored in memory before it is written to disk? Thanx --

Re: [PHP] uploading large files through php

2003-03-28 Thread David T-G
Dimitar -- ...and then Dimitar Haralanov said... % % Hi, Hi! % ... % The problem that I am facing is that I can get the script/browser/php % to pass such large file. I have modified the upload_max_size variable in % php.ini to be larger the 60Mb but this still does not help!