我是Magento的新手,如果这是一个愚蠢的问题,请耐心等待。
我刚将Magento网站从一台服务器移动到另一台服务器。遵循在数据库,.htaccess和所有其他内容中更改基本URL的所有步骤。网站在新服务器上正常运行。
但是有几个问题。
我不确定这是否与第一个问题存在某种关系,但是当我登录后端并转到联系页面静态块时,内容框丢失如下:
我在控制台中看到了这些错误。
Uncaught SyntaxError: Unexpected token ILLEGAL fckeditor.html:58
Uncaught ReferenceError: FCKBrowserInfo is not defined fckeditor.html?InstanceName=block_content&Toolbar=Default:128
Uncaught ReferenceError: FCKConfig_LoadPageConfig is not defined fckeditor.html?InstanceName=block_content&Toolbar=Default:167
Uncaught ReferenceError: FCKTools is not defined fckeditor.html?InstanceName=block_content&Toolbar=Default:179
Uncaught ReferenceError: FCK_ContextMenu_Init is not defined fckeditor.html?InstanceName=block_content&Toolbar=Default:198
Uncaught ReferenceError: FCKLang is not defined fckeditor.html?InstanceName=block_content&Toolbar=Default:206
Uncaught ReferenceError: FCKBrowserInfo is not defined fckeditor.html?InstanceName=block_content&Toolbar=Default:334
Uncaught ReferenceError: InitializeAPI is not defined fckeditor.html?InstanceName=block_content&Toolbar=Default:214
我真的不确定如何开始对此进行故障排除。非常感谢任何帮助。
答案 0 :(得分:1)
问题出在此文件\js\fontis\fckeditor\editor\fckeditor.html
中。它试图回应一些来自PHP的JavaScript,但空间正在顺利进行。
从第87行开始
document.body.innerHTML = '\
<div style="border: 1px red solid; font-family: arial; font-size: 12px; color: red; padding:10px;">\
<p>\
<b>Your browser security settings don\'t allow FCKeditor to be opened from\
继续......这搞乱了javascript。我删除了所有空格,使其成为一个单行字符串,然后就可以了。
希望它有所帮助!