3

我正在使用 Sitecore 7.0 rev 131127,当我尝试进入内容编辑器时,我收到以下错误:在此处输入图像描述

但是当我尝试转到其他模块(例如营销中心)时,它正在工作。

我尝试在 Sitecore.Social.config 上将以下值更改为 false,但它对我不起作用。

<!-- Is Profile updating at user login functionality enabled. -->
<setting name="Social.ProfileUpdating.EnableProfileUpdating" value="true" />

任何人都可以就此提出建议吗?

4

1 回答 1

1

如果我没记错的话,这是一个配置问题,即Lucene Index Configrations文件夹中的App_Config/Includes文件。很可能是Sitecore.ContentSearch.Lucene.DefaultIndexConfiguration.config在您的解决方案中创建的文件或自定义文件。

通常,当TypeConverter配置中缺少 a 时,您会看到这些类型的错误,因为您可以看到它在StackTrace. 例如,为了使索引正确转换,DateTime将这一行添加到DefaultIndexConfiguration.config文件中。确认以下行在您的*.DefaultIndexConfiguration.config文件中

<converter handlesType="System.DateTime" typeConverter="Sitecore.ContentSearch.LuceneProvider.Converters.IndexFieldDateTimeValueConverter, Sitecore.ContentSearch.LuceneProvider" />

还值得确定Field导致错误的原因。可能最近向模板添加了一个新字段,或者DateTime字段中的原始值的格式不正确,因为DateTimeSitecore 以ISO 8601格式存储其日期,即yyyyMMddThhmmss

于 2015-10-01T12:02:32.977 回答