摘要:
之前也是 Windows2008R2 安装 PHP7.3 很顺利,Win2008 IIS7.5安装配置PHP7.3.2步骤:https://www.cnblogs.com/kjcy8/p/10782839.html 这次是一样系统,换了一台机器 安装好命令行测试 php --version 提示缺少 阅读全文
摘要:
中国内地区域 VPC网络Windows实例的操作步骤: slmgr -skms kms.cloud.aliyuncs.com slmgr -ato 中国内地区域 经典网络Windows实例的操作步骤: slmgr -skms kms.aliyun-inc.com slmgr -ato 如果执行失败, 阅读全文
摘要:
原文链接:https://www.freebuf.com/column/235496.html 一、简述 floor报错注入是利用 select count(*),(floor(rand(0)*2)) x from users group by x这个相对固定的语句格式,导致的数据库报错。实际利用中 阅读全文
摘要:
wxml <radio-group name="question_1" bindchange="radioChange"> <label><radio value="1"/>1</label> <label><radio value="2"/>2</label> <label><radio valu 阅读全文
摘要:
fixed 定位到底部的时候,iphoneX底部的横条会挡住内容,解决办法如下: 加入下下样式 padding-bottom:calc(10px + env(safe-area-inset-bottom)/2); https://blog.csdn.net/weixin_44143279/artic 阅读全文
摘要:
Quill中文文档: https://kang-bing-kui.gitbook.io/quill/ 从基本使用到核心概念: https://juejin.cn/post/6918893948412887053 阅读全文
摘要:
现在 FileZilla Server 最新版 1.6.7,配置界面跟之前有点不一样了。 新版 FileZilla Server 用户目录采用挂载的方式,我刚开始配置的时候有 550 Couldn't open the file or directory 错误 下载地址:https://filezi 阅读全文
摘要:
命令行创建服务项: sc create 用法: sc <server> create [service name] [binPath= ] <option1> <option2>... 选项:注意: 选项名称包括等号,等号和值之间需要一个空格。 type= <own|share|interact|k 阅读全文
摘要:
安装Redis Redis官方并没有提供Windows版,现在的Windows版都民间大神修改版。 Redis5:https://github.com/tporadowski/redis/releases Redis6,7:https://github.com/zkteco-home/redis-w 阅读全文
摘要:
FFmpeg concat 这种方法成功率很高,但是需要 FFmpeg 1.1 以上版本。 先创建一个文本文件 list.txt: file '1.mp4' file '2.mp4' file '3.mp4' 然后: ffmpeg -f concat -safe 0 -i list.txt -c c 阅读全文