Re: [CODE4LIB] Very large file uploads, PHP or possibly Perl

2007-02-09 Thread Andrew Darby
I haven't needed to upload such large files, but I wonder if using the ftp functions in php would bypass this problem: http://us3.php.net/manual/en/ref.ftp.php Andrew On 2/9/07, Thomas Dowling [EMAIL PROTECTED] wrote: I have always depended on the kindness of strange PHP gurus. I am trying

Re: [CODE4LIB] Very large file uploads, PHP or possibly Perl

2007-02-09 Thread Andrew Nagy
I have done large file uploads in PHP. Make sure you have the following set in php.ini: upload_max_filesize = some large size followed by M for megabyte or G for gigabyte file_uploads = on post_max_size = some large size Also, you can set these values through the set_ini function in PHP so

Re: [CODE4LIB] Very large file uploads, PHP or possibly Perl

2007-02-09 Thread Thomas Dowling
On 2/9/2007 11:50 AM, Jay Luker wrote: Pre-apologies if this suggestion is too duh, but have you confirmed that you updated the correct php.ini file? Bless you! This did the trick, and I can now upload really big files. And I defy anyone to find something too duh for me. :-) Yes indeed, as