我正在尝试启动并运行一个EPiServer项目,但我得到了以下错误:
System.Reflection.ReflectionTypeLoadException: Unable to load one or more of the requested types. The following information may be a subset of the Type/LoaderException information present - inspect with debugger for complete view.
Check assemblies [EPiS
我正在使用EpiServer开发MVC站点。我使用这一教程创建了站点,一切看起来都很好,我在CMS/Admin中创建了站点,我可以打开CMS编辑,可以打开Commerce/Catalog,但是当我尝试打开COmmerce/Commerce Manager时,我得到了下一个错误:
Server Error in '/' Application.
Wrong value of probingPath attribute in episerver.framework/scanAssembly node: 'modulesbin'. Attribute value
我已经将一个数据库从EPiServer 5升级到6 R2。根据Microsoft SQL Server Management Studio中运行的脚本,当前数据库版本为'6103‘。然而,当我尝试访问网站时,我得到了以下错误(‘当前版本是6001'):以前,相同数据库的副本已经成功地与相同的网站运行(相同的web.config和其他文件相同(唯一的区别是连接字符串的数据库)。
Dynamic Data Store 6.2.267.1 can only be used with database version 6204, current version is 6001. Mak
我正在使用一些模拟的EPiServer属性来测试我的部分代码。当我更新这些属性时,我得到了一个异常。这是崩溃的代码行:
var englishContent = new PropertyXhtmlString {
Name = "EnglishOperationsMessage",
LongString = "Message content in english"};
下面是生成的异常:
SetUp : System.TypeInitializationException :
The type initializer for 'EPiSe
我试图将内容从我们的UAT服务器导入到我们的生产服务器。
生产数据库最初是从UAT数据库中克隆出来的,这两个代码库是相同的。
导出/导入时,我的过程实际上是直接的,首先:
然后我从UAT获得包含所有内容的最终文件(7MB+),然后进入生产阶段并选择以下内容:
单击“导入”时,我得到以下错误:
这就是我在错误日志中得到的信息:
2016-11-28 10:31:04,995 [5] ERROR EPiServer.Core.Transfer.TransferLogger: 10.5.3 Export/import error: Exception: Cannot be the same as d
我得到了这个错误:
Error 101 Assembly 'EPiServer.Web.WebControls, Version=6.1.379.0, Culture=neutral, PublicKeyToken=8fe83dea738b45b7' uses 'EPiServer, Version=6.1.379.0, Culture=neutral, PublicKeyToken=8fe83dea738b45b7' which has a higher version than referenced assembly 'EPiServer, Ve
在检出Subversion之后,我在编译EPiServer网络应用程序时遇到了问题。
我知道这个错误
编译器错误消息: CS1519:类、结构或接口成员声明中的无效令牌',‘
源错误:
Line 116: }
Line 117:
Line 118: public virtual EPiServer.Personalization.SubscriptionInfo, EPiServerSubscription Info {
Line 119: get {
Line 120: return ((EPiServer.Personali
我正在用社区开发EPiServer CMS 7 MVC站点。我试图获取和显示成员阿凡达(阿凡达物理存在于贡献文件文件夹)。这是我的代码:
var user = CurrentUser;
var image = user.GetPortraitUri(ImageSize.Huge).ToString();
可变图像获取值:
http://localhost:18000/EPiServerCommunity/Modules/ImageGallery/ImageHandler.ashx?imageId=7&thumbnailId=10
但是在视
我在EPiServer 7.5中遇到了很多以下错误:
[ArgumentException: An item with the same key has already been added.]
System.ThrowHelper.ThrowArgumentException(ExceptionResource resource) +52
System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add) +10925834
System.Collections.Ge
我试图更新论坛的主题如下,
EPiServer.Community.Forum.Topic topic = GetTopic();
EPiServer.Community.Forum.Topic topicClone = topic.CreateWritableClone() as EPiServer.Community.Forum.Topic;
UpdateForumTopic(topicClone);// Edit the forum topic (e.g. change body text etc.)
topicClone.Changed = topic.Changed; // T
我好像撞到了一堵墙,我无法通过。我已经从IIS 6移到IIS 7.5,并从cms 5升级到6。现在启动它时,我会得到以下异常。我确信我的web.config中缺少了一些东西,但我无法弄清楚它是什么。我们非常感谢所有的帮助。
System.TypeInitializationException: The type initializer for 'EPiServer.Security.PrincipalInfo' threw an exception. ---> System.NullReferenceException: Object reference not set
我有一个助手类,在我们向实例添加额外站点之前,它在EpiServer中工作得很好。现在我们添加了一个额外的站点,因为新的Startpage没有任何InsightsConfiguration.CoreStoriesConfig.CoreStories,所以助手将抛出一个空引用。
我试图重写下面的代码来解释这个空引用:
using EPiServer;
using EPiServer.Shell.ObjectEditing;
using EPiServer.Web;
using System.Collections.Generic;
namespace Digital.Site.Helpers.
我用过,
CommunitySystem.CurrentContext.DefaultSecurity.RemoveUser(IUser user);
删除用户。
不过,这一切都很顺利。但突然间,它出现了一个错误。而且它一直在发生。异常从抛出。
例外的细节如下,
System.Data.SqlClient.SqlException (0x80131904): Execution Timeout Expired. The timeout period elapsed prior to completion of the operation or the server is not respond
我是EPiServer新手,正在尝试从我创建的新闻列表中检索子新闻文章页面。我在网上找到的例子使用了Locate()方法,但是当我试图将Locate应用到我的代码时,就找不到它了。
这是我看过的一篇文章。
本质上,我只需要返回一个子文章列表作为一个新闻项目列表,所以我尝试的方法可能一开始就不正确。
无论如何,这是我使用using语句的当前模型。
using EPiServer;
using EPiServer.Core;
using EPiServer.DataAbstraction;
using EPiServer.DataAnnotations;
using EPiServer.Servi