Tamaño máximo de archivos:
Hola, estoy configurando un tamaño máximo de archivos de 512000 kb (500 Mb) pero en la práctica, no suben archivos de más de 2Mb.
¿Cómo puedo corregir esto?
¿Cómo puedo corregir esto?
Customer files upload for PrestaShop - problem with file size
Hello,
Files upload module you use does not have any kind of "limit" related to file size. It depends on you what limit you will set. it is probably matter of your hosting settings, it blocks files that are larger than 2mb.
Usually, it is possible to alter configuration of the host with php ini file You need to set the value of upload_max_filesize and post_max_size in your php.ini, example for limit upload size to 10Mb
; Maximum allowed size for uploaded files.
upload_max_filesize = 10M
upload_max_filesize = 10M
; Must be greater than or equal to upload_max_filesize
post_max_size = 10M
post_max_size = 10M
0 comments:
Post a Comment