声明:本站文章均为作者个人原创,图片均为实际截图。如有需要请收藏网站,禁止转载,谢谢配合!!!
Fastadmin插件shopro(1):客服配置
1、客服配置客服配置需要如下几步骤,请务必每一步都做了1、服务器开启1819端口2、宝塔放行1819端口3、后台管理-商城配置-客服配置4、宝塔面板php配置移除禁用函数shell_execproc_openpcntl_alarmpcntl_forkpcntl_waitpcntl_signalpcntl_signal_dispatch5、安装gateway-worker
PHP 8.1.0 正式发布了
PHP 8.1.0 现已发布,该版本带来了许多改进和新功能。枚举使用枚举而不是一组常量并立即进行验证。enum Status{ case draft; case published; case archived; public function color(): string { return match($this)
分销计算思路:级差、平级奖
1、找到用户所有上级$sups = $this->getSups($user['pid']);2、获取不同身份奖励规则foreach ($sups as $kk => $vv) { $user_ = Db::name('user')->find($vv['id&
Composer问题集锦(1):Your requirements could not be resolved to an installable set of packages
Your requirements could not be resolved to an installable set of packages解决方法:composer install / update / require xxx 后添加--ignore-platform-reqs 或者 composer update --ignore-platform-reqs