diff --git a/app/Http/Controllers/OrderController.php b/app/Http/Controllers/OrderController.php index 189510b0..0eda48f1 100755 --- a/app/Http/Controllers/OrderController.php +++ b/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']) { diff --git a/install.sql b/install.sql index 526eb8bb..25e5f195 100644 --- a/install.sql +++ b/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 \ No newline at end of file +-- 2019-11-23 14:25:15 \ No newline at end of file