zoukankan      html  css  js  c++  java
  • Parser Error Message: Could not load file or assembly 'Telerik.Web.UI' or one of its dependencies.解决方法

    源码安装DotNetNuke的时候出现上述错误。

    具体错误信息为:

    Server Error in '/DotNetNuke' Application.
    --------------------------------------------------------------------------------

    Configuration Error
    Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

    Parser Error Message: Could not load file or assembly 'Telerik.Web.UI' or one of its dependencies. The system cannot find the file specified. (.../Website/web.config line 119)

    Source Error:

    Line 117:      <add name="Analytics" type="DotNetNuke.HttpModules.Analytics.AnalyticsModule, DotNetNuke.HttpModules"/>
    Line 118:      <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
    Line 119:      <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI" />
    Line 120:    </httpModules>
    Line 121:    <httpHandlers>

    /DNN522/Website/web.config    Line: 119


    --------------------------------------------------------------------------------
    Version Information: Microsoft .NET Framework Version:2.0.50727.3053; ASP.NET Version:2.0.50727.3053

    原因:

    没有找到Telerik的程序集,需要加载

    解决方案:

    将/webroot/dnn5.4.2_S/Library/Components/Telerik/bin下的Telerik.Web.UI.dll手动拷贝到/webroot/dnn5.4.2_S/Website/bin下即可解决问题。

    作者:xwdreamer
    欢迎任何形式的转载,但请务必注明出处。
    分享到:
  • 相关阅读:
    Python之迭代器,生成器
    Python函数--装饰器进阶
    Python之函数的本质、闭包、装饰器
    Python之函数--命名空间、作用域、global、nonlocal、函数的嵌套和作用域链
    Python函数的定义与调用、返回值、参数
    Python之文件操作
    Python之集合
    基本数据类型补充,深浅copy
    Python基础-元组、列表、字典
    Python常用模块(一)
  • 原文地址:https://www.cnblogs.com/xwdreamer/p/2297134.html
Copyright © 2011-2022 走看看