FriendsOfCake / cakephp-upload

CakePHP: Handle file uploading sans ridiculous automagic
https://cakephp-upload.readthedocs.io/
MIT License
551 stars 255 forks source link

Size limit #431

Closed michelef closed 7 years ago

michelef commented 7 years ago

is there a size limit to the file. I can upload small pdf less than 1MB but larger files fail with no error

michelef commented 7 years ago

I changed in the table to

 $this->addBehavior('Josegonzalez/Upload.Upload', [
        'attachment' => [
            'fields' => [
                 'dir' => 'attachments', // defaults to `dir`
                 'maxSize' => '102097152',
             ],
        ],
    ]);
michelef commented 7 years ago

What I ended up doing is increase file size in php.ini But still wandering why the above does not work Thanks

jorisvaesen commented 7 years ago

Changing the option in the plugin does not change the php.ini setting. The setting in the plugin allows you to set the max file size lower than the php.ini's setting for a particular upload.

michelef commented 7 years ago

Thanks! I had misunderstood the function of the option. Thanks also for a great plugin.