首页
友情链接
统计分析
4K壁纸
搜索
1
#1031 – TABLE STORAGE ENGINE FOR ” DOESN’T HAVE THIS OPTION解决方法
978 阅读
2
让浏览器不显示 https 页面中 http 请求警报 http-equiv=”Content-Security-Policy” content=”upgrade-insecure-requests”
752 阅读
3
报错代码:ERROR 1227 (42000)-解决办法
561 阅读
4
微信个人商户号养号建议
481 阅读
5
解决移动端position:fixed随软键盘移动的问题
407 阅读
PHP
Mysql
乱七八糟
常用笔记
Linux
Reids
Search
标签搜索
php
千卡云支付
Linux
千卡云
千卡易支付
redis
Nginx
shell
Mysql
JS
支付宝
CentOS
Apache
支付
function
database
fastadmin
phpstorm
快捷键
微信支付
蓝科迪梦
累计撰写
59
篇文章
累计收到
1
条评论
首页
栏目
PHP
Mysql
乱七八糟
常用笔记
Linux
Reids
页面
友情链接
统计分析
4K壁纸
搜索到
2
篇与
的结果
2024-10-13
ss-panel-v3-mod_Uim修改笔记
为了方便后期维护,做个记录吧,自己用着舒服 码云地址:https://gitee.com/bufanyun/ss-panel-v3-mod_Uim 1.简化用户操作,隐藏ss、ssr教程和下载 \resources\views\material\user\index.tpl \resources\views\material\user\tutorial.tpl 修改内容不再贴出 都是html 2.加入slimphp自带的debug \config\routes.php $debug = true; $configuration = [ 'settings' => [ 'debug' => $debug, 'whoops.editor' => 'sublime', 'displayErrorDetails' => $debug ] ]; //error_reporting(E_ALL); //set_error_handler(function ($severity, $message, $file, $line) { // if (error_reporting() & $severity) { // throw new \ErrorException($message, 0, $severity, $file, $line); // } //}); 3.增加易支付模块 \config\.config.php 加入新的支付配置参数 $System_Config['payment_system']='epay'; #epay易支付 #鼎云支付:http://pay.xianweicm.com $System_Config['epay_partner']= ''; //商户ID $System_Config['epay_key']= ''; //商户KEY $System_Config['epay_apiurl'] = ''; //支付API地址 \config\routes.php //加入新的路由 $app->group('/user', function () { //支付跳转 131行 $this->get('/code/epay', App\Services\Payment::class . ':purchase'); } $app->group('/payment', function () { //异步回调加入get请求支持 161行 $this->get('/notify', App\Services\Payment::class . ':notify'); }); \app\Services\Payment.php 引用新的类 use App\Services\Gateway\Epay getClient(){方法 21行,加入新的指针对象 switch ($method) { case ('epay'): return new Epay(); } \app\Services\Gateway\Epay.php \\增加完整的模块操作 \extra\epay\require.php \\上传易支付sdk包 sdk包下载地址: https://gitee.com/bufanyun/pay/tree/master/SDK/lib 4.取消360浏览拦截 \public\assets\js\fuck.js 隐藏底部判断方法 5.修改composer中 Illuminate database底层 \vendor\esdeathlove\datatables\src\Datatables.php 方法generate() 213行,解决一个php7的报错 if(count((array)$this->edit) > 0) // if (count($this->edit) > 0)
2024年10月13日
19 阅读
0 评论
0 点赞
2022-11-06
网页中点击链接跳转到微信各个界面的方法
方法一:扫描公众号二维码,得到的地址是:http://weixin.qq.com/r/IzsfB-fEoarerbNk924x 点击,会跳转到微信。 方法二:weixin://profile/gh_e011b00aab62 此种类型的链接,此链接在微信内会链接到一个公共帐号的介绍界面。但是目前也只能到达微信界面。 方法三:weixin://qr/gh_e011b00aab62 此种类型的链接在手机的外部浏览器也会被自动识别并跳转到微信,但会进行条码扫描。但是目前也只能到达微信界面。 微信相关URL Scheme参数 weixin://dl/scan 扫一扫 weixin://dl/feedback 反馈 weixin://dl/moments 朋友圈 weixin://dl/settings 设置 weixin://dl/notifications 消息通知设置 weixin://dl/chat 聊天设置 weixin://dl/general 通用设置 weixin://dl/officialaccounts 公众号 weixin://dl/games 游戏 weixin://dl/help 帮助 weixin://dl/feedback 反馈 weixin://dl/profile 个人信息 weixin://dl/features 功能插件
2022年11月06日
293 阅读
0 评论
0 点赞