Most voted "ratchet" questions
5 questions
Sort by count of
-
1
votes0
answers206
viewsHow to identify the user in Ratchet PHP
I’m creating a multi-room chat with websockets, using PHP Ratchet. The framework itself facilitates the process of identifying the user, seeking his name through cookies, as can be observed here:…
-
0
votes1
answer1395
viewsUse PHP Websocket Ratchet online
I’m trying to use the Ratchet to create WebSockets in PHP on a site I own. When I did the tests (localhost) everything worked perfectly, but when I try to put online, it does not run the connection.…
-
0
votes0
answers207
viewsSend a message to the client when there is a system change with Websocket Ratchet PHP?
Hi, I made a PHP Websocket with Ratchet. The server.php is as follows: require "../vendor/autoload.php"; use Ratchet\Server\IoServer; use Ratchet\Http\HttpServer; use Ratchet\WebSocket\WsServer; use…
-
0
votes0
answers161
viewsChange user status when online with websockets (php Ratchet)
I’m making a chat using websockets with Ratchet, and I have a question regarding the user status. I made the page upload a list of all the contacts that the user has, and when the server receives a…
-
0
votes0
answers244
viewsRun Websocket with the hosted application
The project is a chat with php, Mysql and AJAX. I am using a Websocket with Ratchet to run in real time. It ran all right on the localhost, but when hosting the project I could no longer open the…