http://stackoverflow.com/questions/786638/how-can-i-get-gzip-compression-in-iis7-working/787251 Look in c:\inetpub\logs\FailedReqLogFiles\w3svcx. You will see a bunch of files named fr000xx.xml. Open up any one of them in your browser. (By the way, i…
今天在windows7_x64上安装JDK的时候提示IllegalArgumentException:Invalid characters in hostname, 解决方法: 1.打开[控制面板\系统和安全\系统],点击[更改设置] 2.修改计算机名 3.重启计算机后再安装JDK(安装之前最好删除先前计算机中的残留文件)…
最近再看java,却被一个看似很基础的hellorworld头疼了十几分钟,百度了一下,若你在cmd下编辑及运行.java文件时报错,解决方案如下,如图所示:…
php的配置文件中有一行--with-mysql=/usr/local/mysql ,安装的时候提示:configure: error: Cannot find MySQL header files under yes.Note that the MySQL client library is not bundled anymore. 这是由于安装mysql时没有安装mysql头文件,或者是路径指定不正确,php找不到mysql的头文件引起的错误提示. 解决方法.1. 查看你的系统有没有安装my…
天在用link.EXE的LIB命令生成用于连接(LINK)使用的lib文件时提示:找不到mspdb80.dll. 原因:Microsoft Visual Studio\VC\Bin\下没有 “msobj80.dll,mspdb80.dll,mspdbcore.dll,mspdbsrv.exe”这四个文件 解决方法:从Common7\IDE \下复制这四个文件到VC\Bin\下即可.…
使用IIS托管应用程序时,当我们需要上传大文件(4MB以上)时,应用程序会提示Maximum request length exceeded的错误信息.该错误信息的翻译:超过最大请求长度. 解决方法: 使用IIS来托管应用程序,默认的上传文件大小为4MB.我们需要增加请求大小,在项目的Web.config配置文件中添加以下配置项信息: <configuration>    <system.web>        <httpRuntime maxRequestLength=&q…
安装rpm包时提示错误:依赖检测失败 解决方法: 命令末尾加上--nodeps --force…
使用Jenkins打包安卓项目时,报错并失败,错误信息: You have not accepted the license agreements of the following SDK components: [ConstraintLayout for Android 1.0.0-alpha9, Solver for ConstraintLayout 1.0.0-alpha9]. 开始以为是没装组件的原因,但是在android studio中安装了这两个组件依旧报这个错误. 解决方法: 到a…
目录 1 问题描述 2 解决方法一 (Cent OS 7中有效) 3 解决方法二 (Cent OS 7中无效) 1 问题描述 新申请了虚拟机, 系统版本是Cent OS 7.2. 在安装软件的过程中, 发现yum命令不能连接到远程仓库, 出现如下提示: [root@localhost ~]# yum install -y vim [root@localhost ~]# Error: cannot find a valid baseurl or repo:base/7/x86_64... 2 解决…