[PHP] Re: [PHP-WIN] [PHP-NIX] File upload

2004-04-23 Thread Ragnar
Hi Vk, I tried this beforehand, but to no avail. The documentation also states that this form field entry does not overwrite the max_filesize_setting in php.ini, when uploading. so even if I set the hidden form field to 30MB and the .ini setting is 8MB the file will be rejected if it's over 8MB.

[PHP] Re: [PHP-WIN] [PHP-NIX] File upload

2004-04-23 Thread Viraj Kalinga Abayarathna
can you send me the fread() part of your script? and what is the OS you are tring this? any how i like to share my coding which I did few weeksback for one of my Windows buddy. Vk. Ragnar wrote: Hi Vk, I tried this beforehand, but to no avail. The documentation also states that this

[PHP] Re: [PHP-WIN] [PHP-NIX] File upload

2004-04-22 Thread Viraj Kalinga Abayarathna
are you uploading the file through a HTML form? if so check the FORM for the following hidden input field... input type=hidden name=MAX_FILE_SIZE value=2097152 increace the above value (in bytes) to a bit more value than your maximum file size you are tring to upload.