快速解决浏览器访问http或者不安全https 地址栏出现不安全或者Not secure
在2018 年开始 google 浏览器 开始对 http 所有的网址都做出了 不安全的提示 ,如
这样的话 让很多 http的网址显得很“不安全”
在对外展示的时候,不禁给客户留下不好的印象
...
uniapp和php后端跨域的解决方案
服务器端api加如下代码:
// 告诉浏览器,只允许 http://bb.aaa.com:9000 这个源请求服务器,可以为*
$request->header('Access-Control-Allow-Origin: *');
...
sass报错以及npm start报端口8080被占用错误的解决方法
sass安装
1、首次安装,首先在命令提示符全局安装:
npm install sass -g
2,在vue终端敲下面代码(电脑上之前全局安装过Sass,不需要第一步操作,直接在项目上安装依赖)
npm insta...
win11 24h2跳过TPM2.0和CPU限制的两种方法
方法一:Quick_11_iso_esd_wim_TPM_toggle.bat 脚本
https://github.com/AveYo/MediaCreationTool.bat/tree/main/bypass11
方法二:借助rufus
https://rufus.ie/zh/
参考:https...
phpmailer和swiftmailer发信SMTP
<?php
//require 'PHPMailer/src/Exception.php';
//require 'PHPMailer/src/PHPMailer.php';
//require 'PHPMailer/src/SMTP.php';
use PHPMailer\PHPMa...
rust项目rustc版本不够报错
错误信息:
error: package `hashbrown v0.13.2` cannot be built because it requires rustc 1.61.0 or newer, while the currently active rustc version is 1.59.0
错误 提示是因为ru...
windows下的 curl 和 openssl
https://curl.se/
http://curl.haxx.se/ca/cacert.pem
https://blog.csdn.net/m0_37477061/article/details/80861828
https://openssl-library.org/source/index.html
OpenSSL Bin...
cloudflare 的 turnstile 人机验证集成方法php
如何集成 Cloudflare Turnstile
将 Cloudflare Turnstile 集成到您的网站中相对简单,以下是基本步骤:
第一步:注册并获取 API 密钥
首先,您需要注册一个 Cloudflare 帐号,并获取 Tu...
Ubuntu 24.04安装和open-vm-tools以及共享文件夹
vmware虚拟机安装ubuntu 24 卡安装界面解决方法,将内存至少设置为4GB(4096MB)即可,安装完后再调为2GB
sudo -su
sudo apt-get install open-vm-tools open-vm-tools-desktop
可...
PHP安装imagick扩展(windows x64)
1.下载imagick
下载地址
ImageMagick – Download
下载电脑版本相对的64/32位,最新的版本
2.安装imagick
双击刚刚下载的文件,根据提示完成安装。
3.下载php_imagick扩展
php...