telmiger
Posts: 61
|
| Posted: 11/01/2004, 7:27 PM |
|
I am using the upload function to upload big pdf files. If I try to upload files that are bigger than 2MB the record with my upload function acts like the file has been uploaded and the record form changes to the return form. But the file did not get uploaded.
File sizes below 2MB upload without any problems.
This happens even if I set the file size limit much larger.
Is there a way to correct this.
Tony
|
 |
 |
DonB
|
| Posted: 11/01/2004, 7:33 PM |
|
there are php.ini file settings which impose the maximum limit on file size.
I forget them offhand, but they are clearly marked in the php.ini comments.
There are two values, one specifically for file size and the other is
something like "max memory" as I recall.
The application values are "capped" by these ini values
--
DonB
http://www.gotodon.com/ccbth
"telmiger" <telmiger@forum.codecharge> wrote in message
news:54186fe9389501@news.codecharge.com...
> I am using the upload function to upload big pdf files. If I try to upload
files
> that are bigger than 2MB the record with my upload function acts like the
file
> has been uploaded and the record form changes to the return form. But the
file
> did not get uploaded.
>
> File sizes below 2MB upload without any problems.
>
> This happens even if I set the file size limit much larger.
>
> Is there a way to correct this.
>
> Tony
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
peterr
Posts: 5971
|
| Posted: 11/01/2004, 7:35 PM |
|
Yep, that previous post can be found at: http://forums.codecharge.com/posts.php?post_id=45289
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com |
 |
 |
telmiger
Posts: 61
|
| Posted: 11/01/2004, 8:05 PM |
|
Changing post_max_size and upload_max_filesize in php.ini did the trick
Thanks for your help
Tony Elmiger
|
 |
 |