This is a series security breach. And should not be made to a production board.
In order to disable the login screen every time you login to your ACP on your localhost setup. Just follow those steps:
Open: admin/sources/base/ipsRegistry.php and find:
Replace with:
Replace the number 1 with the desired member ID to log in with all the time.
In order to disable the login screen every time you login to your ACP on your localhost setup. Just follow those steps:
Open: admin/sources/base/ipsRegistry.php and find:
$validationStatus = self::member()->sessionClass()->getStatus(); $validationMessage = self::member()->sessionClass()->getMessage();
Replace with:
$validationStatus = true;#self::member()->sessionClass()->getStatus(); $validationMessage = self::member()->sessionClass()->getMessage(); self::$handles['member']->setMember(1);
Replace the number 1 with the desired member ID to log in with all the time.













