1.创建自己的404.html页面,并放于网站根目录.2.更改nginx.conf在http定义区域加入: fastcgi_intercept_errors on;3.更改nginx.conf(或单独的网站配置文件)在server 区域加入: error_page 404 /404.html 或者....
分类:
其他好文 时间:
2015-11-30 20:04:17
阅读次数:
159
go语言结构体相等性是通过结构体成员的相等来判断的。之前还在疑惑errors.New返回的结构体为什么会不相等,而且Read函数会返回io.EOF,很多例子代码都会把Read返回返回的error值来和io.EOF做比较,原来io.EOF是错误对象的指针,而不是错误对象本身。一个对象被实例化再多,他们...
分类:
编程语言 时间:
2015-11-28 23:08:18
阅读次数:
410
cvs报错问题汇总1. Q:CVS提交文件的一个问题,如果版本不一致,会出现如下情况:cvs commit: sticky tag `1.2' for file `abc.c' is not a branchcvs [commit aborted]: correct above errors fir...
分类:
其他好文 时间:
2015-11-25 19:27:05
阅读次数:
158
第一步:去除eclipse的JS验证:将windows->preference->Java Script->Validator->Errors/Warnings->Enable Javascript Sematic validation前面的勾去掉;第二步:右键项目 -> properties ->...
分类:
编程语言 时间:
2015-11-19 14:31:05
阅读次数:
103
idea 报错:Can't use Subversion command line client: svn. Errors found while svn working copies detection.1、卸载以前的svn客户端2、下载VisualSVN 下载地址:h...
分类:
其他好文 时间:
2015-11-16 15:17:54
阅读次数:
992
Apache服务器处理:ini_set('display_errors', 'Off');ini_set('memory_limit', -1); //-1 / 10240Mini_set("max_execution_time", 0);//ini_set('magic_quotes_gpc', ...
分类:
其他好文 时间:
2015-11-13 11:39:54
阅读次数:
262
导入项目到eclipse时,可能会出现the project cannot be built until build path errors are resolved的错误。 作者在写这个项目时,在build path中添加了他的机器里面lib目录下的一些包,这些被工程记录下来了。当你导入这个项目....
分类:
其他好文 时间:
2015-11-10 09:25:06
阅读次数:
346
错误报告如下:/*jadclipse*//*DECOMPILATIONREPORTDecompiledfrom:D:\MyEclipse8.5\Workspace1.0\credit_shulou\WebRoot\WEB-INF\lib\XmlSchema-1.4.7.jarTotaltime:0msJadreportedmessages/errors:Exitstatus:0Caughtexceptions:java.io.IOException:Cannotrunprogram"D:\com..
分类:
其他好文 时间:
2015-11-09 19:20:18
阅读次数:
401
当要push代码到git时,出现提示: error:failed to push some refs to ... Dealing with “non-fast-forward” errors From time to time you may encounter this error while pushing: $?git?push?origin?m...
分类:
其他好文 时间:
2015-11-09 12:55:15
阅读次数:
269
php.ini配置文件调优1.expose_phpoff2.register_globalsoff(重要,防止GET和POST变量自动注册为全局变量,一定要关闭)3.打开magic_quotes_gpc来防止SQL注入,重要!是防止SQL注入的重要手段,该参数将用户提交的SQL查询进行转换,如将‘转换为\‘。4.displayerrorsoff4.max_excut..
分类:
Web程序 时间:
2015-11-06 23:43:08
阅读次数:
411