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;








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));


enter image description here










share|improve this question
























  • 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

















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));


enter image description here










share|improve this question
























  • 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













0












0








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));


enter image description here










share|improve this question














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));


enter image description here







php laravel vue.js






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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

















  • 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












1 Answer
1






active

oldest

votes


















1















in config/broadcasting.php i just set the encrypted to false and it works!






share|improve this answer
























    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
    );



    );













    draft saved

    draft discarded


















    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









    1















    in config/broadcasting.php i just set the encrypted to false and it works!






    share|improve this answer





























      1















      in config/broadcasting.php i just set the encrypted to false and it works!






      share|improve this answer



























        1














        1










        1









        in config/broadcasting.php i just set the encrypted to false and it works!






        share|improve this answer













        in config/broadcasting.php i just set the encrypted to false and it works!







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 27 at 22:12









        Mikolaj MarciniakMikolaj Marciniak

        206 bronze badges




        206 bronze badges





















            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.



















            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

            Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript