I'm using summernote text editor and the default behaviour when uploading a file is to upload it as base64. So i decided to store these images in storage throught ajax and php, but when i pushed the changes to production, image upload failed becouse of Apache server configuration limiting ajax post to 50kb images (413 Request entity too large).
Then i tried to make an extra button in the summernote panel to upload the files throught form post action, but the page itself is wrapped by another form, so i can't nest it.
The main problem is that the website is in a shared hosting and i can't modify those apache values and they won't do it for me.
So my question is: Can i upload those images with something else?
Thanks.