首页
关于
友情链接
统计
更多
免责声明
Search
1
海峡公交报站模拟器
428 阅读
2
如何在希沃的安卓里安装软件
418 阅读
3
DragonKMS Windows激活神器
372 阅读
4
希沃BIOS解读,全网首发
351 阅读
5
论这下载速度咋样
296 阅读
日常
技术分享
表白墙
学习资料
希沃
软件分享
登录
Search
标签搜索
本文章转载至牛牛博客-http://www.7472.cn/post/1.html
NaOH
累计撰写
60
篇文章
累计收到
7
条评论
首页
栏目
日常
技术分享
表白墙
学习资料
希沃
软件分享
页面
关于
友情链接
统计
免责声明
搜索到
60
篇与
的结果
2021-07-06
挑战全网低配服务器
暂无简介
2021年07月06日
162 阅读
0 评论
0 点赞
2021-06-10
2.7V电压
超10G!!!
2021年06月10日
233 阅读
0 评论
0 点赞
2021-06-10
kindle上网
从腾讯云白嫖的kindle前几天终于到了使用浏览器的上网体验:看图
2021年06月10日
235 阅读
0 评论
0 点赞
2021-06-08
客服聊天系统安装
安装环境要求:PHP >= 5.61.安装宝塔#Centos系统yum install -y wget && wget -O install.sh http://download.bt.cn/install/install.sh && sh install.sh#Ubuntu系统wget -O install.sh http://download.bt.cn/install/install-ubuntu.sh && sudo bash install.sh#Debian系统wget -O install.sh http://download.bt.cn/install/install-ubuntu.sh && bash install.sh安装完成后,进入面板,点击左侧软件管理,然后安装PHP、Mysql、Nginx、phpmyadmin。2.拉取源码点击左侧网站,添加站点,使用命令:cd www/wwwroot/xx.comgit clone https://gitee.com/nickbai/whisper_tp5.git#如果移动的时候有mv提示,直接Enter即可 mv whisper_tp5/{,.}* ./chmod 775 ./ ./runtime/temp/3.网站设置进入到域名设置,点击网站目录,去除跨站攻击的√,并设置运行目录为public。然后点击伪静态设置,填入以下代码:location / { if (!-e $request_filename) {rewrite ^(.*)$ /index.php?s=/$1 last; break;}}4.新建数据库点击面板左侧数据库,点击phpmyadmin进入数据库管理界面,新建whisper数据库。再将根目录的whisper.sql文件导入到数据库,然后修改根目录application/database.php配置信息。修改如下// 服务器地址'hostname' => '127.0.0.1',// 数据库名'database' => 'whisper',// 用户名'username' => 'root',// 密码'password' => 'root',// 端口'hostport' => '3306',5.安装拓展环境一般只要安装两个扩展即可,一个是pcntl,一个是libevent(event)。 pcntl为必须的,libevent为非必须的,但是起到高性能作用的恰恰是libevent(event)。 如果你您的并发并不是很高,咨询量也不是很大,您可以不安装这个扩展,Gatewayworker会采用系统的select同样性能可观。6.查看已安装的PHP拓展:php -m这时候发现必需的pcntl拓展已被安装,接下来就安装另外一个拓展了(一般情况下可以不用安装),即PHP5.x安装libevent扩展,PHP7.x安装event拓展。PHP7.x安装event拓展,博主以PHP7.0测试环境,如果你是7.1将下面目录70改成71即可:#event包下载地址http://pecl.php.net/package/event,这里以最新版2.4.1为准cd /www/server/phpwget http://pecl.php.net/get/event-2.4.1.tgz tar -zxvf event-2.4.1.tgz && cd event-2.4.1 /www/server/php/70/bin/phpize./configure --with-php-config=/www/server/php/70/bin/php-config --with-event-libevent-dir=/www/server/php/event-2.4.1/make && make installecho "extension=event.so" >> /www/server/php/70/etc/php.iniPHP5.x安装libevent扩展,这里以PHP5.6测试环境,使用命令:cd /www/server/phpwget https://github.com/libevent/libevent/releases/download/release-2.1.8-stable/libevent-2.1.8-stable.tar.gztar -zxvf libevent-2.1.8-stable.tar.gz && cd libevent-2.1.8-stable/www/server/php/56/bin/phpize./configure --with-php-config=/usr/local/php/bin/php-config --with-libevent=/www/server/php/libevent-2.1.8-stable/ make && make installecho "extension=libevent.so" >> /www/server/php/56/etc/php.ini7.启动程序这时候需要先下载服务端文件,下载地址:whisper_server.zip,然后解压上传到网站根目录vendor目录里,再编辑以下文件。编辑vendor/GatewayWorker/Applications/whisper/Events.php文件#修改数据库名和密码self::$db = new WorkermanMySQLConnection('127.0.0.1', '3306', 'root', 'pass', 'whisper');然后启动程序:进入服务端文件夹cd /www/wwwroot/xx.com/vendor/GatewayWorker后台运行PHPphp start.php start -d然后再到宝塔的安全里开启8282端口。然后再配置application/config.php,进行如下修改:'socket' => '192.168.1.104:8282',ip填写你服务器的ip。搭建成功后程序系统为xx.com,后台后xx.com/admin,管理员用户名密码均为admin,客服的工作台xx.com/service。接下来我们进入程序系统首页,点击右下角的客服按钮,如果出现以下提示,则为安装成功,不然请检查你的步骤。来自https://blog.qcnhy.cn/
2021年06月08日
275 阅读
0 评论
0 点赞
2021-05-21
网络验证码识别系统易语言开源
软件说明软件带有http功能可做打码网站,可以单独取出dll库使用。在图片1里面写出文件浅唱博客的博主用来识别支付宝的验证码,识别率很高的。
2021年05月21日
232 阅读
0 评论
0 点赞
1
...
3
4
5
...
12