1. 程式人生 > >織夢DEDECMS百度編輯器Ueditor上傳圖片及下載遠端圖片無法加水印的解決方法

織夢DEDECMS百度編輯器Ueditor上傳圖片及下載遠端圖片無法加水印的解決方法

一、開啟 \include\ueditor\php\action_upload.php 找到

include "Uploader.class.php";

在下面新增:

require_once("../../common.inc.php");
require_once("../../image.func.php");

二、開啟 \include\ueditor\php\Uploader.class.php 找到

$this->stateInfo = $this->stateMap[0];

在124行左右,在它下面加上

@WaterImg($this->filePath, 'down');

在258行左右,在它下面加上

@WaterImg($filePath, 'down');

親測有效

織夢DEDECMS安裝百度編輯器ueditor的方法