上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页

2016年6月3日

摘要: 1、安装redis 下载:wget --no-check-certificate https://github.com/nicolasff/phpredis/archive/2.2.4.tar.gz tar zxvf phpredis-2.2.4.tar.gz #解压 cd phpredis-2.2 阅读全文
posted @ 2016-06-03 16:31 studyphp 阅读(174) 评论(0) 推荐(0) 编辑

2016年4月15日

摘要: 1、crontab 编辑“crontab -e # m h dom mon dow command30 18 * * * lynx -dump http://admin.koala.xxx 30 18 * * * lynx -dump http://admin.koala.xxx 30 18 * * 阅读全文
posted @ 2016-04-15 11:08 studyphp 阅读(260) 评论(0) 推荐(0) 编辑

2016年4月10日

摘要: $t1 = microtime(true); //...要执行的代码$t2 = microtime(true); echo '耗时'.round($t2-$t1,3).'秒'; 阅读全文
posted @ 2016-04-10 00:44 studyphp 阅读(353) 评论(0) 推荐(0) 编辑

2016年3月22日

摘要: 1、vi nginx.conf 找到http {}中log_foramt ,定义post 日志格式 有日志demo形式,可根据自己需要配置日志格式。 2、在location php 解析{}中加入记录日志 access_log /opt/log/post.log post_log; 保存。重启即可 阅读全文
posted @ 2016-03-22 11:21 studyphp 阅读(1528) 评论(0) 推荐(0) 编辑

2016年3月15日

摘要:       阅读全文
posted @ 2016-03-15 11:06 studyphp 阅读(2954) 评论(0) 推荐(0) 编辑

2016年3月7日

摘要: 前几日要写微信支付接口,微信支付接口CURL地址是HTTPS。本机测试的是OK的,但是服务器缺提示错误--“ Protocol https not supported or disabled in libcurl”; 纠结了半天是因为curl不支持https ,并且在phpinfo 中查看 curl 阅读全文
posted @ 2016-03-07 14:42 studyphp 阅读(785) 评论(0) 推荐(0) 编辑

2016年3月5日

摘要: public function changeCoverName(){ //$type = '考研'; //$coverPath = './Public/course_cover/kaoyan/'; $type = '四六级'; $coverPath = './Public/course_cover/ 阅读全文
posted @ 2016-03-05 12:02 studyphp 阅读(650) 评论(0) 推荐(0) 编辑

2016年3月3日

摘要: 1、登录mysql客户端 mysql -u root -p 输入密码进入 2、生成 sql 语句文件 SELECT CONCAT('TRUNCATE TABLE ',TABLE_NAME,';') into outfile '/home/truncatetable.sql' FROM informa 阅读全文
posted @ 2016-03-03 11:33 studyphp 阅读(1149) 评论(0) 推荐(0) 编辑

2016年1月24日

摘要: nginx 下conf/nginx.conf 或者自己的vhosts更改以前的参数location/{root html;indexindex.htmlindex.htmindex.php;try_files$uri/index.php$uri;if(!-e$request_filename)... 阅读全文
posted @ 2016-01-24 15:56 studyphp 阅读(536) 评论(0) 推荐(0) 编辑

2015年12月21日

摘要: 公司有三台机器在机房,因为IP不够用,肯定要分出来,所以要建立单IP 多域名的反向代理,就是当请求www.abc.com 跳转到本机, 请求www.bbc.com 跳转到192.168.0.35 机器上去,前提 192.168.0.35 装了nginx和php环境。#vi /usr/local/ng... 阅读全文
posted @ 2015-12-21 12:50 studyphp 阅读(628) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页

导航