前言
之前分享的那个这几天微信支付后不会回调,只能重新搭建这个新版本的,已测试无问题
更新日志
2023/08/31:
1.新增微信公众号消息提醒功能
2.重构转账付款功能,支持通过插件扩展
3.商户后台新增代付功能
4.后台新增付款记录列表
5.支付宝插件新增预授权支付
6.优化支付通道列表,支持翻页与快速复制通道
7.新增创建订单人机验证,防止被恶意创建订单
安装教程
PHP版本选择 7.4
将源码上传至网站根目录
并解压访问域名/install.php
配置数据库
配置伪静态
location / {
if (!-e $request_filename) {
rewrite ^/(.[a-zA-Z0-9\-\_]+).html$ /index.php?mod=$1 last;
}
rewrite ^/pay/(.*)$ /pay.php?s=$1 last;
}
location ^~ /plugins {
deny all;
}
location ^~ /includes {
deny all;
}
源码下载
© 版权声明
THE END
暂无评论内容