Questions tagged [laravel-websockets]
190 questions
0
votes
0 answers
Laravel Websockets - Why do we still need valid Pusher API keys
I am using Laravel WebSockets on my project.
And it is told that Laravel WebSockets is pusher replacement.
PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_APP_CLUSTER=
PUSHER_APP_HOST=
But my question is
Why do we still need valid pusher…

LoveCoding
- 1,121
- 2
- 12
- 33
0
votes
1 answer
Laravel websocket wont trigger event from vue front end
I already have setup my websocket connection with pusher. I can fire events at the websocket admin and i can show the output of it via console.log. Now i created a new event that if the user adds new product, the table will be updated whenever who…

draw134
- 1,053
- 4
- 35
- 84
0
votes
3 answers
Laravel websockets failed to connect in pusher
When I run my project, I got an exception error but it does not have a clear message. I only have this kind of the main body error
I can access websocket admin page at http://127.0.0.1:8000/laravel-websockets but when i go http://127.0.0.1:8000/ i…

draw134
- 1,053
- 4
- 35
- 84
0
votes
1 answer
Laravel websocket is getting error when i send a message from my JS client
Im building a websocket service in my Laravel app versión 6.2, and using the laravel-websockets package version 1.3 (https://github.com/beyondcode/laravel-websockets).
So, it works fine, but im customizing my websocket to according the…

Simón Farias
- 732
- 2
- 8
- 21
0
votes
1 answer
WSS Secure Websockets on Elastic Beanstalk with Apache PHP and Laravel
Having issues getting secure websockets to work in laravel on AWS elastic beanstalk.
They work fine in dev and production over http & ws.
In dev it works fine over https and wss.
In production (with all the same settings, just different certs) over…

Ryk Waters
- 657
- 3
- 8
- 22
-1
votes
0 answers
Error: Unexpected server response: 405 in postman when I try to connect websockets
I got an error that I can't understand how to solve. I am making chat application API using websocket. When I test on Postman it gives me an error which I mentioned in the above title. Tell me how to solve this error? Is there any version error or…

Afshal Sajid
- 1
- 1
-1
votes
1 answer
Laravel Websockets Reverse Proxy SSL
I decided to use the Laravel Websockets in my projects, which downloading and testing the package locally does the work, but when I tried to deploy my Laravel Websocket application to the remote server (AWS EC2) for Production purpose the websocket…

kianoosh Azarvandi
- 31
- 2
- 11
-1
votes
1 answer
PHP Websocket Client
I'm currently attempting to create a WebSocket client to connect to a wss:// URL with PHP (without using JavaScript). It's been a few days trying to program a simple function or class that can do so.
I tried and looked into fsockopen, various…

Oliver M Grech
- 3,071
- 1
- 21
- 36
-1
votes
1 answer
Laravel websockt not connecting on live server ubuntu?
I am trying to use laravel websockt on ubuntu server. it is working fine on localhost but on ubuntu server when i try to connect it is not working.
In console I am receiving this error
WebSocket connection to…

Bilal Arshad
- 531
- 3
- 11
- 33
-1
votes
1 answer
Keep Track of laravel websocket with monit centos
Im trying to monitor laravel-websocket with monit instead of supervisord because of more options it provides
So In my /home/rabter/laravelwebsocket.sh :
#!/bin/bash
case $1 in
start)
echo $$ > /var/run/laravelwebsocket.pid;
…

Pc Monk
- 75
- 2
- 4
- 24