tracker icon indicating copy to clipboard operation
tracker copied to clipboard

Logged in user can not track.

Open bhargav960143 opened this issue 5 years ago • 8 comments

My app db and tracker db are different.

Config/tracker.php file

'user_model' =>  'App\User',

Please guide me how can i get user?

Check my kernel.php still user entry is null in tracker session table

<?php

namespace App\Http;

use Illuminate\Foundation\Http\Kernel as HttpKernel;

class Kernel extends HttpKernel
{
    /**
     * The application's global HTTP middleware stack.
     *
     * These middleware are run during every request to your application.
     *
     * @var array
     */
    protected $middleware = [
        \Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode::class,
        \Illuminate\Foundation\Http\Middleware\ValidatePostSize::class,
        \App\Http\Middleware\TrimStrings::class,
        \Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class,
        \App\Http\Middleware\TrustProxies::class,
        \PragmaRX\Tracker\Vendor\Laravel\Middlewares\Tracker::class,
    ];

    /**
     * The application's route middleware groups.
     *
     * @var array
     */
    protected $middlewareGroups = [
        'web' => [
            \App\Http\Middleware\EncryptCookies::class,
            \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
            \Illuminate\Session\Middleware\StartSession::class,
            // \Illuminate\Session\Middleware\AuthenticateSession::class,
            \Illuminate\View\Middleware\ShareErrorsFromSession::class,
            \App\Http\Middleware\VerifyCsrfToken::class,
            \Illuminate\Routing\Middleware\SubstituteBindings::class,
        ],

        'api' => [
            'throttle:60,1',
            'bindings',
        ],
    ];

    /**
     * The application's route middleware.
     *
     * These middleware may be assigned to groups or used individually.
     *
     * @var array
     */
    protected $routeMiddleware = [
        'auth' => \Illuminate\Auth\Middleware\Authenticate::class,
        'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
        'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class,
        'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class,
        'can' => \Illuminate\Auth\Middleware\Authorize::class,
        'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
        'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class,
        'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
    ];
}

bhargav960143 avatar Oct 20 '18 12:10 bhargav960143

Same goes here

Haftisha avatar Oct 26 '18 06:10 Haftisha

Solved. You should put the tracker's middleware under $middlewareGroups within web. And change the tracker's session model relationship (vendor\pragmarx\src\Vendor\Laravel\Models\Session.php Line 31) as follows unless you are using the default Laravel users table public function user() { return $this->belongsTo($this->getConfig()->get('user_model'), 'user_id', $this->getConfig()->get('authenticated_user_id_column')); }

Haftisha avatar Oct 26 '18 08:10 Haftisha

You should put the tracker's middleware under $middlewareGroups within web.

How? Show the example plaese... I have same issue

lipasite avatar Nov 25 '18 12:11 lipasite

@lipasite

protected $middlewareGroups = [
        'web' =>
        [
            \App\Http\Middleware\EncryptCookies::class,
            \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
            \Illuminate\Session\Middleware\StartSession::class,
            // \Illuminate\Session\Middleware\AuthenticateSession::class,
            \Illuminate\View\Middleware\ShareErrorsFromSession::class,
            \App\Http\Middleware\VerifyCsrfToken::class,
            \Illuminate\Routing\Middleware\SubstituteBindings::class,
            \PragmaRX\Tracker\Vendor\Laravel\Middlewares\Tracker::class
        ],

        'api' => [
            'throttle:60,1',
            'bindings',
        ],
    ];

Haftisha avatar Nov 29 '18 12:11 Haftisha

@bhargav960143 @lipasite @Haftisha

Is this solved ?

napestershine avatar Jan 27 '19 15:01 napestershine

Nop

bhargav960143 avatar Jan 28 '19 05:01 bhargav960143

Nop

@napestershine can you please guide me how can i resolve this issue?

bhargav960143 avatar Jan 28 '19 05:01 bhargav960143

Any updates on this? Module tracks visits, but user_id column is always NULL. \Auth doesn't provide method check() but Guard does. Does moving to $middlewareGroups->'web' help?

danaki avatar Mar 06 '19 16:03 danaki