Michael Babker

Results 428 comments of Michael Babker

For 2, there isn’t a recipe that Symfony Flex applies (I tried to create one before but was having an issue building a useful enough config file that worked for...

The config looks fine. For the session bit to work correctly, it needs to be able to parse the session cookie from the main website. If your websocket subdomain is...

You’re accessing the websocket server by IP address and the website with a domain name. Effectively, the websocket server is on a separate domain and the session cookie won’t be...

You need both the domain and the IP in the config. I’m not near a computer to check my own app configs, but essentially one of the fields is the...

I haven't touched either of the wiki articles on this repo, but before we moved to our current hosting setup, we were using something pretty similar to https://github.com/GeniusesOfSymfony/WebSocketBundle/wiki/Set-up-Gos-Web-Socket-Bundle-in-AWS-(Production---Symfony-Application)-with-SSL for the...

What’s the full stack trace on this error? The fact it is logged on the “request” channel makes me think that the error isn’t even coming from the websocket server...

I doubt this is an issue within the bundle code. Without the full context, it seems like the `react/event-loop` is having issues reading from the chosen stream. Most likely, with...

I couldn't tell you to be honest if that approach is even possible out-of-the-box. This bundle and the underlying Ratchet library expect to be able to share a session started...

The [demo app](https://github.com/GeniusesOfSymfony/WebsocketAppDemo) was upgraded to run Symfony 4.2 over the weekend and personally I've got an app in production I upgraded to Symfony 4.2 last Friday (upgraded from 3.4...

There's also a 1.x branch on the demo app corresponding with the 1.x branch on this repo.