SSPanel - OLD

注:本教程只针对【官方版本】搭建后进行测试接入成功!如 "改过其他源码文件" 或 "迁移过面板" 大概率会接入失败,暂不提供帮改帮修服务!

1、把压缩包里的文件覆盖到网站根目录

2、更改两处 config 文件

  • config/routes.php 内添加:

$app->group('/epay',function (){
    $this->post('/notify', 'App\Services\Payment:notify');
    $this->get('/notify', 'App\Services\Payment:notify');
    $this->post('/return','App\Services\Payment:returnHTML');
    $this->get('/return','App\Services\Payment:returnHTML');
});
  • config/config.php 内添加:

$System_Config['payment_system'] = 'epay';

# Pay Fament    (xxx代表需要手动填写的信息)
$System_Config['epay_pid'] = 'xxx';         //peapay商户ID
$System_Config['epay_key'] = 'xxx';         //peapay商户Key
$System_Config['epay_url'] = 'https://peapay.top/';

Last updated