I am trying to send images (base64) to my backend via php post. Images smaller than 600kb work just fine but images above 600kb result in an empty post value.
These are my php.ini stats
post_max_size = 16M
upload_max_filesize = 16M
memory_limit = 64M
content_length of 2.33M results in a fail when the content_length is somewhere around 0.20M does what it is supposed to do
Does anybody know how i can upload images larger than 600kb?