windows下开发用的xampp集成的环境,想装个php-redis扩展,扩展的github地址:https://github.com/nicolasff/phpredis描述里找到windows下安装的过程:https://github.com/nicolasff/phpredis/issues...
分类:
Web程序 时间:
2014-05-11 23:02:42
阅读次数:
462
egrep命令等同于grep命令加上-E选项,它支持扩展的正则表达式。扩展正则表达式和基本正则表达式类似,不同之处在于增加了一些新功能,部分元字符的用法也略有不同:.:任意单个字符[]:指定范围内的任意单个字符[^]:取反*:匹配其前的字符0次、1次或多次?:0次或1次{m,n}:至..
分类:
其他好文 时间:
2014-05-09 07:01:10
阅读次数:
431
--转载时请保留下面,以供大家加我MSN,增强交流,共同学习.--姜庭华 msn:
jaimejth@live.cn--博客:http://blog.csdn.net/jaimejth软件下载在以下网站http://www.apachefriends.org/zh_cn/index.htmlXAMP...
分类:
其他好文 时间:
2014-05-08 15:36:13
阅读次数:
399
最近由于工作需要,在内网搭建HmaiServer邮件服务器及AfterLogic
webmail,所遇到的问题与解决办法与大家分享。 环境 xampp 1.8.2 windows 2003
在笔记本win7(连接互联网)上搭建HmaiServer邮件服务器...
分类:
Web程序 时间:
2014-05-07 14:31:03
阅读次数:
558
sudo wget
http://pecl.php.net/get/memcache-2.2.1.tgzsudo tar vxzf memcache-2.2.1.tgzcd
memcache-2.2.1/sudo /opt/lampp/bin/phpize./configure --with-php...
分类:
其他好文 时间:
2014-05-07 14:14:43
阅读次数:
275
xampp-linux-1.8.2
之前的版本不支持64位系统哦哦。首先,安装32位支持包下载地址:https://www.apachefriends.org/zh_cn/index.html解压压缩包到/opt/lampp下,启动LAMPP时提示不支持64,跟改方法如下:sudo
vi /opt/...
分类:
系统相关 时间:
2014-05-04 12:29:55
阅读次数:
405
找到\xampp\apache\conf\httpd.conf配置文件Access
forbidden!You don’t have permission to access the requested directory. There is
either no index document or ...
分类:
其他好文 时间:
2014-05-04 11:12:23
阅读次数:
336
1、首先停止正在运行的MySQL进程>net stop
mysql如未加载为服务,可直接在进程管理器或者服务中进行关闭。2、以安全模式启动MySQL进入mysql目录在命令行下运行>d:>cd
xampp/mysql/bin>mysqld.exe --skip-grant-tables3、完成以后就...
分类:
数据库 时间:
2014-05-01 08:33:41
阅读次数:
393
一、正则表达式的使用
cd /usr/share/dict
1、找出words文件下所有以a开头t结尾的单词
egrep "^a.*t$" words
2、匹配以abcde开头,以at结尾的单词
egrep "\" words
3、以大写字母开头,以t结尾
egrep "^[[:upper:]]t$" words
二、管道的使用
egrep "^a.*t$" words|wc -...
分类:
系统相关 时间:
2014-04-30 22:32:38
阅读次数:
372