0

我在后端的管理菜单不再爆炸。我已经完成了 /js/ 文件夹中的所有文件权限,但没有运气。

当我从后端停用模块时出现问题。

我的萤火虫/火狐称之为错误:

TypeError: this.element.setAttribute is not a function
element.attachEvent("on" + actualEventName, responder);
prototype.js (linje 4536)

NS_ERROR_ILLEGAL_VALUE: Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIDOMXPathEvaluator.evaluate]
null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
prototype.js (linje 1724)

TypeError: element.attachEvent is not a function
element.attachEvent("on" + actualEventName, responder);
prototype.js (linje 4536)

TypeError: element.dispatchEvent is not a function
element.dispatchEvent(event);
prototype.js (linje 4619)

NS_ERROR_ILLEGAL_VALUE: Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIDOMXPathEvaluator.evaluate]
Selector._div.querySelector(this.expression);
prototype.js (linje 3222)

NS_ERROR_ILLEGAL_VALUE: Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIDOMXPathEvaluator.evaluate]
null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
prototype.js (linje 1724)

NS_ERROR_ILLEGAL_VALUE: Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIDOMXPathEvaluator.evaluate]
null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); 
4

2 回答 2

1

好像您安装了一个新模块。Magento 的管理导航栏是基于 JS 的,所以任何 Js 错误都会完全崩溃。您必须按照自己的方式处理 JS 代码并解决这些错误以使其再次运行。还要从 /media/js 目录中清除我们缓存的 JS 文件。

于 2012-10-22T20:17:28.690 回答
0

这是我禁用的模块的问题。它破坏了管理菜单,必须从数据库重新启用模块才能使其再次工作。这是mgt_amazingwysiwyg(如果有人想知道)

于 2012-10-25T18:20:17.630 回答