码迷,mamicode.com
首页 >  
搜索关键字:please    ( 3193个结果
linux安装curl出错
今天配置一台server的php支持curl的时候, 出现如下报错checking for cURL in default path... not foundconfigure: error: Please reinstall the libcurl distribution -easy.h sho...
分类:Web程序   时间:2015-01-05 16:23:51    阅读次数:153
PHP编译过程中常见错误信息的解决方法
checking for BZip2 support… yes checking for BZip2 in default path… not found configure: error: Please reinstall the BZip2 distributionFix:yum install...
分类:Web程序   时间:2015-01-05 16:17:15    阅读次数:158
整数划分问题
描述 Given two positive integers N and M, please divide N into several integers A1, A2, ..., Ak (k >= 1), so that: 1. 0 2. A1 + A2 + ... + Ak = N; 3. A1, A2, ..., Ak are different with each oth...
分类:其他好文   时间:2015-01-05 13:04:23    阅读次数:121
Mac OS中, android stuido升级提示Connection failed. Please check your network connection and try again
在Mac系统中,安装android studio的正式版本是1.01的 如果直接在界面中点击check update,会弹出如下提示 Connection failed. Please check your network connection and try again 网传的一些方法过于繁琐,有一个临时替代的解决方案如下 1. Finder里, shift+command+...
分类:移动开发   时间:2015-01-03 18:41:01    阅读次数:174
1~n的阶乘递归算法
递归算法学习:1~n的阶乘递归算法#include int fun(int n){ if(n>1) return n*fun(n-1); else return 1;}int main(){ int num; printf("Please input a number:");...
分类:编程语言   时间:2015-01-02 23:33:06    阅读次数:242
mysql 安装-编码
mysql的安装过程相对较为简单,在这里就不阐述,我想说的问题是,关于编码的安装,在安装到达'Please select the default character set'的时候,选择'Manul selected default character set/collation',并指定通用的.....
分类:数据库   时间:2015-01-02 22:21:52    阅读次数:262
解决IIS7中出现An error occurred on the server when processing the URL错误提示的方法
在IIS7上配置一个asp程序,出现了一个错如提示:An error occurred on the server when processing the URL. Please contact the system administrator.If you are the system admin...
分类:Web程序   时间:2015-01-02 12:09:19    阅读次数:126
MyEclipse中消除frame引起的“the file XXX can not be found.Please check the location and try again.”的错误
读者如要转载,请标明出处和作者名,谢谢。地址01:http://space.itpub.net/25851087地址02:http://www.cnblogs.com/zjrodger/作者名:zjrodger【环境】MyEclipse 10.7【问题描述】在一个页面上使用了frameset,因为该...
分类:系统相关   时间:2014-12-31 18:11:06    阅读次数:2017
Nginx报错:Sorry, the page you are looking for is currently unavailable. Please try again later.
查看了进程, nginx, php-fpm都在运行, 排除程序错误, 那么就是配置的问题了.一个可能的错误, 是由于配置中的fastcgi_pass 配置错了错误的配置如下server { listen 80; server_name localhost; #cha...
分类:其他好文   时间:2014-12-30 20:24:41    阅读次数:3066
mcrypt.h not found. Please reinstall libmcrypt
在centos上对php5.6进行源码安装的时候, 出现了如题所示错误提示, 原因是由于centos源不能安装libmcrypt-devel,由于版权的原因没有自带mcrypt的包解决办法使用php mcrypt 前必须先安装Libmcryptlibmcrypt源码安装方法:cd /usr/loca...
分类:其他好文   时间:2014-12-30 11:26:29    阅读次数:185
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!