Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Normal
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]
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]
We use essential cookies to make this site work, and optional cookies to enhance your experience.
See further information and configure your preferences