Increase upload size on VM


(Huy Le Nguyen) #1

Hello,

I’m currently trying out a few things using the latest version of the Virtual Machine using VirtualBox. Is there any way to increase the max upload file size? I’m getting a 512 on uploading a 5mb file, even with the Global Preferences set to 10M

Cheers,
Huy


#2

Hi @bobbington, have you checked your PHP setting? It could be because the file max size impose by PHP. Check your php.ini and find the following directives:

; Maximum allowed size for uploaded files.
upload_max_filesize = xxM

; Must be greater than or equal to upload_max_filesize
post_max_size = xxM

Hope that helps.