0

有没有人遇到过这个问题?

Uncaught ReferenceError: custom_fields is not defined

然后 MT 在文档中生成这个:

customizable_fields.push('customfield_start_date');
default_fields.push('customfield_start_date');
custom_fields.push('customfield_start_date'); ### ERROR HERE

customizable_fields.push('customfield_end_date');
default_fields.push('customfield_end_date');
custom_fields.push('customfield_end_date');

在页面加载时,我收到来自 FCKeditor 的警报,上面写着

Error: The TEXTAREA with id or name set to "editor-content-textarea" was not found

页面中甚至不存在文本区域。有什么建议么?

4

1 回答 1

0

Movable Type 4.31 及之前的版本在条目元数据管理方面存在问题。如果您在管理 Movable Type 实例时碰巧删除了自定义字段,这会导致 CMS 和发布过程中的许多地方出现问题。这在以下文档中进行了讨论:

http://bugs.movabletype.org/default.asp?102303 http://code.sixapart.com/trac/movabletype/changeset/4435 http://www.movabletype.org/documentation/appendices/release-notes/ 432.html

如果这是您最初的问题,升级到 MT 5.x 应该可以解决它。

最初的问题是关于将 Movable Type 升级到 Movable Type 4.32。目前尚不清楚 Movable Type 的先前版本是什么。那一点信息也可能对最初的问题很重要。

于 2011-05-05T04:41:06.077 回答