Could not load the assembly 'DotNetNuke.Authentication.LiveID'. Make sure that it is compiled before

今天发生一个莫名的错误:Could not load the assembly 'DotNetNuke.Authentication.LiveID'. Make sure that it is compiled before,在网上找了下有如下的解释:

My understanding and perhaps a core member would be willing to correct me if I'm wrong but.....

Back in the day when there was just one package and one package only quite often people would accidently overwrite their web.config not realizing that they needed information like the connection string and machine keys (and other custom settings). The upgrade package prevents that from happening.

Below are my steps when upgrading a site:

  1. I use a program called WinMerge that will show the differences in a file and compare my web.config against the release.config. I
  2. In WinMerge I copy the connection string and machine keys over to the release.config along with any other custom changes I've made.
  3. Save the changed release.config and close WinMerge
  4. Rename the web.config do something different and rename release.config to web.confg
  5. Hit the site and let the upgrade run.

This way I've caught any changes that might not necesarily be able to be programmed into the web.config when the site is running.

(原文位于http://www.dotnetnuke.com/Community/Forums/tabid/795/forumid/108/threadid/179053/scope/posts/threadpage/1/Default.aspx)

但不能解决问题,下面是另一篇(原文:http://www.dotnetnuke.com/Community/Forums/tabid/795/forumid/-1/threadid/193000/scope/posts/Default.aspx)

There should be a providers folder in your bin directory. If you look the install files you downloaded you should find the .zip files for both in the Install/Package directory. It sounds like they failed when they went to install but you can still install them manually if you want to use them under Host->Host Settings->Authentication Services. Are you using an ObjectQualifier or running the database as the user account instead of .dbo? I know there was a problem with one of the sql procedures with 4.6.0 and 4.6.2 but I thought it had been fixed for 4.7.0 and 4.8.0.

但我用的是4.7.0呀,怎么会还有问题呢?恰好4.8.0推出,下载升级包后按http://www.cnblogs.com/m2land/archive/2007/10/09/910414.html文中所将升级后,问题解决。

转载于:https://www.cnblogs.com/GDLMO/archive/2007/12/29/1020164.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/381671.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

详细讲解Java中log4j的使用方法

详细讲解Java中log4j的使用方法 作者: 网络 来源: 日期: 2008-1-3 23:40:24 1、Log4j是什么? Log4j可以帮助调试(有时候debug是发挥不了作 用的)和分析,要下载和了解更具体的内容,还是访问其官方网站吧: ht…

HDU 1402——A * B Problem Plus

题意&#xff1a; 给定a&#xff0c;b&#xff0c;求a*b。 思路&#xff1a; a,b的长度都为50000&#xff0c;直接模拟计算n*m肯定超时&#xff0c;可以用快速傅里叶变化计算&#xff0c;然后再把相应的系数化简出来。 code&#xff1a; #include <iostream> #inclu…

随机广告图片

1<script language”JavaScript”>2var imageList newArray;3imageList[0] “image1.jpg”;4imageList[1] “image2.jpg”;5imageList[2] “image3.jpg”;6imageList[3] “image4.jpg”;7var urlList newArray;8urlList[0] “http://some.host/”;9urlList[1] “http://a…

HDU 4609——3-idiots

题意&#xff1a; 给定n个数&#xff0c;随机从这n个数中取3个数&#xff0c;问能组成三角形的概率是多少&#xff1f; 思路&#xff1a; 首先把统计这n个数出现的个数&#xff0c;那么会得到一个向量&#xff0c;这个向量的自我的乘积就是a[i]a[j]的可能的方案数&#xff0…

HDU 5730——Shell Necklace

题意&#xff1a; 一段长为i的项链有a[i]中装饰方法&#xff0c;问长度为n的项链有多少种装饰方式。 思路&#xff1a; 容易推出&#xff0c;dp[i]∑dp[j]*a[i-j],(1<j<i-1)那么这样就刚好符合卷积的运算&#xff0c;这样就可以愉快地使用fft了&#xff0c;不过数量级…

Core IO学习心得

最近看Core IO的内容&#xff0c;有一些心得给大家共享一下&#xff1a; Core IO作为微软IT基础架构优化框架中的一个部分。该框架包含三个部分&#xff1a;CIO&#xff0c;BPIO和APIO&#xff1a; CIO&#xff08;核心基础架构优化&#xff09;专注于核心基础机构组件&#x…

经典算法研究系列:十、从头到尾彻底理解傅里叶变换算法、上

经典算法研究系列&#xff1a;十、从头到尾彻底理解傅里叶变换算法、上 作者&#xff1a;July、dznlong 二零一一年二月二十日 推荐阅读&#xff1a;The Scientist and Engineers Guide to Digital Signal Processing&#xff0c;By Steven W. Smith, Ph.D。此书地址&#xf…

flash调用js中的方法,让js传递变量给flash (兼容 IE FF) (转)

前几天发表了 将FlashVars写在JS函数中&#xff0c;实现与后台的实时变量更新&#xff0c;但是仅支持 IE&#xff0c;随后与 Luckyer 进行了交流&#xff0c;发现用 SetVariable 可以很方便的实现多浏览器兼容。举例如下。html 页中的 JavaScript 函数&#xff1a;function Get…

经典算法研究系列:十、从头到尾彻底理解傅里叶变换算法、下

经典算法研究系列&#xff1a;十、从头到尾彻底理解傅里叶变换算法、下 作者&#xff1a;July、dznlong 二零一一年二月二十二日 推荐阅读&#xff1a;The Scientist and Engineers Guide to Digital Signal Processing&#xff0c;By Steven W. Smith, Ph.D。此书地址&#…

调出sharepoint错误的详细页面

记录一个小技巧&#xff1a; 在开发sharepoint的时候经常出现" An unexpected error has occurred."的页面&#xff0c;让人非常的郁闷。 打开web.config, 找到&#xff1a; <SafeMode MaxControls"200" CallStack"false" DirectFileDepende…

UVA 12298——Super Poker II

题意&#xff1a; 给定一些扑克牌&#xff0c;问这些扑克牌选四色能组成n的方案数&#xff0c;其中遗失了c张牌&#xff0c;这c张不能用&#xff0c;问n从a到b的方案数。 思路&#xff1a; 分析每一种花色&#xff0c;那么每种花色组成的方案数即为x^1x^2x^3x^5&#xff08;…

ERP词汇

我是一个很挑剔的人&#xff0c;当然是对自己&#xff0c;也对我的程序&#xff0c;我喜欢让自己的程序尽可能的完美&#xff0c;当然也包括了命名。 我很重视命名的规范性&#xff0c;也更喜欢别人去遵守共同的命名规范&#xff0c;这样的代码是自解释的&#xff0c;我可以不用…

2016CCPC网络赛赛后总结——回顾与反思

今天的比赛是特别遗憾的一场&#xff0c;如果能多出一题&#xff0c;或许是一个相反的场面&#xff0c;但是&#xff0c;实力就到这里了&#xff0c;瓶颈了&#xff0c;再假设如果毫无意义&#xff0c;一切都是我们平时不严格的训练和懈怠自己造成的&#xff0c;或许说起来难听…

Visual Studio Team System 2008 Team Suite 简体中文正式版

http://www.microsoft.com/downloads/details.aspx?displaylangzh-cn&FamilyIDd95598d7-aa6e-4f24-82e3-81570c5384cb#filelist 这是什么&#xff1f;*** 转载于:https://www.cnblogs.com/zxsoft/archive/2008/02/17/1071038.html

HDU 5832——A water problem 2016CCPC网络赛1001

题意&#xff1a; 给定一个数&#xff0c;问该数是否能够对10001取摸&#xff0c;能够就YES&#xff0c;否则为NO。 思路&#xff1a; 和题目样&#xff0c;水题&#xff0c;直接取摸即可。 code&#xff1a; #include <bits/stdc.h> using namespace std;char s[10…

职业生涯中12个最致命的想法

1、总觉得自己不够好  这种人虽然聪明、有历练&#xff0c;但是一旦被提拔&#xff0c;反而毫无自信&#xff0c;觉得自己不胜任。4、无条件地回避冲突  这种人一般会不惜一切代价&#xff0c;避免冲突。一位本来应当为部属据理力争的主管&#xff0c;为了回避冲突&#xf…

ASP.NET刷新页面的六种方法

ASP.NET刷新页面的六种方法 第一&#xff1a; private void Button1_Click( object sender, System.EventArgs e ) { Response.Redirect( Request.Url.ToString( ) ); } 第二&#xff1a; private void Button2_Click( object sender, System.EventArgs e ) { Response.Wri…

HDU 5842—— Lweb and String CCPC 网络赛 1011

题意&#xff1a; 按字母出现的顺序编号&#xff0c;问最长上升子序列。 思路&#xff1a; 最长为26&#xff0c;出现一个新的字母就加上&#xff0c;答案为字母的种数&#xff0c;无聊的题目。 code&#xff1a; #include <cstdio> #include <cstring> #inc…

LA 3458——Bridge

题意&#xff1a; 建设一座大桥&#xff0c;在桥上建若干个塔&#xff0c;塔高为H&#xff0c;相邻两塔间的距离不能超过D&#xff0c;桥长度为B&#xff0c;线的总长度为L&#xff0c;桥之间的绳索为对称抛物线&#xff0c;问建最少塔的时候的线索的最下端的离地高度y 思路&…

虚拟机照样飞速跑Windows Server2008

今晚下Windows Server2008的镜像下下来了&#xff0c;装在VM上了。给它分配了1G的内存&#xff0c;运行&#xff0c;速度真不错&#xff0c;比现在用的开发的机器的速度要快许多。真爽哟&#xff01;本本是Dell D630,Intel Core2 双核 T7250,2G内存。装的Vista系统&#xff0c;…