123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
- defined('ONLY_ONLY_ONLY') or exit('Access Denied');
- //切换为备案域名
- define('WEBAPI_ROOT_HOSTURL', 'https://api.kuailaiyou.top');
- define('WEBAPI_IMG_HOSTURL', 'https://api.kuailaiyou.top');
- //本项目涉及的子系统名值标记
- define('SUBSYS_PLAT_PCWEB', '0'); //平台PCWEB管理系统
- define('SUBSYS_LABOUR_MINA', '1'); //劳方小程序子系统
- define('SUBSYS_CAPITAL_MINA', '2'); //资方小程序子系统
- define('SUBSYS_CAPITAL2_MINA', '3'); //资方小程序小二子系统
- //数据库配置
- global $DB_CONFIG;
- /*$DB_CONFIG['host'] = '127.0.0.1';
- $DB_CONFIG['username'] = 'bizdber';
- $DB_CONFIG['password'] = 'Ws2021@bizdber';
- $DB_CONFIG['port'] = '3366';
- $DB_CONFIG['database'] = 'bizdbKLY';
- $DB_CONFIG['charset'] = 'utf8mb4';*/
- $DB_CONFIG = [
- 'host' => '42.193.106.113',
- 'username' => 'root',
- 'password' => 'zhonghui0123',
- 'port' => '3306',
- 'database' => 'bizdbKLY',
- 'charset' => 'utf8mb4',
- ];
- /**** 腾讯云相关配置 ******/
- define('TXCLOUD_APPID', '1309103924');
- define('TXCLOUD_SecretId', 'AKIDby5wWprd9OM3UeX9VZMs88vRgeEYbNs6');
- define('TXCLOUD_SecretKey', 'yg7HAm9G6fy0lFTQ5TaQyFFzSeZEcjZ8');
- /****微信相关配置 正式******/
- define('WeiXin111_AppID', 'wxcd35a60de7b5942a'); //会员侧
- define('WeiXin111_AppSecret', '0a6ec1d0f533bd74dda62f2b4a2435cc');
- define('WeiXin222_AppID', 'wx8c230ea00ceb8676'); //商户
- define('WeiXin222_AppSecret', '8622d6f5ee46c3b588d2a65e2429f6f1');
- define('WeiXin333_AppID', 'wx8c230ea00ceb8676');
- define('WeiXin333_AppSecret', '8622d6f5ee46c3b588d2a65e2429f6f1');
- define('WeiXinPay_mchId', '1614403864');
- define('WeiXinPay_apiKey', 'GUANGmingjunxianghaoran181818185');
- define('WeiXinPay_apiKeyV3', 'GUANGmingjunxianghaoran181818185');
- /****微信相关配置 测试******/
- /*define('WeiXin111_AppID', 'wxc62a58b89a31b7ea'); //会员侧
- define('WeiXin111_AppSecret', '7d8b51dfc97f7f98e3134136aee0c0ee');
- define('WeiXin222_AppID', 'wx395d81ac36d7d144'); //商户
- define('WeiXin222_AppSecret', '290fe55b32b404366a0ac51100b4f22b');
- define('WeiXin333_AppID', 'wx395d81ac36d7d144');
- define('WeiXin333_AppSecret', '290fe55b32b404366a0ac51100b4f22b');
- define('WeiXinPay_mchId', '1614403864');
- define('WeiXinPay_apiKey', 'GUANGmingjunxianghaoran181818185');
- define('WeiXinPay_apiKeyV3', 'GUANGmingjunxianghaoran181818185');*/
- /***回调不能带参数,已在nginx中重写,但切记除了WXPAYBACK大小写无关外,其他大小写敏感**/
- define('WeiXinPay_notifyurlV2', WEBAPI_ROOT_HOSTURL . '/WXPAYBACK/KLY/WeiXin/PayedNotifyV2');
- define('WeiXinPay_notifyurlV3', WEBAPI_ROOT_HOSTURL . '/WXPAYBACK/KLY/WeiXin/PayedNotifyV3');
- /****阿里短信服务应用KEY******/
- define('AliSMSAccessKey', 'LTAI5tSQRXPMmcJbE3TGDPCr');
- define('AliSMSAccessSecret', 'M4jhwoB2oZijjGwxfYUjnstoLUEEFJ');
- /**** 短信验证码 短信模板及签名******/
- define('AliSMS_CODE_TMPSIGN', '快来优');
- define('AliSMS_CODE_TMPCODE', 'SMS_223665142');
- define('AliSMS_TMPCODE_111', 'SMS_234405391'); //报名成功通知
- define('AliSMS_TMPCODE_222', 'SMS_227741792'); //新会员报名通知
- define('AliSMS_TMPCODE_333', 'SMS_234420394'); //商家违约通知会员
- //define('AliSMS_TMPCODE_444', 'SMS_227731909');//会员主动取消报名警告
- /***********************/
- define('GRAY_MODE', '0'); //>0 非灰度
- define('GRAY_PHONES', '17640181459,15620638138,18920787806,18920407769,18222906683'); //>0 非灰度
- /**** 百度地图应用 ******/
- //define('BaiduLBS_APPKEY', 'oW4DZ7UVTht7WNF9EwAb06zsXC2o5Rj9');
- define('BaiduLBS_APPKEY', 'oDFi8utGN2I5HyODhy7dG1zDslgVeWRy');
|