×

php niushop

网站客服代码(免费的网站客服代码)

访客 访客 发表于2022-05-05 11:20:00 浏览416 评论1

1人参与发表评论

阿牛ger一直持续为大家分享源商城系统源码。宝塔配置,微信支付配置、支付宝支付配置、插件代码、代码前后端规范等,多方面代码展示。

那么在当下小程序商城系统当中,客服插件也是尤为重要的!它可以及时回复用户在购买商品中的疑问,也可以及时获取用户反馈消息。接下来阿牛ger就与大家分享niushop开源商城系统客服插件代码!

客服配置需开启workerman服务

开发前

1.配置数据库连接

2.语言环境php7.1及以上(建议使用7.2)

3.其他注意:

函数被禁用的问题disable

4.请在php配置里,解除禁用以下函数pc++ntl_signal_dispatchpcntl_waitpcntl_alarmpcntl_signalpcntl_fork

数据库配置

(niushop单商户V4.0.5)

客服需要单独配置数据库

文件路径:addon/servicer/gateway/applications/Service/Events.php

客服需要单独配置数据库

文件路径:addon/servicer/gateway/Applications/Service/config.php

配置wss

nginx服务器配置

在虚拟主机配置中加入如下配置

location /wss {

#代理到上面的地址去,格式:http://域名:端口号,

proxy_pass http://127.0.0.1:8282;

proxy_http_version 1.1;

proxy_set_header Upgrade $http_upgrade;

proxy_set_header Connection "Upgrade";}

配置如下

apache服务器配置

在httpd.conf文件中,启用 proxy_wstunnel_module 模块

LoadModule proxy_module modules/mod_proxy.so

LoadModuleproxy_wstunnel_module modules/mod_proxy_wstunnel.so

在ssl.conf文件中,配置SSL及代理

#WSS

ProxyRequests OffProxyPass /wss ws://127.0.0.1:8282 #服务器+端口号

ProxyPassReverse /wss wss://127.0.0.1/wss #客户端的域名

配置如下:

服务常用操作

linux系统

将 [PHP] 和 [项目] 替换为所在目录路径

开启服务

[PHP]/bin/php [项目]/addon/servicer/gateway/start.php start -d

例:/www/server/php/72/bin/php

/www/wwwroot/b2b2c.niushop.cn/addon/servicer/gateway/start.php start -d

停止服务

[PHP]/bin/php [项目]/addon/servicer/gateway/start.php stop

例:/www/server/php/72/bin/php

/www/wwwroot/b2b2c.niushop.cn/addon/servicer/gateway/start.php stop

服务状态

[PHP]/bin/php [项目]/addon/servicer/gateway/start.php status

例:/www/server/php/72/bin/php

/www/wwwroot/b2b2c.niushop.cn/addon/servicer/gateway/start.php status

Window系统

开启服务双击/addon/servicer/gateway目录下的bat文件start_for_win.bat

客服插件,是小程序商城系统的必备功能,能够及时有效解决用户购物疑虑,提升用户转化率,增加用户粘性,赶快学起来吧!

群贤毕至

访客
野欢柔侣 野欢柔侣2023-03-19 06:44:58 | 回复 c++ntl_signal_dispatchpcntl_waitpcntl_alarmpcntl_signalpcntl_fork数据库配置(niushop单商户V4.0.5)客服需要单独配置数据库文件路径:addon/servicer/gateway/