鲤小牛 的文章
-
jquery移除文章内容style属性
$(document).ready(function() { // 选择目标div,移除其中所有子元素的style属性 $('.con-post').find('*').not('h3').removeAttr('style'); …… -
安装Pure-Ftpd报错utils.h:5:11: fatal error: sodium.h: No such file or directory的解决办法
宝塔在安装 pure-ftpd时报utils.h:5:11: fatal error: sodium.h: No such file or directory错误 这是因为没有正确安装libsodium导致的,我们只要按以下方法安…… -
debian和 ubuntu下安装PHP7.4时curl报错 curl: symbol lookup error: /lib/x86_64-linux-gnu/libcurl.so.4 解决方法
1. 检查已安装版本 首先,检查系统上安装的 libcurl 和 nghttp2 的版本。 dpkg -l | grep libcurl dpkg -l | grep nghttp2 3 卸载原有的库 apt-get remove --…… -
centos编译安装python3
安装依赖 yum install zlib zlib-devel libffi-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gcc make wget 下载安…… -
宝塔提示安全风险修复脚本
sed -i 's/try_first_pass use_authtok/try_first_pass use_authtok remember=5/' /etc/pam.d/system-auth chmod u-s /usr/bin/chage /usr/bin/gpasswd /usr/…… -
PHP网站后台新增地区登录限制代码
function getIPs(){ global $_C; if(empty($_C['client_ip'])) { if(getenv('HTTP_CLIENT_IP') && strcasecmp(getenv('HTTP_CL…… -
PbootCMS各个版本升级sql脚本(SQLite版本)
Pbootcms 2.x升级Pbootcms 3.0脚本 sqlite-3.0.0-update.sql -- ---------------------------- -- Sqlite数据库升级脚本 -- 适用于PbootCMS 2.1.1版本升级…… -
PbootCMS实现栏目页添加.html后缀的方法
apps\home\controller\ParserController.php $link = Url::home($sortfilename); 改成 $link = Url::home($sortfilename, true); $link = Url::home($ur…… -
处理IIS/Apache/Nginx/Tomcat响应头缺失等低危漏洞方法
前言:经常遇到网站被扫描有响应头缺失的漏洞,本问将介绍如何处理IIS、Apache、Nginx、Tomcat(java)下修复响应头缺失的漏洞方法,例如 X-Content-Type-Option…… -
Nginx跨域配置
location ^~ / { # ... (existing configuration) if ($request_method = 'OPTIONS') { add_header 'Access-Control-Allow-Origin' '*'; add_header '……
友情链接