Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fleey/epay
易支付项目 Thinkphp5.1重写 兼容老接口 效率提升
https://github.com/fleey/epay
epay php73 thinkphp51
Last synced: 3 months ago
JSON representation
易支付项目 Thinkphp5.1重写 兼容老接口 效率提升
- Host: GitHub
- URL: https://github.com/fleey/epay
- Owner: Fleey
- License: other
- Created: 2019-02-13T07:17:29.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-01-10T12:02:41.000Z (almost 4 years ago)
- Last Synced: 2024-10-12T12:41:00.399Z (3 months ago)
- Topics: epay, php73, thinkphp51
- Language: PHP
- Size: 11 MB
- Stars: 26
- Watchers: 2
- Forks: 21
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
易支付
--------本系统完美支持 `支付宝` `微信` `QQ钱包` 原生支付
同时可使用易中央支付系统`承接其他支付系统`
## 安装方法
直接删除网站目录下/config/install.lock文件
然后访问域名/install 即可安装
然后设置定时任务即可保证系统安全稳定运行
每月, 15日 1点30分执行 删除15日前的记录
```code
#!/bin/sh
cd /www/wwwroot/网站目录
php think deleteRecord
```每隔3分钟执行 系统订单统计
```code
#!/bin/sh
cd /www/wwwroot/网站目录
php think syncOrder
```每隔1分钟执行 自动补单
```code
#!/bin/sh
cd /home
java -jar autoCallback.jar --database-port=3306 --database-host=数据库地址 --database-name=数据库名 --database-username=数据库账号 --database-password=数据库密码 --callback-count=自动补发次数
```每 1时1分 执行 系统结算
```code
#!/bin/sh
cd /www/wwwroot/网站目录
php think settle
```用户控制台
> http://域名地址/user后台地址
> http://域名地址/admin测试支付地址
> http://域名地址/test## 界面展示
后台界面
![后台界面](https://raw.githubusercontent.com/Fleey/epay/master/exampleImage/adminCtrl.png)开户界面
![开户界面](https://raw.githubusercontent.com/Fleey/epay/master/exampleImage/adminUserInfo.png)登录界面
![登录界面](https://raw.githubusercontent.com/Fleey/epay/master/exampleImage/loginMenu.png)测试支付界面
![测试支付](https://raw.githubusercontent.com/Fleey/epay/master/exampleImage/testPay.png)用户界面
![用户界面](https://raw.githubusercontent.com/Fleey/epay/master/exampleImage/userCtrl.png)