Home > Article > CMS Tutorial > What should I do if the phpcms editor does not display?
What should I do if the phpcms editor does not display? The phpcms website editor cannot be opened, and previously added articles cannot be edited?
1. First go to the official website to download the resource package (customize the editor navigation tool first, then customize and add the required functions before downloading)
Baidu Editor
2 , Upload to the default js file path of phpcms. The uploaded file path is as follows
\statics\js\ueditor\
3. Open /phpcms/libs/classes/form.class.php and find the following code:
if(!defined(‘EDITOR_INIT’)) { $str = ‘''; define(‘EDITOR_INIT’, 1); }
Replace with:
if(!defined(‘EDITOR_INIT’)) { $str = ‘''; $str .= ‘''; $str .= ‘''; define(‘EDITOR_INIT’, 1); } $str .= “'';
Code
Effect after modification
4. Open /statics/js/ueditor/editor_config.js and find the following code:
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开头的绝对路径)
Replace with:
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开头的绝对路径)
Just comment out the default "var tmp" and "URL" and replace them with the address of Baidu editor;
5. Modify the default width and height of the editor, Because the default editor of phpcms is not that big:
Find lines 112 and 113 in /statics/js/ueditor/editor_config.js,
//,initialFrameWidth:1000 //初始化编辑器宽度,默认1000 //,initialFrameHeight:320 //初始化编辑器高度,默认320
is replaced with:
,initialFrameWidth:655 //初始化编辑器宽度,默认1000 ,initialFrameHeight:400 //初始化编辑器高度,默认320
So , the editor will not be deformed when adding an article.
PHP Chinese website, a large number of free PHPCMS tutorials, welcome to learn online!
The above is the detailed content of What should I do if the phpcms editor does not display?. For more information, please follow other related articles on the PHP Chinese website!