问题解决办法如下: 必须把下面两行注释放在/etc/init.d/redis文件靠前的注释中: # chkconfig:?? 2345 90 10 # description:? Redis is a persistent key-value database ????? ? ? 上面的注释的意思是...
分类:
其他好文 时间:
2014-09-28 18:46:26
阅读次数:
199
由于不同的sim卡对应不同的mccmnc, 导致min_match的值发生变化,
新的min_match值与之前phone_lookup表中保存的min_match不一直,导致无法匹配上。
修改如下:
1. 添加URI
修改ContactsProvider2.java,
private static final int PHONE_LOOKUP = 4000;
下面加...
分类:
移动开发 时间:
2014-09-28 18:00:44
阅读次数:
208
虚拟机克隆出来的CentOSLinux。。ifconfig...没有看到eth0.。然后重启网卡又报下面错误。故障现象:service network restartShutting down loopback insterface: ...
分类:
系统相关 时间:
2014-09-28 15:51:02
阅读次数:
226
# By default Redis does not run as a daemon. Use 'yes' if you need it.# Note that Redis will write a pid file in /var/run/redis.pid when daemonized.#R...
分类:
其他好文 时间:
2014-09-28 14:36:32
阅读次数:
215
用G++编译项目的时候发生标题上的错误,原因是,这是c++ 11标准的。在给g++传递命令行的时候加上-std=c++0x就行了。还需要在源码中#include我的cmakelists里面要这样改: set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x...
分类:
其他好文 时间:
2014-09-28 12:49:32
阅读次数:
1526
利用html5的canvas元素使用 JavaScript 在网页上绘制图像。
通过规定尺寸、颜色和位置,来绘制一个圆:
Your browser does not support the canvers element.
var c=document.getElementById("myCanvas");
var cxt=c.getContext("2d");
cxt....
分类:
Web程序 时间:
2014-09-28 00:45:50
阅读次数:
293
自己写的,在MVC框架里面可以直接使用!
/**
* @author F.Z.B
* @description 循环检测目录
*
* @param $dir
* @param string $split
*
* @return bool
*/
function chkDir($dir, $split = '/')
{
preg_match_all...
分类:
Web程序 时间:
2014-09-27 22:29:50
阅读次数:
199
使用log4j.xml进行log4j的配置,在项目中报如下异常:
log4j:ERROR The content of element type "log4j:configuration" must match "(renderer*,appender*,(category|logger)*,root?,categoryFactory?)"....
分类:
移动开发 时间:
2014-09-26 20:42:18
阅读次数:
371
In this DocumentPurposeQuestions and AnswersHow can users request a password reset?How does the Forgot your Password functionality work?How to impleme...
分类:
其他好文 时间:
2014-09-26 13:24:48
阅读次数:
392
1、编写界面<WebViewandroid:id="@+id/webview"android:layout_width="match_parent"android:layout_height="match_parent"/>2、申请权限<uses-permissionandroid:name="android.permission.INTERNET"/>3、MainActivity.javapackagecom.malakana.webview;importand..
分类:
移动开发 时间:
2014-09-26 01:45:48
阅读次数:
431