After so many errors 400 on my site
https://www.annuncitoday.it/The solution was quite simple, it did not load .jpeg images
In tinyMceImageUploader.php oc-content\plugins\blog
LINE 39:
// Verify extension
if (!in_array(strtolower(pathinfo($temp['name'], PATHINFO_EXTENSION)), array("gif", "jpg", "png", "
jpeg"))) {
header("HTTP/1.1 400 Invalid extension.");
return;
}
I added , "
jpeg"
I hope it can be useful to someone