Home button goes to splash page even when user logged in
When logged-in user clicks the Home button in the top menu bar, it shows them the splash/login screen, so they think they need to log in again, even though they are actually still logged in. Logging in "again" on that page brings them back to the same splash page again, still asking them to log in.
However if they manually add /index.php to the URL, they are taken to the correct Home page and can view it properly (because they are indeed logged in).
This is only happening with my "Standard" level test accounts and does not happen with the default admin account.
I am using Spacenook, updated to the current version. I have cleared the cache in the una Dashboard, in my host, and in my browser.
-
-
·
LeonidS
- ·
Hello @cwill !
The UNA packages (like Spacenook too) have the index.php file only. It would be good to look on the files right on your server, but as you said: "in my host, and in my browser" - do you work with it locally? If notm then send me the access credentials via the Messenger here.
-
·
LeonidS
-
- · cwill
- ·
Sorry, I don't understand what you're asking?
I only mentioned my host and browser because I cleared the cache in both to see if that would resolve the issue (it did not). I run UNA on a host (siteground), and the index.php file is there and has not been edited.
My issue is that when a user clicks the Home button, it shows them the splash/login page instead the proper home page, even though they are already logged in. It should not show the splash/login page to logged-in users.
-
- · cwill
- ·
sent you a message as requested
The closest I could find in the discussion forums was this thread: https://unacms.com/d/serious-problem-with-my-website
but in my case I already have NGIX turned off on my server so it did not resolve the issue
-
- · cwill
- ·
I ended up finding a solution in this other thread here: https://unacms.com/d/redirect-after-login
emplate/script/BxBaseFormLogin.php:
$sRelocate = BX_DOL_URL_ROOT . 'member.php';
replaced member.php with index.php and it forced the index page to appear to logged-in members instead of the splash page.
I also replaced the Home link with a direct link to index.php so it wouldn't loop logged in users back to the splash page as well