We are facing strange issue in admin login. After login to admin side, access 1 to 2 pages, it again shows login page. When pressing Ctrl + R couple of times it again shows logged in.
Can anyone help what's the exact issue? Why it shows admin page again after login?
Here's my config.php:
Can anyone help what's the exact issue? Why it shows admin page again after login?
Here's my config.php:
PHP:
<?php
$config['db']['host'] = 'XXXX';
$config['db']['port'] = '3306';
$config['db']['username'] = 'XXXX';
$config['db']['password'] = 'XXXX';
$config['db']['dbname'] = 'XXXX';
$config['cookie']['prefix'] = 'XXXX_';
$config['cookie']['path'] = '/';
$config['cookie']['domain'] = '.XXX.XXX.com';
$config['cache']['enabled'] = true;
$config['cache']['sessions'] = true;
$config['cache']['provider'] = 'Redis';
$config['cache']['config'] = [
'host' => 'XXXX',
'port' => '6379'
];
$config['cache']['namespace'] = 'XXXX_';
$config['enableMail'] = false;
$config['superAdmins'] = '1';
$config['enableAddOnArchiveInstaller'] = true;
$config['development']['enabled'] = true;