Uploading large image fails, no error is shown #479
-
when uploading an image, if it is over weight, nothing happens and no error is shown leaving the user clueless. I refer to image weight as being the amount of kb space required to store it. I generally aim under 100kb for website images - so load speed isnt affected as much. I cant find any setting except ImageUploadWidthMax: 640 is that image weight only set by php? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
Thank you for reporting this bug. File upload to the web server is limited by |
Beta Was this translation helpful? Give feedback.
-
Hi @markseu, |
Beta Was this translation helpful? Give feedback.
-
Can you test uploading a markdown file, do you get an "file format not supported" error message? |
Beta Was this translation helpful? Give feedback.
-
hi @markseu upload .md file gives error. i did a hard refresh after updating, got no errors from large files, but seems to be working fine now. |
Beta Was this translation helpful? Give feedback.
Thank you for reporting this bug.
File upload to the web server is limited by
upload_max_filesize
in yourphp.ini
file. It looks like files with a larger size were completely ignored on the client side, so that explains why there was no error message. Should be fixed now.