Heim  >  Artikel  >  CMS-Tutorial  >  Was soll ich tun, wenn der PHPCMS-Editor nicht angezeigt wird?

Was soll ich tun, wenn der PHPCMS-Editor nicht angezeigt wird?

藏色散人
藏色散人Original
2020-02-04 10:41:262859Durchsuche

Was soll ich tun, wenn der PHPCMS-Editor nicht angezeigt wird?

phpcms编辑器不显示怎么办?phpcms网站编辑器出不来了,以前添加的文章也编辑不了?

1、先到官网下载资源包(先定制编辑器导航工具,自定义添加需要的功能再下载) 

百度编辑器 

2、上传到phpcms默认的js文件路径,上传后的文件路径如下 

\statics\js\ueditor\

3、打开/phpcms/libs/classes/form.class.php,找到如下代码: 

if(!defined(‘EDITOR_INIT’)) { 
$str = ‘''; 
define(‘EDITOR_INIT’, 1); 
}

替换成: 

if(!defined(‘EDITOR_INIT’)) { 
$str = ‘''; 
$str .= ‘''; 
$str .= ‘''; 
define(‘EDITOR_INIT’, 1); 
} 
$str .= “'';

代码 

修改后效果 

4、打开/statics/js/ueditor/editor_config.js,找到如下代码: 

var URL; 
/** 
* 此处配置写法适用于UEditor小组成员开发使用,外部部署用户请按照上述说明方式配置即可,建议保留下面两行,以兼容可在具体每个页面配置window.UEDITOR_HOME_URL的功能。 
*/ 
var tmp = location.protocol.indexOf(“file”)==-1 ? location.pathname : location.href; 
URL = window.UEDITOR_HOME_URL||tmp.substr(0,tmp.lastIndexOf(“\/”)+1).replace(“_examples/”,””).replace(“website/”,””);//这里你可以配置成ueditor目录在您网站的相对路径或者绝对路径(指以http开头的绝对路径)

替换成: 

var URL; 
var tmp = window.location.pathname, 
URL= “/statics/js/ueditor/” 
/** 
* 此处配置写法适用于UEditor小组成员开发使用,外部部署用户请按照上述说明方式配置即可,建议保留下面两行,以兼容可在具体每个页面配置window.UEDITOR_HOME_URL的功能。 
*/ 
/ar tmp = location.protocol.indexOf(“file”)==-1 ? location.pathname : location.href; 
//URL = window.UEDITOR_HOME_URL||tmp.substr(0,tmp.lastIndexOf(“\/”)+1).replace(“_examples/”,””).replace(“website/”,””);//这里你可以配置成ueditor目录在您网站的相对路径或者绝对路径(指以http开头的绝对路径)

就是把默认的“var tmp”和“URL”注释掉,换成百度编辑器的地址; 

5、修改编辑器默认宽度和高度,因为phpcms默认编辑器没有那么大: 

在/statics/js/ueditor/editor_config.js找到112、113行, 

//,initialFrameWidth:1000 //初始化编辑器宽度,默认1000 
//,initialFrameHeight:320 //初始化编辑器高度,默认320

替换成: 

,initialFrameWidth:655 //初始化编辑器宽度,默认1000 
,initialFrameHeight:400 //初始化编辑器高度,默认320

如此,在添加文章时,编辑器就不会变形。 

PHP中文网,大量的免费PHPCMS教程,欢迎在线学习!

Das obige ist der detaillierte Inhalt vonWas soll ich tun, wenn der PHPCMS-Editor nicht angezeigt wird?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn