NicEditor图像上传



我使用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;
}

相关内容

  • 没有找到相关文章

最新更新