编辑器Ueditor找不到临时文件解决办法

Ueditor上传图片的时候总是提示找不到临时文件,上传不成功!

解决办法:
UEditor/ueditor/php/ 目录有个Uploader.class.php的文件,其中upfile()方法如下:

/**
 * 上传文件的主处理方法
 * @return mixed
 */private function upFile(){
    $file = $this->file = $_FILES[$this->fileField];    if (!$file) {        $this->stateInfo = $this->getStateInfo("ERROR_FILE_NOT_FOUND");        return;
    }    if ($this->file['error']) {        $this->stateInfo = $this->getStateInfo($file['error']);        return;
    }else if (!file_exists($file['tmp_name'])) {        $this->stateInfo = $this->getStateInfo("ERROR_TMP_FILE_NOT_FOUND");        return;
    } else if (!is_uploaded_file($file['tmp_name'])) {        $this->stateInfo = $this->getStateInfo("ERROR_TMPFILE");        return;
    } 
    $this->oriName = $file['name'];    $this->fileSize = $file['size'];    $this->fileType = $this->getFileExt();    $this->fullName = $this->getFullName();    $this->filePath = $this->getFilePath();    $this->fileName = $this->getFileName();
    $dirname = dirname($this->filePath); 
    //检查文件大小是否超出限制
    if (!$this->checkSize()) {        $this->stateInfo = $this->getStateInfo("ERROR_SIZE_EXCEED");        return;
    } 
    //检查是否不允许的文件格式
    if (!$this->checkType()) {        $this->stateInfo = $this->getStateInfo("ERROR_TYPE_NOT_ALLOWED");        return;
    } 
    // 创建目录失败
    if (!file_exists($dirname) && !mkdir($dirname, 0777, true)) {        $this->stateInfo = $this->getStateInfo("ERROR_CREATE_DIR");        return;
    } else if (!is_writeable($dirname)) {        $this->stateInfo = $this->getStateInfo("ERROR_DIR_NOT_WRITEABLE");        return;
    } 
    // 移动文件
    if (!(move_uploaded_file($file["tmp_name"], $this->filePath) && file_exists($this->filePath))) { //移动失败
        $this->stateInfo = $this->getStateInfo("ERROR_FILE_MOVE");
    } else { //移动成功
        $this->stateInfo = $this->stateMap[0];
    } 
    if( Typecho_Widget::widget('Widget_Options')->plugin('UEditor')->upyun )
    {        $this->upload2upyun($this->filePath, $this->fullName);
    }
}

将判断临时文件的部分注释掉:

/* else if (!file_exists($file['tmp_name'])) {
            $this->stateInfo = $this->getStateInfo("ERROR_TMP_FILE_NOT_FOUND");
            return;
        } else if (!is_uploaded_file($file['tmp_name'])) {
            $this->stateInfo = $this->getStateInfo("ERROR_TMPFILE");
            return;
        }*/


延伸阅读:

    无相关信息
标签:

上一篇:Apache设置禁止访问网站目录

下一篇:纠结好几天终于解决 站点绑多个域名禁止收录非主域名

留言与评论(共有 0 条评论)
   
验证码: