2018年9月18日
摘要: https连接概述 阅读全文
posted @ 2018-09-18 23:39 降魔 阅读(565) 评论(0) 推荐(0) 编辑
  2018年9月9日
摘要: 参考地址:https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421140453 阅读全文
posted @ 2018-09-09 00:09 降魔 阅读(1047) 评论(0) 推荐(0) 编辑
  2018年9月6日
摘要: 安装环境:Ubuntu16 64位 1. sudo apt-get install rabbitmq-server 直接进行安装 (centos的话 sudo yum install rabbitmq-seaver) 2. sudo rabbitmq-plugins list 查看插件列表 3. s 阅读全文
posted @ 2018-09-06 21:34 降魔 阅读(127) 评论(0) 推荐(0) 编辑
  2018年8月14日
摘要: location /zui { proxy_pass http://localhost; #请求转向 } 注意:PHP代理PHP请求需要关闭php-fpm设置 阅读全文
posted @ 2018-08-14 17:15 降魔 阅读(101) 评论(0) 推荐(0) 编辑
  2018年8月9日
摘要: *用登陆code 换取 session_key (get) 请求地址: https://api.weixin.qq.com/sns/jscode2session ?appid=APPID &secret=SECRET &js_code=JSCODE &grant_type=authorization 阅读全文
posted @ 2018-08-09 14:55 降魔 阅读(1144) 评论(0) 推荐(0) 编辑
  2018年8月7日
摘要: location / { index index.html index.htm index.php l.php; autoindex on; } location /xxx1/x2 { index index.html index.htm index.php; try_files $uri $uri 阅读全文
posted @ 2018-08-07 16:30 降魔 阅读(1041) 评论(0) 推荐(0) 编辑
  2018年8月4日
摘要: location / { # First attempt to serve request as file, then # as directory, then fall back to displaying a 404. try_files $uri $uri/ =404; if (!-e $re 阅读全文
posted @ 2018-08-04 18:21 降魔 阅读(1256) 评论(0) 推荐(0) 编辑
  2018年7月30日
摘要: DB::connection()->enableQueryLog();#开启执行日志 $a = self::where(['investorid'=>$id])->whereBetween('inserttime',[$start,$end])->where('deposit','>',0)->orderBy('id','asc')->Paginate(20); print_r(DB::get... 阅读全文
posted @ 2018-07-30 13:44 降魔 阅读(18578) 评论(0) 推荐(0) 编辑
  2017年7月14日
摘要: 错误如图: 原因:上传文件过大 处理方法:修改php.ini文件的post_max_size 和 upload_max_size配置 (至少要比你上传的文件要大,也别打太大 不安全) 阅读全文
posted @ 2017-07-14 15:44 降魔 阅读(749) 评论(0) 推荐(0) 编辑
  2017年7月12日
摘要: laravel获取输入数据 获取已知key的数据 public function store(Request $request) { $name = $request->input('name'); $request->path(); //获取请求路径 if ($request->is('admin 阅读全文
posted @ 2017-07-12 11:36 降魔 阅读(693) 评论(0) 推荐(0) 编辑