Git Product home page Git Product logo

Comments (4)

gokhanpeker avatar gokhanpeker commented on July 30, 2024

I have this problem too..

from laravel_chat.

gokhanpeker avatar gokhanpeker commented on July 30, 2024

The problem is solved by correct .env options.

from laravel_chat.

samironbarai avatar samironbarai commented on July 30, 2024

The problem is solved by correct .env options.

You can provide your answer so that others can get helped :)

from laravel_chat.

gokhanpeker avatar gokhanpeker commented on July 30, 2024

Of course Samiron :)

I change three files.

First .env file

BROADCAST_DRIVER=pusher

PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_APP_CLUSTER=

this credentials can be found in pusher account, channels(projects) -> App Keys

Second file is HomeController, sendMessage function

// pusher
$options = array(
'cluster' => 'eu',
'useTLS' => true
);

    $pusher = new Pusher(
        env('PUSHER_APP_KEY'),
        env('PUSHER_APP_SECRET'),
        env('PUSHER_APP_ID'),
        $options
    );

and the finnal one app.blade file inside resources->views->layouts->app.blade

we need the change with pusher app key with between Pusher(' ',

var pusher = new Pusher('1d914f493de58f18', {
cluster: 'eu',
forceTLS: true
});

And finnaly we need to run: npm run dev
with console.

It's working like a charm. Thank you very much :)

from laravel_chat.

Related Issues (6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.