Portal page no longer shows on as main website page, not to sure when it happened
The portal can be accessed by clicking on the portal link
and the side portal is all displayed correctly on all pages
Since the update, the landing page of the site is now the index page.
I have followed numerous topics to resolve this and havent been able to get it to work
prior to updates, when you went to " test.com " it shows the portal page and the http address bar was
Code: Select all
www.test.com
To have the portal page show as main page now have to have the http address bar as
Code: Select all
www.test.com/app.php/portal
Open includes/functions.php
Find:
Code: Select all
$redirect = request_var('redirect', "{$phpbb_root_path}index.$phpEx");
Code: Select all
$redirect = request_var('redirect', "{$phpbb_root_path}YOUR PAGE NAME.$phpEx");
Open root/.htaccess
Add
Code: Select all
DirectoryIndex app.php index.php index.html index.htm
In ucp.php find:
Code: Select all
case 'login':
if ($user->data['is_registered'])
{
redirect(append_sid("{$phpbb_root_path}index.$phpEx"));
}
login_box(request_var('redirect', "index.$phpEx"));
Code: Select all
case 'login':
if ($user->data['is_registered'])
{
redirect(append_sid("{$phpbb_root_path}portal.$phpEx"));
}
login_box(request_var('redirect', "portal.$phpEx"));
many thanks