Re: [PHP] Weird fileupload problem

2002-09-09 Thread Paul Nicholson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hey, http://php.net/manual/en/features.file-upload.php hmm.the "max_file_size" won't do anything - you should remove it. The post_max_size should be larger than the upload_max_filesize & you might just to check memory limit..that has to be la

Re: [PHP] Weird fileupload problem

2002-09-09 Thread Trond Arve Nordheim
On Mon, Sep 09, 2002 at 10:29:04AM -0400, Paul Nicholson wrote: > Hey, > First of all, you can *not* set the upload size via .htaccess. You have to > set it in httpd.conf or php.ini. And you need to use php_value instead of > php_flag. > >    php_value upload_max_filesize 8M > Actually, that

Re: [PHP] Weird fileupload problem

2002-09-09 Thread Paul Nicholson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hey, First of all, you can *not* set the upload size via .htaccess. You have to set it in httpd.conf or php.ini. And you need to use php_value instead of php_flag.    php_value upload_max_filesize 8M btw, this was discussed on the list within this

[PHP] Weird fileupload problem

2002-09-09 Thread Trond Arve Nordheim
Hi! I'm working on a simple file upload form here, where the user can upload large zip files containing images to be added to the selected image gallery... However, uploading large files seems to be a little problem.. Whenever I upload large files (the file I'm experimenting with is about 8MB) b