最近新安装了win7。搭建好了环境,运行程序,发现以前用的aspx居然报错出现如下错误:HTTP 错误 404.3 – Not Found由于扩展配置问题而无法提供您请求的页面。如果该页面是脚本,请添加处理程序。如果应下载文件,请添加 MIME 映射。其实在IIS7中肯定能支持的的,只是我们在Win...
分类:
Web程序 时间:
2014-10-14 20:15:29
阅读次数:
253
系统环境是win7(64bit)+python3.4(64bit)+numpy1.82+vs20121.假设用sourceforge上编译好的32bit的exe安装,会提示‘python version ** required,which was not found in the registry’...
分类:
其他好文 时间:
2014-10-14 19:37:15
阅读次数:
268
今天 工程 中 用到了 libxml2.framwork 这个库 使用中 报错 “'libxml/tree.h' file not found”解决的 办法 是 从网上 谷歌到的 使用后 完美解决办法:Header Search Paths 增加一条 :${SDKROOT}/usr/include/...
分类:
其他好文 时间:
2014-10-14 17:27:58
阅读次数:
181
5 Answersactive oldest votesup vote 57 down voteacceptedIt sounds like you recently updated GitHub application and Git Shell is now broken.Short versionTo fix itclose Git Shellopen GitHub and let it d...
分类:
其他好文 时间:
2014-10-14 15:01:48
阅读次数:
537
拒绝原因:Additionally, we found that your app requires the installation of another app before it can be used, which is not in compliance with the App Stor...
分类:
移动开发 时间:
2014-10-14 13:57:58
阅读次数:
206
审核 加急:https://developer.apple.com/appstore/contact/?topic=expedite原因:We found a serious problem, our application is collapse phenomenon, poor brings t...
分类:
移动开发 时间:
2014-10-13 20:47:47
阅读次数:
179
在安装一些包的时候,遇到g++:command not found error,这是由于系统缺失相对应的包 工具/原料CentOS64 方法/步骤在发现该错误时,先在系统中确认是否缺失相对应的包:rpm -qa | grep "g++"在确认系统未安装之后,查询可安装的相对应的功能的包:yum .....
分类:
其他好文 时间:
2014-10-13 19:55:47
阅读次数:
205
当打开引入jQuery脚本的页面时,在Chrome的控制台中报了“GET http://localhost/libs/jquery.min.map 404 (Not Found)”的错误。刚开始以为是Chrome安装插件导致的错误,可是把引入换成jQuery开发版本时,错误就不见了。并且只有Chro...
分类:
Web程序 时间:
2014-10-13 18:37:26
阅读次数:
168
我有这样的一个小算法,把数组中的所有的偶数或技术分别选择出来。很多人可能,会循环这个数组,而我恰恰不循环数组就能做到这一点,代码如下。
function odd($var)
{
// returns whether the input integer is odd
return($var & 1);
}
function even($var)
{
// ret...
分类:
编程语言 时间:
2014-10-13 18:06:39
阅读次数:
230