Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/08/20 in all areas

  1. No worries. Hopefully someone will be able to assist you with your issue.
    1 point
  2. It might help you get an answer quicker if you post in English instead of Portuguese.
    1 point
  3. 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;
    1 point
×
×
  • Create New...