我与使用o2switch托管的站点进行了聊天,该聊天在本地非常有效,但是在托管后,无法连接它。
我试图写地址的可能性很大,在不同端口上启动Web服务器。
以下是在php中启动服务器的方法:
protected function execute(InputInterface $input, OutputInterface $output)
{
$server = IoServer::factory(
new HttpServer(new WsServer(new Chat())),
8083
);
$server->run();
}
这是JS中的连接:
var ws = new WebSocket('ws://www.namesite.com:8083');
错误消息:
Firefox无法在ws://www.namesite.com:8083
建立与服务器的连接