NamelessMC

Internet Explorer

Internet Explorer is not supported. Please upgrade to a more modern browser.

portal page default home
Started by Devincean

Devincean

Devincean

Member
Joined
30 Jun 2021
Last Seen
09 Mar 2024
Topics
1
Posts
2

So maybe i missed this but why is the portal.tpl setup as the default home page rather then index.tpl and is there a setting to change this?

Devincean · over 2 years ago
Devincean

Devincean

Member
Joined
30 Jun 2021
Last Seen
09 Mar 2024
Topics
1
Posts
2

nvm found fix to this in my \modules\Core\pages\index.php

if anyone else has this issue just change.

// Home page or portal?
$cache->setCache('portal_cache');
$use_portal = $cache->retrieve('portal');

if($use_portal !== 1) require('home.php');
else require('portal.php');

to

// Home page or portal?
$cache->setCache('homepage');
$use_portal = $cache->retrieve('portal');

if($use_portal !== 1) require('home.php');
else require('portal.php');
Devincean · over 2 years ago