宝塔面板定时清空Whos Online表

新建脚本nano /root/truncate_whos_online.sh给脚本执行权限chmod +x /root/truncate_whos_online.sh手动测试一次bash /root/truncate_whos_online.sh查看日志:cat /www/wwwlogs/truncate_whos_online.log 宝塔里设置定时任务计划任务 → 添加任务 → Shell脚本

- 阅读全文 -

如何用rsync对拷文件夹

本地->远程rsync -avzP /www/wwwroot/folder/ root@remote_ip:/www/wwwroot/folder/本地->远程加限速和端口号rsync -avzP --bwlimit=2000 -e 'ssh -p 123' root@remote_ip:/www/wwwroot/folder/ /www/wwwroot/folde

- 阅读全文 -

把Marcus的短代码写进Ez Page

1、/includes/languages/english/html_includes/marcus/define_xxx.php2、编辑,参考附件ez pages bak.txt3、设置文件权限555,防止客户在后台乱改

- 阅读全文 -

Wordpress通过数据库sql创建管理员

找不到管理员密码的时候,直接创建一个新超管INSERT INTO wp_users (user_login, user_pass, user_nicename, user_email, user_status, display_name) VALUES ('newadmin', MD5('Admin@123456'), 'newadmin'

- 阅读全文 -

根据服务器配置自动优化php和mysql

server_hardening.zip根据碰到的实际情况,让gpt写了一份根据服务器配置和环境自动优化的脚本功能概览 1)自动优化(安全 + PHP + MySQL) 执行后脚本会一次性完成以下几类优化: 安全增强 关闭 UFW / firewalld 的过度日志输出,降低 journalctl 写入压力。 添加基础 iptables 防护规则,限制 SYN

- 阅读全文 -

ChatGPT的wp站服务器优化建议

1、安装Redis2、修改Mysql配置 (2C2G参考)innodb_buffer_pool_size = 512M #固定缓存max_connections = 100 #最大并发连接数上限query_cache_size = 0 #关闭老旧的查询缓存table_open_cache = 1024 #缓存已打开的表,减少频繁打开文件的开销tmp_table_size =

- 阅读全文 -

Zencart提交订单出现WARNING: An Error occurred

使用二开的PPOffline等支付接口时,提交订单出现WARNING: An Error occurred。环境Debian10+Mysql5.7,原因是MySQL 5.7 很常见的严格模式。在MySQL的cnf里找到sql-mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES把STRICT_TRANS_TABLES删除,然后重启MySql和PHP即可

- 阅读全文 -

后台管理员列表页功能增强

一、隐藏ID=1的超级用户1、adminpath/user.php2、在103行左右,找到$userList = zen_get_users();3、在下边加一行$userList = array_values(array_filter($userList, function($u) {return (int)$u['id'] !== 1;}));二、设置只有ID=1的Supe

- 阅读全文 -

Marcus商品详情页的radio美化

1、覆盖原版的/includes/modules/marcus/attributes.php文件2、将/includes/templates/marcus/templates/tpl_modules_attributes.php里的46行的<ul class="options-swatch options-swatch--color options-swatch--lg"

- 阅读全文 -

Glozin主题经验记录

※ 官方英文教程 https://wpglozin.com/docs/#/※ Contact顶部的联系方式在page contact 里直接edit,拉到最底下,不在elementor里,不成功的话直接sql因为有2条记录。UPDATE wp_postmeta SET meta_value = 'Please fill out the form below and our team will re

- 阅读全文 -

Zencart 1.56c增加邮件订阅功能

第一步:创建订阅表单在 ZenCart 模板文件(如 includes/templates/YOUR_TEMPLATE/common/tpl_main_page.php 或合适的位置)插入以下 HTML 代码:<form id="subscribe-form">... 第二步:创建 subscribe_handler.php 处理订阅请求在 ZenCart 网站根目

- 阅读全文 -

Marcus模板首页短代码展示多行产品

1、网站后台“最大值/Maximum Values”里设置这三个参数为60或者其他数字新进产品 / New Products Module推荐商品 - 首页 / Maximum Display of Featured Products - Main Page特价商品 - 首页 / Maximum Display of Specials Products - Main Page2、在短代码[prod

- 阅读全文 -