Reply to thread

Just wanted to offer an alternative to editing the core code directly if you need to use this as a workaround. Instead, you can actually make the changes by editing your config.php file and extending the session container:

[code=php]$c->extend('session', function(\XF\Session\Session $session)

{

   $session->setConfig([

        'ipv4CidrMatch' => 0,

        'ipv6CidrMatch' => 0

    ]);

   return $session;

});[/code]


Back
Top Bottom