0

I got the following two errors when I open Sitecore 6.3 website in Visual Studio 4.0:

Error 1 The virtual path '/sitecore/shell/Applications/Analytics/ReportRunner/DateSelector.ascx' maps to another application, which is not allowed.
Error 2 Unknown server tag 'ds:DateSelector'.

I simply install Sitecore 6.3 (website save into c:/inetpub/wwwroot/sitecoresite/website). When I open this site in Visual Studio 4.0, it shows error.

Can any body tell to me how can I open this or what mistake did I make?

4

3 回答 3

1

据我了解您的问题,您在浏览新安装的 Sitecore 网站时收到错误消息,该网站设置为在 ASP.NET 4.0 应用程序池下运行。如果是这种情况,那么我应该通知您,从 6.4.0 版本开始支持在 ASP.NET 4.0 应用程序池下运行 Sitecore

所以,你有两个选择:

  • 设置您的应用程序池以使用 ASP.NET 2.0(确保已安装 .NET 2.0)
  • 将 Sitecore 实例升级到 6.4.0+(这可能是不可接受的)

希望这可以帮助。

于 2012-07-02T11:36:42.253 回答
0

我不确定您是否因为打开项目的方式而遇到问题,如果您将其作为文件系统网站项目打开,您将需要创建一个 Web 应用程序项目并从那里开始。

您可以查看这篇博文: 简化 Sitecore Visual Studio 项目创建(或以前的版本),了解有关如何为 Sitecore 正确设置 Visual Studio 项目的信息。

于 2012-07-02T11:55:12.763 回答
0

我实际上认为这可能就像缺少波浪号一样简单。所以宁愿拥有

/sitecore/shell/Applications/Analytics/ReportRunner/DateSelector.ascx

你应该有

~/sitecore/shell/Applications/Analytics/ReportRunner/DateSelector.ascx

于 2012-07-26T13:56:17.423 回答