muk-it / muk_dms

MuK Document Management System
GNU Lesser General Public License v3.0
91 stars 144 forks source link

MUK DMS 12 - cannot store more than 25MB file #76

Closed asolano88 closed 5 years ago

asolano88 commented 5 years ago

Cannot store more than 25MB file.

In MUK DMS 11 - this was not an issue.

keshrath commented 5 years ago

Are you getting an error? Or have you simply not changed the setting, which is set to 25MB by default.

asolano88 commented 5 years ago

I have changed the File upload size setting to 100MB.

Once I upload a 68MB file or greater than 25MB, it will indicate that selected file size exceeded maximum of 25MB.

keshrath commented 5 years ago

https://github.com/muk-it/muk_web/commit/ce94517d8d63b76526f1d5a23601943b2f77bf51

asolano88 commented 5 years ago

Thank you. That solved the issue.

asolano88 commented 5 years ago

Hi Mathias,

First of all, thank you for your help. I just want to understand a little more in MUK DMS capabilities because we wanted to implement the system.

What is the effective file size that MUK DMS can handle?

I tried experimenting and with the following settings:

  1. Upload File Size 100MB

File size less than 70MB

I can upload effectively.

File size greater than 70MB.

The system crashed.

Is this something to do with the hardware, Odoo or the MUK DMS? Is there a recommend hardware that you can advice to us for the MUK DMS? Our approach is On-premise Odoo 12Community Edition.

Lastly, would you be able to give me some documentation that we can review the functionality and capabilities so that we can finalize the implementation next week?

Thanks and best regards, Allen

Sent from Mailhttps://go.microsoft.com/fwlink/?LinkId=550986 for Windows 10


From: Mathias Markl notifications@github.com Sent: Saturday, March 9, 2019 7:58:16 AM To: muk-it/muk_dms Cc: asolano88; Author Subject: Re: [muk-it/muk_dms] MUK DMS 12 - cannot store more than 25MB file (#76)

Closed #76https://github.com/muk-it/muk_dms/issues/76.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHubhttps://github.com/muk-it/muk_dms/issues/76#event-2191452862, or mute the threadhttps://github.com/notifications/unsubscribe-auth/At2I9ScvAbhRwAu3ZNOgZCNIIdx6983wks5vUvkYgaJpZM4bmTpe.

keshrath commented 5 years ago

The biggest limitation for this is the Odoo Binary Field and the Odoo Framework itself. This internally uses base64 for files and no streams. This means you have to be able to convert the file to base64 and this is sometimes a problem with larger files.

asolano88 commented 5 years ago

Noted.

Thank you and best regards, Allen

On 9 Mar 2019, at 6:49 PM, Mathias Markl notifications@github.com<mailto:notifications@github.com> wrote:

The biggest limitation for this is the Odoo Binary Field and the Odoo Framework itself. This internally uses base64 for files and no streams. This means you have to be able to convert the file to base64 and this is sometimes a problem with larger files.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHubhttps://github.com/muk-it/muk_dms/issues/76#issuecomment-471166549, or mute the threadhttps://github.com/notifications/unsubscribe-auth/At2I9Yq67OzD1Lo_WEkO8K4IfOaLqH_Gks5vU5HOgaJpZM4bmTpe.

JDSalcedo commented 3 years ago

Thanks @keshrath for your amazing work, I already note that this issue is present in v13 too.