gpt4 book ai didi

javascript - NicEditor 图片上传

转载 作者:行者123 更新时间:2023-11-28 01:46:41 25 4
gpt4 key购买 nike

我使用 nicedit.js 作为我的网站内容编辑器。所以我想知道如何更改图片上传位置以及如何创建php文件来做到这一点。

有一个由 http://nicedit.com 给出的文件这是脚本:http://svn.nicedit.com//trunk/nicUpload/php/nicUpload.php

但是这不起作用。仍然显示消息“无法上传图片”。

最佳答案

这是我用 nicupload.php 所做的事情。找到这一行。定义你的路径。

define('NICUPLOAD_PATH', '../uploads');


if($_SERVER['REQUEST_METHOD']=='POST') { // Upload is complete

$file = $_FILES['image'];
$image = $file['tmp_name'];
$id = $file['name'];

$max_upload_size = ini_max_upload_size();
if(!$file) {
nicupload_error('Must be less than '.bytes_to_readable($max_upload_size));
}

$ext = strtolower(substr(strrchr($file['name'], '.'), 1));
@$size = getimagesize($image);
if(!$size || !in_array($ext, $nicupload_allowed_extensions)) {
nicupload_error('Invalid image file, must be a valid image less than '.bytes_to_readable($max_upload_size));
}

$filename = $id;
$path = NICUPLOAD_PATH.'/'.$filename; /*****Path must be set here*******/

if(!move_uploaded_file($image, $path)) {
nicupload_error('Server error, failed to move file');
}

$status = array();
$status['done'] = 1;
$status['width'] = $size[0];
$rp = realpath($path);
$status['url'] = NICUPLOAD_URI ."/".$id;


nicupload_output($status, false);
exit;
}

关于javascript - NicEditor 图片上传,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20210059/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com