root 5 years ago
parent
commit
88af80d5d9
2 changed files with 5 additions and 5 deletions
  1. 3 3
      app/Http/Controllers/OrderController.php
  2. 2 2
      install.sql

+ 3 - 3
app/Http/Controllers/OrderController.php

@@ -177,7 +177,7 @@ class OrderController extends Controller
         $gateway->setAppId(config('v2board.alipay_appid'));
         $gateway->setPrivateKey(config('v2board.alipay_privkey')); // 可以是路径,也可以是密钥内容
         $gateway->setAlipayPublicKey(config('v2board.alipay_pubkey')); // 可以是路径,也可以是密钥内容
-        $gateway->setNotifyUrl(config('v2board.app_url', env('APP_URL')) . '/api/v1/guest/order/alipayNotify');
+        $gateway->setNotifyUrl(url('/api/v1/guest/order/alipayNotify'));
         $request = $gateway->purchase();
         $request->setBizContent([
             'subject'      => config('v2board.app_name', 'V2Board') . ' - 订阅',
@@ -205,7 +205,7 @@ class OrderController extends Controller
             'currency' => 'hkd',
             'type' => 'alipay',
             'redirect' => [
-                'return_url' => config('v2board.app_url', env('APP_URL')) . '/api/v1/guest/order/stripeReturn'
+                'return_url' => url('/api/v1/guest/order/stripeReturn')
             ]
         ]);
         if (!$source['redirect']['url']) {
@@ -229,7 +229,7 @@ class OrderController extends Controller
             'currency' => 'hkd',
             'type' => 'wechat',
             'redirect' => [
-                'return_url' => config('v2board.app_url', env('APP_URL')) . '/api/v1/guest/order/stripeReturn'
+                'return_url' => url('/api/v1/guest/order/stripeReturn')
             ]
         ]);
         if (!$source['wechat']['qr_code_url']) {

+ 2 - 2
install.sql

@@ -111,7 +111,7 @@ CREATE TABLE `v2_user` (
   `u` bigint(20) NOT NULL DEFAULT '0',
   `d` bigint(20) NOT NULL DEFAULT '0',
   `transfer_enable` bigint(20) NOT NULL DEFAULT '0',
-  `enable` tinyint(1) NOT NULL DEFAULT '0',
+  `enable` tinyint(1) NOT NULL DEFAULT '1',
   `banned` tinyint(1) NOT NULL DEFAULT '0',
   `is_admin` tinyint(1) NOT NULL DEFAULT '0',
   `last_login_at` int(11) NOT NULL,
@@ -132,4 +132,4 @@ CREATE TABLE `v2_user` (
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
 
--- 2019-11-22 05:01:40
+-- 2019-11-23 14:25:15