Hi, I have a field in my admin for uploading files:
header.downloads:
name: downloads
type: list
style: vertical
label: Page Downloads
fields:
.text:
type: text
label: Download Button Text
style: vertical
.dl:
type: file
label: Add a file
accept: ["image/*", '.doc', '.docx', '.xls', '.xlsx', '.pdf']
style: vertical
destination: '@self'
multiple: false
limit: 1
filesize: 50
But when I upload anything over about 2mb (I didn’t find out the exact limit) it gives this error:
Unable to upload file filename.pdf: The uploaded file exceeds the max upload size
My php upload limit is like 200mb and I have other sites with CMS’s that easily upload 50mb+ files… am I doing something wrong?