最新文章
-
开源许可协议对比 MIT license
MIT许可证(MIT License),也称为X11许可证或MIT X许可证,是一种广泛使用的开源软件许可协议,得名于麻省理工学院(Massachusetts Institute of Technology,MIT)。该许可证被认为是一种宽松的许可协议,给予使用者较大的自由度。 MIT许可证的主要特点和条款 1.许可权:该许可证授予任何人免费使用、复制、修改、合并……admin 2024-03-09
0 -
WordPress程序访问遇到 “此站点遇到了致命错误。” 怎么解决
找到网站根目录下的wp-config.php文件, 打开后找到 define( 'WP_DEBUG', false ); 改成 // 开启WP_DEBUG模式 define( 'WP_DEBUG', true); // 开启DEBUG日志,产生的日志文件在: /wp-content/debug.log ,排查完成后 一定要记得关闭这个日志功能并清理这个日志文件, define( 'WP_DEBUG_LOG', true); // 显示errors and……admin 2024-02-29
0 -
帝国CMS开启https,打开后台空白的解决办法。
1、7.5及以上版本 7.5版本 http和https 可以自动识别,但有时候自动识别判断的不准,后台登录也是空白, 可以打开 e/config/config.php 查找 ’httptype’=>0 改为’httptype’=>2 即可 说明: 'httptype'=>0, 代表自动 'httptype'=>1,代表全站http 'httptype'=>2,代表全站https 'httptype'=>3,代……admin 2024-02-29
0 -
CentOS 8 安装linux版安全狗提示Need system command ‘locate‘ to install safedog for linux的解决方法
CentOS 8 安装linux版安全狗提示 “Need system command ‘locate‘ to install safedog for linux ” 如图。 这种情况一般是缺少组件/插件导致的,在网上一番搜索找到 相关的安装命令 1、yum -y install mlocate 2、再次安装 再次出现错误,使用命令 yum -y install lsof 3、如果还提示“need system command 'lspci' t……admin 2024-01-29
0 -
CentOS 7 安装 Docker compose
1、下载docker-compose文件 ,若下载慢,可以先下载到本地,然后传到对应的目录 curl -SL https://github.com/docker/compose/releases/download/v2.24.4/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose 2、给执行权限 sudo chmod +x /usr/local/bin/docker-compose 3、创建软连 sudo ln -s /usr/local/……admin 2024-01-29
0 -
安装更新时出现一些问题,但我们稍后会重试。如果你继续看到此错误,并且想要搜索 Web 或联系支持人员以获取相关信息,以下信息可能会对你有帮助: (0x80244022)
安装更新时出现一些问题,但我们稍后会重试。如果你继续看到此错误,并且想要搜索 Web 或联系支持人员以获取相关信息,以下信息可能会对你有帮助: (0x80244022) windows10更新失败,解决方法一 这个更新失败的问题,可能和Windows update服务有关系。可以运行windows服务,重启Windows update 和Background intel……admin 2024-01-29
0 -
Windows系统远程连接服务器后全屏,本地的任务栏始终显示的 解决办法
问题描述: Windows系统远程连接服务器后全屏,本地的任务栏始终显示的,遮住了远程桌面下方的 任务栏 ,使用很不方便。 解决办法: 重启本地电脑的windows 资源管理器 1、在本地电脑 - 在任务栏空白处 点击 右键 ,打开 任务管理器 2、在任务管理器中 找到 windows 资源管理器 (Windows Explorer) 3、选中 Windows ……admin 2024-01-29
0 -
关于Thinkphp程序报 Class ‘think\Image’ not found 问题解决方法
解决方法如下: 一、 把 ./vendor/topthink/think-image/src下的文件 全部全部复制到 (包括image.php和image文件夹) ./thinkphp/library/think 目录下 ,在登录后台 就可以正常上传了。(也可能是 /core/library/think 目录) 二、 在报错的文件中 直接引用image.php文件 require(ROOT_PATH.'/tp5/vendor/topthink/thi……admin 2024-01-29
0 -
IIS利用web.config隐藏部分响应头信息或 隐藏服务器响应头中php版本信息的方法
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <outboundRules rewriteBeforeCache="true"> <rule name="Remove Server header"> <match serverVariable="RESPONSE_SERVER" pattern=".+" /> <action type="Rewrite" value="" />……admin 2024-01-29
0 -
The client needs a new connection for this request as the requested host name does not match the Server Name Indication (SNI) in use for this connection.
The client needs a new connection for this request as the requested host name does not match the Server Name Indication (SNI) in use for this connection. 原因是使用apache 由于启用HTTP2,浏览器默认在同证书、同IP的情况下会采取连接复用 ,如果配置两个站点的配置不通 或根证书不一致,会导致服务器拒绝浏览……admin 2023-12-29
0

