Why is Laravel & Pusher not working on localhost but works on production?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?How to notify user that new channel needs to be opened using Pusher?Laravel and Pusher - API message not sentLaravel BroadcastingLaravel Pusher not working in ProductionPusher Doesn't Broadcast on Private Channels -PHP/Laravellaravel 5.4 pusher(laravel echo) 403 error with private channelBroadcast private channels do not work in Laravel/PusherLaravel broadcasting on Pusher, failed job queue
Is there a better way to use C# dictionaries than TryGetValue?
Why does this London Underground poster from 1924 have a Star of David atop a Christmas tree?
Why does AM radio react to IR remote?
Is this position a forced win for Black after move 14?
Why can't you say don't instead of won't?
Stolen MacBook should I worry about my data?
Inspiration for failed idea?
What is the sound/audio equivalent of "unsightly"?
What should be done with the carbon when using magic to get oxygen from carbon dioxide?
Does Mirrorwing Dragon's ability trigger when redirects are involved?
Notice period 60 days but I need to join in 45 days
The meaning of asynchronous vs synchronous
What to do about my 1-month-old boy peeing through diapers?
Which polygons can be turned inside out by a smooth deformation?
What ways are there to "PEEK" memory sections in (different) BASIC(s)
How to prevent a hosting company from accessing a VM's encryption keys?
Why is the Grievance Studies affair considered to be research requiring IRB approval?
Find feasible point in polynomial time in linear programming
Should I judge the efficacy of Samadhi based on the ethical qualities of the meditator?
Why doesn't Starship have four landing legs?
Normalized Malbolge to Malbolge translator
Is there a way to tell what frequency I need a PWM to be?
Group riding etiquette
Why nature prefers simultaneous events?
Why is Laravel & Pusher not working on localhost but works on production?
How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?How to notify user that new channel needs to be opened using Pusher?Laravel and Pusher - API message not sentLaravel BroadcastingLaravel Pusher not working in ProductionPusher Doesn't Broadcast on Private Channels -PHP/Laravellaravel 5.4 pusher(laravel echo) 403 error with private channelBroadcast private channels do not work in Laravel/PusherLaravel broadcasting on Pusher, failed job queue
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm making a little dating app where I use Pusher and Laravel. I use an event called NewMessage
and listening on channel msg.userId
. Listening works, however broadcasting events doesn't. It works on production though.
My code is as follows:
NewMessage.php
public function __construct(Message $message, $toUserId, $conversation)
//
$this->message = $message;
$this->toUserId = $toUserId;
$this->conversation = $conversation;
/**
* Get the channels the event should broadcast on.
*
* @return Channel|array
*/
public function broadcastOn()
return new PrivateChannel('msg.'.$this->toUserId);
public function broadcastAs()
return 'NewMessage';
ConversationController.php
event(new NewMessage($message, $toUserId, $conversation));
php laravel vue.js
add a comment |
I'm making a little dating app where I use Pusher and Laravel. I use an event called NewMessage
and listening on channel msg.userId
. Listening works, however broadcasting events doesn't. It works on production though.
My code is as follows:
NewMessage.php
public function __construct(Message $message, $toUserId, $conversation)
//
$this->message = $message;
$this->toUserId = $toUserId;
$this->conversation = $conversation;
/**
* Get the channels the event should broadcast on.
*
* @return Channel|array
*/
public function broadcastOn()
return new PrivateChannel('msg.'.$this->toUserId);
public function broadcastAs()
return 'NewMessage';
ConversationController.php
event(new NewMessage($message, $toUserId, $conversation));
php laravel vue.js
Do you have SSL connection in production? :)
– Benjamin Beganović
Mar 27 at 21:49
yes, its on heroku
– Mikolaj Marciniak
Mar 27 at 22:08
add a comment |
I'm making a little dating app where I use Pusher and Laravel. I use an event called NewMessage
and listening on channel msg.userId
. Listening works, however broadcasting events doesn't. It works on production though.
My code is as follows:
NewMessage.php
public function __construct(Message $message, $toUserId, $conversation)
//
$this->message = $message;
$this->toUserId = $toUserId;
$this->conversation = $conversation;
/**
* Get the channels the event should broadcast on.
*
* @return Channel|array
*/
public function broadcastOn()
return new PrivateChannel('msg.'.$this->toUserId);
public function broadcastAs()
return 'NewMessage';
ConversationController.php
event(new NewMessage($message, $toUserId, $conversation));
php laravel vue.js
I'm making a little dating app where I use Pusher and Laravel. I use an event called NewMessage
and listening on channel msg.userId
. Listening works, however broadcasting events doesn't. It works on production though.
My code is as follows:
NewMessage.php
public function __construct(Message $message, $toUserId, $conversation)
//
$this->message = $message;
$this->toUserId = $toUserId;
$this->conversation = $conversation;
/**
* Get the channels the event should broadcast on.
*
* @return Channel|array
*/
public function broadcastOn()
return new PrivateChannel('msg.'.$this->toUserId);
public function broadcastAs()
return 'NewMessage';
ConversationController.php
event(new NewMessage($message, $toUserId, $conversation));
php laravel vue.js
php laravel vue.js
asked Mar 27 at 21:15
Mikolaj MarciniakMikolaj Marciniak
206 bronze badges
206 bronze badges
Do you have SSL connection in production? :)
– Benjamin Beganović
Mar 27 at 21:49
yes, its on heroku
– Mikolaj Marciniak
Mar 27 at 22:08
add a comment |
Do you have SSL connection in production? :)
– Benjamin Beganović
Mar 27 at 21:49
yes, its on heroku
– Mikolaj Marciniak
Mar 27 at 22:08
Do you have SSL connection in production? :)
– Benjamin Beganović
Mar 27 at 21:49
Do you have SSL connection in production? :)
– Benjamin Beganović
Mar 27 at 21:49
yes, its on heroku
– Mikolaj Marciniak
Mar 27 at 22:08
yes, its on heroku
– Mikolaj Marciniak
Mar 27 at 22:08
add a comment |
1 Answer
1
active
oldest
votes
in config/broadcasting.php i just set the encrypted
to false and it works!
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55386568%2fwhy-is-laravel-pusher-not-working-on-localhost-but-works-on-production%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
in config/broadcasting.php i just set the encrypted
to false and it works!
add a comment |
in config/broadcasting.php i just set the encrypted
to false and it works!
add a comment |
in config/broadcasting.php i just set the encrypted
to false and it works!
in config/broadcasting.php i just set the encrypted
to false and it works!
answered Mar 27 at 22:12
Mikolaj MarciniakMikolaj Marciniak
206 bronze badges
206 bronze badges
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55386568%2fwhy-is-laravel-pusher-not-working-on-localhost-but-works-on-production%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Do you have SSL connection in production? :)
– Benjamin Beganović
Mar 27 at 21:49
yes, its on heroku
– Mikolaj Marciniak
Mar 27 at 22:08