DimmmCom
Thanks and yeah I do know to restart apache xD
Sadly that doesn't seem to change the issue either, here is some of the info I have so far:
I get this in the website console (firefox):
The connection to wss://[domain]:6001/socket.io/?EIO=4&transport=websocket was interrupted while the page was loading.
Firefox can’t establish a connection to the server at wss://[domain]:6001/.
and this in chrome:
WebSocket connection to 'wss://[domain]:6001/socket.io/?EIO=4&transport=websocket' failed: WebSocket is closed before the connection is established.
This on the websocket dashboard "Channels current state is unavailable" & in console:
The connection to wss://[domain]:6001/app/[key]?protocol=7&client=js&version=4.3.1&flash=false was interrupted while the page was loading.
This when I run curl -v http://127.0.0.1:6001
Trying 127.0.0.1:6001...
Connected to 127.0.0.1 (127.0.0.1) port 6001
GET / HTTP/1.1
Host: 127.0.0.1:6001
User-Agent: curl/8.5.0
Accept: /
Empty reply from server
Closing connection
curl: (52) Empty reply from server
This when I run npx wscat -c ws://127.0.0.1:6001
This when I run netstat -tulnp | grep 6001
tcp 0 0 0.0.0.0:6001 0.0.0.0:* LISTEN 4173832/php
I have also checked both in aaPanel and on my server provider that the port is open, and that only laravel websockets should be using that port, I have a laravel + nuxt app that works fine using nuxt's websockets but this app fails using laravel-websocket :/ oh and I do check that it is actually running before all this and no error logs in laravel or in the console that is running the websocket