gpt4 book ai didi

php - NicEdit:图片上传到自己的服务器不起作用 -> 配置错误?

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:06:06 24 4
gpt4 key购买 nike

更准确地说,我对文本区域的 nicEditor 有疑问;图片上传按钮。

我的文件 index.php 包含调用 nicEditor 的位置。在同一个文件夹中还有另外两个文件夹:“images”,我想在其中存储文件,“includes”,其中包含 nicEdit.js 和 nicUpload.php(其中包含官方网站提供的上传代码)。

我的问题是:当我想通过 nicEdit 上传图片时,出现错误消息“上传图片失败”。出现,虽然我已经设置了以下参数:

  • 在 nicEdit.js 中,nicURI 设置为“includes/nicUpload.php”
  • 在 nicUpload.php 中,NICUPLOAD_PATH 定义为“./images”,NICUPLOAD_URI 定义为“images”(我在这里尝试了其他几种组合,但似乎都不起作用)
  • 文件夹“images”的权限为 777

我浪费了几个小时来尝试和错误,但我并没有得到任何积极的结果......

[编辑]:

当我上传一个更大的文件时,我可以看到上传栏正在进行中,但是一旦完成,就会出现“上传图片失败”

nicEdit.js 中的代码包括:

var nicUploadButton=nicEditorAdvancedButton.extend({nicURI:'includes/nicUpload.php',errorText:"Failed to upload image",addPane:function ......

最佳答案

Solution Simple!!!

1 - 创建文件 image.php 并粘贴代码:

<?php
//Check if we are getting the image
if(isset($_FILES['image'])){
//Get the image array of details
$img = $_FILES['image'];
//The new path of the uploaded image, rand is just used for the sake of it
$path = "upload/" . rand().$img["name"];
//Move the file to our new path
move_uploaded_file($img['tmp_name'],$path);
//Get image info, reuiqred to biuld the JSON object
$data = getimagesize($path);
//The direct link to the uploaded image, this might varyu depending on your script location
$link = "http://$_SERVER[HTTP_HOST]"."/nicedit/".$path;
//Here we are constructing the JSON Object
$res = array("upload" => array(
"links" => array("original" => $link),
"image" => array("width" => $data[0],
"height" => $data[1]
)
));
//echo out the response :)
echo json_encode($res);
}
?>

2 - 打开并编辑 nickedit.js:

Find the line starting like nicURI:"http://api.imgur.com/2/upload.json" 
Replace it with

nicURI:"image.php"


DONE ! Now try uploading something and it would go directly to your server :)

字体: http://manzzup.blogspot.com.br/2014/03/customize-nicedit-image-upload-to.html

关于php - NicEdit:图片上传到自己的服务器不起作用 -> 配置错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12697664/

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