on 03/01/17 at 12:50
I don't have to test it but the file you must edit is
\app\Controller\AppController.php
Find:
) {
$this->redirect('/users/member_login');
exit;
}
Do something as:
) {
if(strpos($_SERVER["REQUEST_URI"], "guest=y") === false))
{
$this->redirect('/users/member_login');
exit;
}
}