Hi guys - the default installation of iCrew LITE sometimes does not automatically go to the login page if you visit the site while not logged in, or when your login session expires. I'm posting the fix below. Hope this helps some of you:
In index.php in the root of phpvms:
define('CODON_DEFAULT_MODULE', 'Frontpage');
change to:
define('CODON_DEFAULT_MODULE', 'Profile');
And in modules/Profile/Profile.php:
public function index()
{
if(!Auth::LoggedIn()) {
$this->set('message', 'You must be logged in to access this feature!');
$this->render('core_error.php');
return;
change to:
public function index()
{
if(!Auth::LoggedIn()) {
$this->render('login_form.php');
return;