最近遇到这样一个怪现象,就是每次打开电脑输入密码,突然提示"User Profile Service 服务未能登录,无法加载用户配置文件",然后就没办法正常开机了,为什么会这样呢?其实,原因一般为Windows无法读取用户的配置文件,可以再重启一次,这样实在麻烦,治标不治本.了解到同事在清理文件的时候删除了/Users/TEMP/AppData/Roaming/下的一些文件.通过查阅大量资料并结合自己解决经验,现将自己解决经历及网上收集的解决办法整理如下,希望能帮助到某些有需要的朋友.
今天升级10.11后登陆appstore的时候发现报错了: this action could not be completed.try again 解决办法,终端敲入: sudo mkdir -p /Users/Shared sudo chown root:wheel /Users/Shared sudo chmod -R 1777 /Users/Shared 参考网址:http://www.cnet.com/news/itunes-crashing-with-access-privilege
错误提示:Create File遇到操作系统错误5(拒绝访问) 解决方案: 在所有程序-SQL Server 2012-"SQL Server 配置管理器",点击"SQL Server 服务",将右边的"SQL Server (MSSQLSERVER)"服务右键'属性'-->'登录选项卡',右击你的用户(如sa)属性,内置帐户选择"Local System",点击重新启动就OK了.
原文:无法安装MVC3,错误提示:安装KB2483190(vs10-kb2483190)出错 无法安装MVC3,错误提示:安装KB2483190(vs10-kb2483190)出错. 安装指导:" An update for Visual Studio 2010 that enables support for Razor syntax. (For details, see KnowledgeBase article 2483190.)" 解决1: 1.解压 MVC3安装文件,找到p
今天调试phalcon的一个接口时候碰到如下提示: Deprecated: mongogo::mongogo(): The Mongo class is deprecated, please use the MongoClient class in /***/db/mongo.php on line 10 经过一番搜寻,发现只要在出现提示错误语句的前面加上@即可关闭错误提示: 若想要关闭所有的错误提示,可在php文件中加入error_reporting(0); 参照:https://www.go