how can i upload images with content of post. In Quill js images storing as base64. It's perfect way to transport image but there is one little problem; ajax timout. So how can i upload image when adding it or when publishing. I hope i explained well.
--edit--
I already have a code that works fine with some limit. I'm transporting images with inline base64 images. Like;
<p>Some article & post</p>
<p><img src="data:image/jpeg;base64,R0lGODl..."></p>
<p>And some bla bla</p>
The main problem is when images get bigger also it's reaches the ajax limits + server limits. How can i get over this problem? How can i upload images in proper way.