set-cookie 失败

This Set-Cookie was blocked because it was not sent over a secure-connection and would have overwritten a cookie with Secure attribute当HTTPS下有了一个Cookie后,再想在同域名的HTTP站点下写入Cookie[...]

chrome浏览器访问http网址自动跳转https

chrome浏览器只要之前有”访问网站域名有做访问http网址自动跳转https处理“的历史记录,后面再通过http访问确实会有”访问http网址自动跳转https“问题,解决方法:1.地址栏输入: chrome://net-internals/#hsts2.在打开的页面Query HSTS/PKP domain处输入域名搜索3.找到底部Delet[...]

centos 7 安装python3.9

查看当前python版本 python -V编译安装新版本下载源代码 https://www.python.org/ftp/python/创建安装目录 mkdir -p /usr/local/python3检测 ./configure --prefix=/usr/local/python3安装 make && make instal[...]

MockingBrid 安装

来源项目地址:https://github.com/babysor/MockingBirdpip指定源(阿里云):-i https://mirrors.aliyun.com/pypi/simple/

ueditor编辑器,多图多文件上传后,顺序乱掉的处理方法

/dialogs/attachment/attachment.js文件1.将 _this.fileList.push(json); 修改为 _this.fileList[$file.index()] = json;2.修改getInsertList 方法为:getInsertList: function () { var i, link, [...]