Folks;
I have created a new entity for a specific purpose & all works well except Large File Uploads.
In the entity is an "attachment multiple" record type, that allows me to "attach" multiple media files to a record. Unless the file to attach is above 3.5 GB.
I have set php.ini so that upload_max_filesize = 50G, and restarted apache2.
I have set via Administration/Settings - Attachments Upload Max Size (Mb) to 500000.
When attaching a file over 4GB I get the following in my espoCRM log.
[2023-03-24 02:20:36] DEBUG: API (22003) SQLSTATE[22003]: Numeric value out of range: 1264 Out of range value for column 'size' at row 1; POST /Attachment; Input data: {"role":"Attachment","parentType":"Streaming"," fie ld":"rawMedia","name":"replay-service-01.mp4","type":"video/mp4","size":4147549241,"isBeingUploaded":true}; Route pattern: /{controller}; Route params: Array ( [controller] => Attachment [action] => create ) [] []
[2023-03-24 02:20:36] ERROR: (22003) SQLSTATE[22003]: Numeric value out of range: 1264 Out of range value for column 'size' at row 1; POST /Attachment; line: 70, file: /var/www/html/diausgroup/office.diausgroup.com/application/Espo/ORM/SqlExecutor.php [] []
I am wondering if I am:
a) Missing something in my entity or system configuration?
b) Hitting some sort of "coded" limit on file size uploads.
I would like to be able to upload multiple files between 10MB and 25GB to this entity.
Thanks in advance.
I have created a new entity for a specific purpose & all works well except Large File Uploads.
In the entity is an "attachment multiple" record type, that allows me to "attach" multiple media files to a record. Unless the file to attach is above 3.5 GB.
I have set php.ini so that upload_max_filesize = 50G, and restarted apache2.
I have set via Administration/Settings - Attachments Upload Max Size (Mb) to 500000.
When attaching a file over 4GB I get the following in my espoCRM log.
[2023-03-24 02:20:36] DEBUG: API (22003) SQLSTATE[22003]: Numeric value out of range: 1264 Out of range value for column 'size' at row 1; POST /Attachment; Input data: {"role":"Attachment","parentType":"Streaming"," fie ld":"rawMedia","name":"replay-service-01.mp4","type":"video/mp4","size":4147549241,"isBeingUploaded":true}; Route pattern: /{controller}; Route params: Array ( [controller] => Attachment [action] => create ) [] []
[2023-03-24 02:20:36] ERROR: (22003) SQLSTATE[22003]: Numeric value out of range: 1264 Out of range value for column 'size' at row 1; POST /Attachment; line: 70, file: /var/www/html/diausgroup/office.diausgroup.com/application/Espo/ORM/SqlExecutor.php [] []
I am wondering if I am:
a) Missing something in my entity or system configuration?
b) Hitting some sort of "coded" limit on file size uploads.
I would like to be able to upload multiple files between 10MB and 25GB to this entity.
Thanks in advance.
Comment