摘要: 1.phonegap 2.APICloud 3.AppCan 4.Weex 5.WeX5 阅读全文
posted @ 2018-09-22 20:55 liuyp99999 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 安装pdo时遇到 --with-pdo-mysql 这个要指向mysql安装目录;可是我这台机器不安装mysql; 解决方法: [root@localhost app]# yum install mysql-devel 在次检测编译 ./configure --with-php-config=/us 阅读全文
posted @ 2018-07-31 14:51 liuyp99999 阅读(912) 评论(0) 推荐(0) 编辑
摘要: [root@localhost Ladmin]# php artisan key:generate [Symfony\Component\Debug\Exception\FatalThrowableError] Class 'Barryvdh\Debugbar\ServiceProvider' no 阅读全文
posted @ 2018-07-30 15:18 liuyp99999 阅读(484) 评论(0) 推荐(0) 编辑
摘要: 安装: 1.获取redis资源 wget http://download.redis.io/releases/redis-4.0.8.tar.gz2.解压 tar xzvf redis-4.0.8.tar.gz3.安装 cd redis-4.0.8 make cd src make install 阅读全文
posted @ 2018-07-28 19:18 liuyp99999 阅读(123) 评论(0) 推荐(0) 编辑
摘要: php启动脚本 #开机启动脚本,脚本代码来自网络,实测有效 #! /bin/sh # Comments to support chkconfig on CentOS set -e PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/us 阅读全文
posted @ 2018-07-28 18:10 liuyp99999 阅读(817) 评论(0) 推荐(0) 编辑
摘要: Restarting nginxd (via systemctl): Warning: nginxd.service changed on disk. Run 'systemctl daemon-reload' to reload units. Job for nginxd.service fail 阅读全文
posted @ 2018-07-28 15:38 liuyp99999 阅读(1857) 评论(0) 推荐(1) 编辑
摘要: checking size of long int... (cached) 8configure: error: Cannot find ldap libraries in /usr/lib.解决: ./configure php的时候出现下面错误而退出configure: error: Canno 阅读全文
posted @ 2018-07-28 12:34 liuyp99999 阅读(2082) 评论(0) 推荐(0) 编辑
摘要: yum install epel-release //扩展包更新包 阅读全文
posted @ 2018-07-28 12:24 liuyp99999 阅读(139) 评论(0) 推荐(0) 编辑
摘要: Redis各特性的应用场景 Strings Strings 数据结构是简单的key-value类型,value其实不仅是String,也可以是数字。 常用方法 方法 说明 特性 set 设置key对应的的值为String类型的value get 获取对应key对应的String的值,如果不存在返回n 阅读全文
posted @ 2018-07-25 20:01 liuyp99999 阅读(270) 评论(0) 推荐(0) 编辑
摘要: vim /root/runscript/cut_nginx_log.sh #!/bin/bash# nginx日志切割脚本# This script run at 00:00logs_path="/usr/local/nginx/logs/"target_path="/usr/local/nginx 阅读全文
posted @ 2018-07-19 14:10 liuyp99999 阅读(159) 评论(0) 推荐(0) 编辑