Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
88 views

I have a feeling I'm doing something very stupid but I cannot get the callback on useEchoPublic to fire no matter what I try The event is structured like so, this is pulled straight from the browser ...
AntlerFox's user avatar
  • 180
0 votes
0 answers
260 views

VPS GoDaddy, AlmaLinux. I'm writing a messenger and used the following technology stack: Laravel Reverb, Redis. I installed Reverb like this: php artisan install:broadcasting I couldn't configure the ...
viktoriya ivanets's user avatar
0 votes
1 answer
318 views

I have been struggling in getting Laravel Reverb to work with React in production. I have a Laravel API backend (apache) with a separate React frontend (ngnix) and I can get my integration working ...
pbrune's user avatar
  • 500
0 votes
0 answers
49 views

I have the folllowing noitification: <?php namespace App\Notifications; use App\Models\Comment; use App\Models\Ticket; use Illuminate\Broadcasting\PrivateChannel; use Illuminate\Bus\Queueable; ...
gclark18's user avatar
  • 723
0 votes
0 answers
71 views

in a test purpose, created below: Route::get('/test-item/{subId}', function ($subId) { // Retry logic: Retry 3 times with 3 seconds delay between attempts $maxRetries = 3; $retryDelay = 3; // in ...
Edmon's user avatar
  • 118
0 votes
0 answers
182 views

I’m using Laravel Reverb and Laravel Echo to make my frontend real-time, but I ran into an issue where I can’t fully monitor when a user disconnects directly from the server. Could you help me find a ...
Victor Rodrigues's user avatar
0 votes
1 answer
2k views

When trying to connect websocket in VPS having issues while working great in local with Laravel-Reverb. Getting the following error: app-91M7mm_A.js:13 WebSocket connection to 'wss://dev.srv675327....
Wahidul Alam's user avatar
  • 1,227
0 votes
0 answers
133 views

Websocket doesn't connect in frontend when application is on cpanel host and the stranger thing is if we open reverb port in other browser tab and take 'not found' as response, It will start to ...
Sina Rezvani's user avatar
0 votes
1 answer
110 views

I am creating a AI ChatBot. The message is entered on the frontend (Livewire) and then stored in the database. A model "created" listener then pushes a job onto the queue which asks the AI (...
Ed Stephenson's user avatar
0 votes
0 answers
71 views

I'm trying to build a real-time notification system. config/broadcasting.php: 'connections' => [ 'pusher' => [ 'driver' => 'pusher', 'key' => env('...
user25934652's user avatar
0 votes
1 answer
884 views

I'm building a template project for myself, and I've got Reverb and Echo working as intended with regular channels, but when using private channels, the /broadcasting/auth route returns a 401 ...
dannypas00's user avatar
0 votes
2 answers
935 views

I am using laravel 11 in my web application. I am trying to implement reverb connection between my laravel 11 and react front end using rest api. The websocket connection seems established but the ...
Selvakumar Eswaran's user avatar
0 votes
1 answer
161 views

i am working with laravel 8 and beyondcode library to work with laravel websocket and realtime chat when i am triggering an event with tinker or controller my laravel echo in the frontend not getting ...
Gautam Yadav's user avatar
0 votes
1 answer
781 views

My client side laravel-echo is not sending cookie param in headers, braodcasting/auth requires a cookie in headers to authorize websocket connection, when I try sending the same request with fetch it ...
Arman Ali's user avatar
0 votes
1 answer
297 views

I would like to track the changes in the column "status" in my database in real-time in my react-js app, so I created a Laravel job to update the column. So I created an event that will be ...
aliii's user avatar
  • 31
0 votes
1 answer
641 views

I am wondering if there is any mechanism or hook which would fire when a component unmounts. I looked through both v2 and v3 docs and I couldn't find something like that. Use case: I am looking to ...
Vivere's user avatar
  • 2,340
0 votes
0 answers
777 views

I am going to setup a websocket I have used soketi package But I am facing a problem in connecting to the web socket which now i will get this error code: 4001 message: "App key ---- does not ...
Mohammadjavad Rasti's user avatar
2 votes
3 answers
2k views

I am trying to install and use laravel-echo and pusher-js. I have the following: bootstrap.ts import Pusher from 'pusher-js'; import Echo from 'laravel-echo'; window.Pusher = Pusher; window.Echo = ...
matt's user avatar
  • 2,127
0 votes
4 answers
374 views

So I was trying to use Laravel echo null package and it's connecting and it sends the data I give I can see it in the web version of the app which is built using vue js but here when I'm listening to ...
yyyy's user avatar
  • 125
0 votes
0 answers
216 views

I'm having problems with Laravel Websockets. I build a chat app using Laravel Websockets, Vue.JS and Laravel-Echo. The web app works correctly, so I started working in a Mobile version with React ...
Santiago Aguirre Perez's user avatar
0 votes
0 answers
101 views

enter image description here Websocket can run well but there is still an error, namely Reference Pusher is not defined, what should I do. export const echoInstance = new Echo({ broadcaster: "...
Alsolious Bayu's user avatar
0 votes
1 answer
381 views

I'm trying to build my docker sample to work with php8.2, laravel10, websockets and redis. I have already prepared all the necessary docker images and combined them with the Caddy proxy. I also used ...
Dambas's user avatar
  • 1
0 votes
1 answer
716 views

I am building notification for new messages and want to broadcast these notifications to client side, instantly. My code can broadcast a new message notification, but the problem is listening to data ...
Rumike7's user avatar
  • 29
0 votes
1 answer
310 views

I'm using Laravel Broadcasting with Soketi and I'm trying to listen to the jobs channel and JobFailedEvent. So here is my code. class JobFailedEvent implements ShouldBroadcast { use ...
warmxd's user avatar
  • 25
4 votes
0 answers
363 views

I'm using vitest and @vue/test-utils to test a Laravel/Vue3 UI. The boostrap.js file adds axios, pusher and Echo to the window object and the components then have access to use them directly without ...
Matt Larsuma's user avatar
  • 1,519

1
2 3 4 5
13