2

我已经下载了最新版本的 DNN7(7.00.05) 并按照安装视频中的说明在 localhost 上正确配置了它,但是在从菜单项单击编辑页面时,我被重定向到主页。我已经多次重复安装过程来解决这个问题。但这个问题仍然出现在编辑页面功能上。现在令人沮丧。

有人有这个问题的解决方案吗??

4

3 回答 3

1

尝试以下解决方案

转到 web.config 并在下面找到<modules>部分<system.webServer>并添加以下键值。

<modules runAllManagedModulesForAllRequests="true" >

这将解决您的问题。

于 2013-04-15T11:41:14.307 回答
0

Nice Post, This is working Perfectly. I have added runAllManagedModulesForAllRequests="true" in web.config and my both issues(Edit Page & Add New Module) has been resolved. In my web.config I have added like this:-

<system.webServer>
  <modules runAllManagedModulesForAllRequests="true">
  ...
  </modules>
</system.webServer>
于 2013-07-17T22:17:35.747 回答
0

您可以尝试以下步骤来解决问题

  1. 在 IIS 的 ISAPI 中允许 4.0 版本
  2. 使用 localhost 将您的代码作为虚拟目录指向 IIS 中的网站
  3. 单击 IIS 中的网站,然后从 IIS 的浏览选项中选择编辑权限,然后从安全选项卡中向文件夹添加完全权限。
  4. 使用 IIS 中的管理网站选项重新启动实例并从 IIS 浏览

应该这样做!!!!

于 2014-09-03T12:51:11.957 回答