Page 1 of 1

Maximum allowed size of 2048 KB

Posted: 2017-06-16 01:22
by 99er510
I want to allow users to upload PDF files with a size of 4 or 5 MB, so when I click on 'file upload' as my choice in the 'media' tab, I make the maximum file size 7000kb. However, when I try to upload a 4MB file, I'm getting an error telling me that I've exceeded the maximum file size of 2048KB. Any suggestions? Is there someplace else that I need to set a file size, or is a setting on my server?

Thanks,
Rich

Re: Maximum allowed size of 2048 KB

Posted: 2017-06-16 07:37
by G Belgrado
Server settings

PHP settings "upload_max_filesize" set to 16M

Re: Maximum allowed size of 2048 KB

Posted: 2017-06-16 13:40
by bescott53
you need to create(use notepad) or amend the php.ini that sits on yourserver. If you input the following into it:

upload_max_filesize = 10M (change the 10M to any you need 10M = 10MB)

hope this helps

Bryan