у меня есть простой код, использующий плагин TinyMCE, он работает нормально, но когда я загружаю изображение, подобное изображению ниже , оно показывает, что есть загруженный файл
код:
<?php
// Allowed origins to upload images
$accepted_origins = array("http://localhost");
// Images upload path
$imageFolder = "/uploads/images/";
reset($_FILES);
$temp = current($_FILES);
if (is_uploaded_file($temp['tmp_name'])) {
if (isset($_SERVER['HTTP_ORIGIN'])) {
// Same-origin requests won't set an origin. If the origin is set, it must be valid.
if (in_array($_SERVER['HTTP_ORIGIN'], $accepted_origins)) {
header('Access-Control-Allow-Origin: ' . $_SERVER['HTTP_ORIGIN']);
} else {
header("HTTP/1.1 403 Origin Denied");
return;
}
}
// Sanitize input
if (preg_match("/([^\w\s\d\-_~,;:\[\]\(\).])|([\.]{2,})/", $temp['name'])) {
header("HTTP/1.1 400 Invalid file name.");
return;
}
// Verify extension
if (!in_array(strtolower(pathinfo($temp['name'], PATHINFO_EXTENSION)), array("gif", "jpg", "jpeg", "png"))) {
header("HTTP/1.1 400 Invalid extension.");
return;
}
// Accept upload if there was no origin, or if it is an accepted origin
$filetowrite = $imageFolder . $temp['name'];
move_uploaded_file($temp['tmp_name'], $filetowrite);
// Respond to the successful upload with JSON.
echo json_encode(array('location' => $filetowrite));
} else {
// Notify editor that the upload failed
header("HTTP/1.1 500 Server Error");
}
?>
, но когда я вхожу во временный файл, я не могу найти изображение, даже если я даю ему полное разрешение, и размер файла 124kb, и моя php .ini настройка:
;;;;;;;;;;;;;;;; ; File Uploads ; ;;;;;;;;;;;;;;;;
; Whether to allow HTTP file uploads. ; http://php.net/file-uploads file_uploads = On
; Temporary directory for HTTP uploaded files (will use system default if not ; specified). ; http://php.net/upload-tmp-dir ;upload_tmp_dir =
; Maximum allowed size for uploaded files. ; http://php.net/upload-max-filesize upload_max_filesize = 3M
; Maximum number of files that can be uploaded via a single request max_file_uploads = 20