Привет, я использую редактор Froala, и я могу сохранить содержимое в своей базе данных, сейчас я просто пытаюсь загрузить изображения на свой сервер, но мне не повезло, пока мой единственный вывод: «Что-то пошло не так, попробуйте еще раз» здесь мой код
<body>
<div id="editor"></div>
</body>
<script>$(function() {
$('#editor').froalaEditor({
// Set the image upload URL.
imageUploadURL: 'save.php',
imageUploadParams: {
id: 'my_editor'
}
})
});</script>
На моем save.php
// Allowed extentions.
$allowedExts = array("gif", "jpeg", "jpg", "png");
// Get filename.
$temp = explode(".", $_FILES["my_editor"]["name"]);
// Get extension.
$extension = end($temp);
// An image check is being done in the editor but it is best to
// check that again on the server side.
// Do not use $_FILES["file"]["type"] as it can be easily forged.
$finfo = finfo_open(FILEINFO_MIME_TYPE);
$mime = finfo_file($finfo, $_FILES["my_editor"]["tmp_name"]);
if ((($mime == "image/gif")
|| ($mime == "image/jpeg")
|| ($mime == "image/pjpeg")
|| ($mime == "image/x-png")
|| ($mime == "image/png"))
&& in_array($extension, $allowedExts)) {
// Generate new random name.
$name = sha1(microtime()) . "." . $extension;
// Save file in the uploads folder.
move_uploaded_file($_FILES["my_editor"]["tmp_name"], getcwd() . "/upload_image/" . $name);
// Generate response.
$response = new StdClass;
$response->link = "/upload_image/" . $name;
echo stripslashes(json_encode($response));
}
Я пытаюсь сохранить загруженные файлы в папку на моем сервере с именем upload_image.
Задача ещё не решена.
Других решений пока нет …