天眼查企查查启信宝删除个人手机号

企查查删除手机,邮箱链接:https://www.qcc.com/web/cms/delcontact

启信宝删除手机,邮箱链接:https://www.qixin.com/user/contact-delete

天眼查删除手机,邮箱等信息链接:https://kfzhx.tianyancha.com/shield/human

如果需要登录后才能处理的,请手机验证码登录后再打开以上链接,进行验证对应的信息即可在平台信息脱敏。

2023年3月22日。

 

顺企网删除手机号:https://cp.11467.com/home/clearmobile/index/phone/1314****55

网址最后为需要删除的手机号

2023年12月19日。

 

 

 

WDOYO多选字段添加及前台调用

1.在后台频道中添加多选字段:

名称:图标

标识:icon

值:新品=new,热销=hot,推荐=good

勾选上使用的栏目。

2.前台调用例子如下:

{if($v['icon']!='')}
<span class="icon">
{foreach array_filter(explode('|',$v['icon'])) as $i}
<img src="{$GLOBALS['skin']}images/product/{$i}.png" width="32" height="32" class="{$i}" />
{/foreach}
</span>
{/if}

本例中添加3个图标到前台展示,需制作new.png,hot.png,good.png共3张图片

Windows Server 2012 R2 配置SMB服务器

以管理员身份运行PowerShell

查看SMB配置

Get-SmbServerConfiguration

配置参考:https://learn.microsoft.com/zh-cn/powershell/module/smbshare/set-smbserverconfiguration?view=windowsserver2022-ps#-enableauthenticateusersharing

启用SMBv1和SMB v2/v3

SMBv1

检测: Get-SmbServerConfiguration | Select EnableSMB1Protocol

禁用: Set-SmbServerConfiguration –EnableSMB1Protocol $false

启用: Set-SmbServerConfiguration –EnableSMB1Protocol $true

SMB v2/v3

检测:Get-SmbServerConfiguration | Select EnableSMB2Protocol

禁用:Set-SmbServerConfiguration –EnableSMB2Protocol $false

启用:Set-SmbServerConfiguration –EnableSMB2Protocol $true

备注:Windows 8和Windows Server 2012引入了新的 Set-SMBServerConfiguration Windows PowerShell cmdlet。 使用 cmdlet 可以在服务器组件上启用或禁用 SMBv1、SMBv2 和 SMBv3 协议。

运行 Set-SMBServerConfiguration cmdlet后,无需重新启动计算机。

 

更多参考:https://learn.microsoft.com/zh-CN/windows-server/storage/file-server/troubleshoot/detect-enable-and-disable-smbv1-v2-v3?tabs=server

a标签属性rel="noopener noreferrer"

没有rel=“noopener noreferrer”的情况下使用target=“_blank”是有安全风险,超链接a标签的rel="noopener noreferrer"属性是一种新特性,它能让网站更安全,超链接添加rel="noopener noreferrer"来防止钓鱼网站,因为它获取的window.opener的值为null。

说人话就是:加上这个属性,新打开的窗口跟你的站无关。

参考:https://blog.csdn.net/CamilleZJ/article/details/120306971

阿里云域名代续费代缴费功能

由于种种原因,无法找到阿里云账号和密码,不能及时对域名进行续费,这样的情况,应该都有遇到过,针对些情况,阿里云推出了域名代续费功能,只要你记得域名,同时域名在阿里云官方注册的账号下面,就可以使用代续费进行域名的续费。

阿里云域名代续费网址:https://wanwang.aliyun.com/domain/domain-renew

Let's 免费证书手动申请方法

安装 Let's 免费证书服务

[*****]apt-get install certbot

申请证书HTTP方式 / DNS方式

[*****]certbot certonly --agree-tos -d aaa.com -d www.aaa.com --email admin@aaa.com --webroot -w /var/www/html/
[*****]certbot certonly --agree-tos -d aaa.com -d *.aaa.com --email admin@aaa.com --manual --preferred-challenges dns --server https://acme-v02.api.letsencrypt.org/directory

更新删除

[*****]certbot renew
[*****]certbot delete

 

以上为新版代码

 

安装 Let's 免费证书服务
[*****]apt-get install certbot

申请证书
[*****]certbot certonly --agree-tos -d www.aaa.com -d aaa.com --email 123456@qq.com --webroot -w /var/www/html/

[*****]certbot certonly --agree-tos -d *.aaa.com -d aaa.com --email 123456@qq.com --manual --preferred-challenges dns --server https://acme-v02.api.letsencrypt.org/directory

更新删除
[*****]certbot renew
[*****]certbot delete

 

 

Microsoft Clarity 网站流量统计分析

现状,国内各网站流量统计平台开始商业化变现,要不收费,要不就减配,各种限制.

而统计分析强大的Google Analytics又因政策因素,不适合国内使用.

在这种情况下,有没有更好的选择呢?

微软bing给出了新的选择.

Microsoft Clarity 是一款免费且易于使用的工具,可捕获真实用户如何实际使用你的网站。安装非常很简单,你将在几分钟内开始获取数据。

官网:https://clarity.microsoft.com/

功能
即时热度地图
为你的所有页面自动生成。查看用户点击的位置、他们忽略的内容以及滚动的距离。
会话录制
观看用户如何使用你的网站。了解运行顺畅的地方、需要改进的内容,并测试新想法。
Google Analytics 集成
连接 Google Analytics 和 Clarity 以无缝集成这两个功能强大的平台。

更可贵的是,这个Clarity 项目是开源的:https://github.com/microsoft/clarity