binggle's avatar

How to increase livewire max limit of file upload?

I can not use livewire for upload big file.

I tried to upload 2.3GB file but the uploadmanager gives me fail. 1.3GB file is pending.

I guess livewire allows under 2GB only.

How can I increase the maximum file size?

Even though I set max file upload size up to 20GB, still same.

https://imgur.com/a/iOr068B

// php.ini 
post_max_size = 20G 
upload_max_filesize = 20G
memory_limit = 20G
max_execution_time = 1800
max_input_time = 600 
// config/livewire.php

'temporary_file_upload' => [
    'rules' => ['file', 'max:20480000'],
]
// nginx.conf 
client_body_buffer_size 20480M;
 client_max_body_size 20G;

All not good results.

0 likes
0 replies

Please or to participate in this conversation.