• 零点城市社交电商v1.6.2 NOAUTH Authentication required.

    零点城市社交电商微信小程序,在订单提交时,友情提示 Class 'think\cache\driver\Redis\ not found 是因为没有配置redis,找到../addons/weliam_areashop/source/thinkphp/library/think/cache/driver/Redis.php 在一看代码注释,Redis缓存驱动开发者尘缘,是我的朋友。 友情提示 NOAUTH Authentication required. 也是因为没有配置Redis缓存.
    作者:admin | 发布:
    Warning: Use of undefined constant Y年n月d日 - assumed 'Y年n月d日' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/index.php on line 19
    2019年12月13日 | 分类:微擎 | 阅读:449次 |
  • 零点城市社交电商v1.6.2 not support:redis

    小程序提示:友情提示 not support:redis 报错,是因为php扩展没有加redis支持插件 安装redis 缓存器即可  
    作者:admin | 发布:
    Warning: Use of undefined constant Y年n月d日 - assumed 'Y年n月d日' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/index.php on line 19
    2019年12月13日 | 分类:微擎 | 阅读:559次 |
  • IIS下部署SSL证书实现HTTPS

      HTTPS是以安全为目标的HTTP通道,简单讲是HTTP的安全版。谷歌已经制定了一项长远的计划,它的最终目标是将所有通过HTTP协议呈现的网页标为“不安全”,对于站长来说,部署SSL证书来迁移到HTTPS是一个现实和重要的问题,那么,对于IIS系统来说,如何部署SSL证书实现HTTPS协议呢?下面就讲述一下具体的实现方法。 IIS6 对于IIS6来说,支持PFX格式证书,下载包中包含PFX格式...
    作者:admin | 发布:
    Warning: Use of undefined constant Y年n月d日 - assumed 'Y年n月d日' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/index.php on line 19
    2019年12月01日 | 分类:其它 | 阅读:409次 |
  • 微信支付密钥获取

    微信公众号开发,需要提供如下物料: 公众号名称: 描述: 公众号账号: 原始ID: 类型:必须是认证账户,接入微信支付是认证服务号。 AppId: AppSecret: Oauth 2.0 在微信公众号请求用户网页授权之前,开发者需要先到公众平台网站的【开发者中心】网页服务中配置授权回调域名。 头像: 二维码: ----------------------------------------------------------------------...
    作者:admin | 发布:
    Warning: Use of undefined constant Y年n月d日 - assumed 'Y年n月d日' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/index.php on line 19
    2019年11月01日 | 分类:Wechat | 阅读:501次 |
  • 帝国网站管理系统(EmpireCMS)7.0以上后台密码更改

    网上有很多重置密码方法,但试了都不管用,使用小编的方法,在SQL库中插入代码: INSERT INTO `phome_enewsuser` (`userid`, `username`, `password`, `rnd`, `adminclass`, `groupid`, `checked`, `styleid`, `filelevel`, `salt`, `loginnum`, `lasttime`, `lastip`, `truename`, `email`, `classid`, `pretime`, `preip`, `addtime`, `addip`, `userprikey`, `salt2`, `...
    作者:admin | 发布:
    Warning: Use of undefined constant Y年n月d日 - assumed 'Y年n月d日' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/index.php on line 19
    2019年10月23日 | 分类:EmpireCMS | 阅读:514次 |
  • Thinkphp截取标题长度加省略号

    第一步 公共文件common.php创建msubstr方法,最新下新增: /** *+---------------------------------------------------------- * 字符串截取,支持中文和其他编码 *+---------------------------------------------------------- * @static * @access public *+---------------------------------------------------------- * @param string $str 需要转换的字符串 * @para...
    作者:admin | 发布:
    Warning: Use of undefined constant Y年n月d日 - assumed 'Y年n月d日' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/index.php on line 19
    2019年10月18日 | 分类:cltphp | 阅读:426次 |
  • macOS Mojave 10.14.6 取消默认4位密码

    升级到10.14.6版本后,密码必须是4位以上,太烦人了,找了好几天解决方法,终于找到如下方法: 打开终端输入: pwpolicy -clearaccountpolicies passwd 用户名 即可 下面这篇文章也会帮助你扩展思路:https://www.jiloc.com/45732.html
    作者:admin | 发布:
    Warning: Use of undefined constant Y年n月d日 - assumed 'Y年n月d日' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/index.php on line 19
    2019年9月18日 | 分类:Macos | 阅读:652次 |
  • centos7关闭防火墙

    有些人安装的linux的系统默认防火墙不是iptables,而是firewall,那就得使用以下方式关闭防火墙了。 >>>关闭防火墙 systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 >>>开启端口 firewall-cmd --zone=public --add-port=80/tcp --permanent 命令含义 --zone #作用域 --add-port=80/tcp #添加端...
    作者:admin | 发布:
    Warning: Use of undefined constant Y年n月d日 - assumed 'Y年n月d日' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/index.php on line 19
    2019年8月20日 | 分类:Linux | 阅读:610次 |
  • 中兴交换机5260-28PD-C

    单位的中兴交换机5250-28PC坏了,换了一台新的5260-28PD-C,但配置命令完全不同。 用户名:zxr10  密码:zxr10 开通接口POE: ZXR10(config)#poe ZXR10(config-poe)#interface gei-0/1/1/1 ZXR10(config-poe-if-gei-0/1/1/1)#enable  //默认供电功率配置为auto 每个接口进入单开,小编是新手没有找到批量开方法,但只开一次就可以了 查看端口供电情况: ZXR10(config-poe)#s...
    作者:admin | 发布:
    Warning: Use of undefined constant Y年n月d日 - assumed 'Y年n月d日' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/index.php on line 19
    2019年7月24日 | 分类:Zte | 阅读:832次 |
  • 向日葵远程控制

    经常用于远程协协,主要有:QQ(权限有很大限制,稳定性也差)、TeamViewer(要好于QQ远程协助,但国外的软件,我的IP就被封禁了,破解不了),下面推荐国产向日葵远程控制软件,支持Windows Mac Linux iOS Android     官网:https://sunlogin.oray.com/zh_CN/download/ 客户端:http://download.oray.com/sunlogin/windows/SunloginClient10.1.exe 控制端:http...
    作者:admin | 发布:
    Warning: Use of undefined constant Y年n月d日 - assumed 'Y年n月d日' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/index.php on line 19
    2019年7月22日 | 分类:其它 | 阅读:1,448次 |
  • 中兴交换机命名规则

    公司的一台中兴交换机5250-28PC坏了,需要更换,但该系列和升级型号有很多,不清楚中兴的交换机命名规则,看了下面的图之后,选了一台中兴 交换机 5260-28PD-C-1AC
    作者:admin | 发布:
    Warning: Use of undefined constant Y年n月d日 - assumed 'Y年n月d日' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/index.php on line 19
    2019年7月22日 | 分类:Zte | 阅读:686次 |