Nicedit本地上传图片失败

时间:2012-09-30 14:40:20

标签: php javascript upload nicedit

这就是我打电话给编辑的方式:

new nicEditor({
           buttonList : ['bold','italic','underline','upload'],
           iconsPath:'img/nicedit.png',
           uploadURI : 'http://server.com/integracion/files/nicUpload.php'
}).panelInstance(textareaId);

.php文件存在(我是Docs中的那个,我更新了目标路径)

/* I want them here http://server.com/integracion/files/uploads/ so... */   
    define('NICUPLOAD_PATH', './uploads'); // Set the path (relative or absolute) to
                                              // the directory to save image files                  
    define('NICUPLOAD_URI', '/uploads');   // Set the URL (relative or absolute) to
                                              // the directory defined above

但是我在上传完成时回复(以及从nicedit发出警告......)

<script>
        try {
            top.nicUploadButton.statusCb({"error":"Invalid Upload ID"});
        } catch(e) { alert(e.message); }
    </script>

我错过了什么?

- 编辑

我认为问题可能出在php文件中:

$id = $_POST['APC_UPLOAD_PROGRESS'];  /* APC is installed and enabled */
if(empty($id)) {
    $id = $_GET['id'];
}

2 个答案:

答案 0 :(得分:19)

最终编辑:

我已成功完成这项工作!

以下是一个工作示例:
http://simplestudio.rs/yard/nicedit/

上传的图片将存储在此处:
http://simplestudio.rs/yard/nicedit/images/

以下是整个代码,只需将其解压缩并放在您的服务器上,主要是我需要调整nicEdit.js,因为它有一些问题。
http://simplestudio.rs/yard/nicedit/nicedit.rar

只需使用该js文件创建代码,并查看我的示例,它将起作用:)

如果您有任何意思,我会在这里解决它。

  • 我不会在我的服务器上删除此示例,以便每个有此问题的人都可以免费下载...

答案 1 :(得分:2)

负责图片上传的代码是方法uploadFile,它正在寻找uploadURI选项参数。

您需要修改onUploaded事件处理程序来解析自定义响应,而不是imgur的响应(sample)。默认情况下,它至少需要{"upload": { "links": {"original": "http://..."}, "image": {"width": "123" } }}

对不起,我无法帮助FormData()处理服务器端PHP。

有关更多信息,您可以使用Firebug或WebInspector尝试使用nicEdit web site上的演示页来窥探网络请求,当然还有源代码。