socket_write():无法写入套接字[10053]

时间:2016-09-22 15:23:11

标签: php laravel sockets

我使用whatsapp api和laravel 5.2

  

https://github.com/mgp25/Chat-API

当我尝试发送新消息时,我收到此错误

socket_write(): unable to write to socket [10053]: An established connection was aborted by the software in your host machine.

发送控制器

$massage = "Thanks for subscribe";
Whatsapi::send($massage, function ($send) {
$user = User::Find(1);
$send->to($user->phone);
}

1 个答案:

答案 0 :(得分:0)

遵循此tutorial

我在phperror.log中配置的php.ini中遇到了相同的错误。最初,我认为这是由于某个firewall问题引起的,但不是。

问题是,我先运行client,然后运行serverClient首次运行时可能无法与服务器建立连接。

所以我通过先运行server然后运行client来解决它,现在可以成功建立web socket连接。

编辑:当我们只是重新加载客户端页面而没有正确终止先前的连接时,也会出现此错误。