Deprecated: Function Redis::delete() is deprecated

Deprecated: Function Redis::delete() is deprecated
阅读全文

redis中hget方法传参规范问题

This is converted to "[object Object]" by using .toString() now and will return an error from v.3.0 on.
阅读全文

thinkcmf 1.6.0版本从sql注入到任意代码执行

1.恶意注册用户文件application\User\Controller\LoginController.class.php 方法 dologin请求验证码的URL为http://xx.target.com/index.php?g=api&m=checkcode&a=index&length=2&font_size=14&width=100&am
阅读全文

Apache禁止或允许固定IP访问特定目录、文件、URL

1. 禁止访问某些文件/目录增加Files选项来控制,比如要不允许访问 .inc 扩展名的文件,保护php类库:<Files ~ "\.inc$">Order allow,denyDeny from all</Files>2.禁止访问某些指定的目录:(可以用 来进行正则匹配)<Directory ~ "^/v
阅读全文

PHP Fatal error: Class 'Memcache' not found in

  • 孟帅
  • 2019-09-08 16:34:33
  • PHP
  • PHP
安装了memcached和php的memcache的扩展,PHPinfo()也支持了memcache,但是放在项目中就提示Class"Memcache" not found,最后发现php7.3装的是memcached,多节点的然后更换了php7.1重新配置了memcache之后正常运行
阅读全文

php报错:Cannot redeclare class 提示的解决方法

  • 孟帅
  • 2019-08-28 11:18:35
  • PHP
  • PHP
1.重复包含相同的类文件:例如:对于某个类文件zuimoban.php,在a.php中view plaincopy to clipboardprint?include "zuimoban.php";  在b.php中view plaincopy to clipboardprint?include "a.php";  i
阅读全文

centos7 安装kangle+easypane

感谢http://www.osyum.com 本文对所有用到的脚本做了一个总结#安装包脚本yum update -y;yum install wget -y;wget http://www.osyum.com/yum/eprpm.sh -O ep.sh;sh ep.sh#挂载home盘 轻量主机需要 (kvm架构)mount /dev/vda1 /home #php5.3wge
阅读全文

云豹直播系统搭建流程

云豹直播系统搭建流程
阅读全文

php-redis Deprecated: Function Redis::setTimeout() is deprecated in

Deprecated:  Function Redis::setTimeout() is deprecated inDeprecated 意思是不推荐,但仍然可以使用,是级别最低的报错这是php7.0版本以后redis的错误提示关闭此类报错只需到php.ini 修改参数 error_reporting = E_ALL &~E_NOTICE &~E_DEPRECA
阅读全文

启动 node 监听端口 , 外网无法访问

模拟启动文件var http = require('http');http.createServer(function(req,res){res.writeHead(200,{'Content-Type':'text/plain'});res.end('Hello body!');}).listen(19967);console.lo
阅读全文