Ratchet icon indicating copy to clipboard operation
Ratchet copied to clipboard

Asynchronous WebSocket server

Results 175 Ratchet issues
Sort by recently updated
recently updated
newest added

I have a class that i created in user.php file called User and i want to access this class in the ratchet chat.php and when i tray to define a...

question

Thank You so much For Your Amazing Ratchet PHP library. it's Perfect Working on my localhost System with XAMPP. But it's not working on my shared web hosting so please...

This doesn't affect users who are only running one instance of Ratchet at a time, but it seems like Ratchet is hardcoded to only allow one instance on an entire...

Hi, I'm just starting out with the chat example from https://github.com/cboden/Ratchet-examples/blob/master/src/Tutorials/Chat.php I made the server with the following code: ``` $app = new App(); $app->route('/chat', new Chat(), ['*']); $app->run(); ```...

https://github.com/ratchetphp/Ratchet/blob/5012dc954541b40c5599d286fd40653f5716a38f/src/Ratchet/Http/HttpServer.php#L45 sending malformed headers to socket server will crash the server. like sending headers with _integer_ keys $haders = [1=>'test']; I think "OverflowException" should be replaced with "Throwable" in order...

how to send a message to a specific connection? ```php for ($j = 0; sizeof($this->conexao_atendentes[$i]["setor"]) > $j; $j++) { if ($setor == $this->conexao_atendentes[$i]["setor"][$j]) { echo "Enviar para " . $this->conexao_atendentes[$i]["conn"]...

Well, folks, this is what I've experienced for practically one month or so: I have a websocket service running via supervisor on port 8080, and it works perfectly with my...