I'm using FrontendUser, and have a Log In form on my front page.
But if you Google some of the contents on the site, you can through
the Google find results go straight in on my site without logging in.
This is possible on computers where no ones ever logged in to my site,
so it's not a case of my site just remembering the visitor. How can I
stop this from happening? Thanks!
Log In passed by Google
Re: Log In passed by Google
One way would be to use a different template for members-only pages which has the content wrapped within custom content tags
so something like:
that way even if they know the page name they won't be able to view the content.
so something like:
Code: Select all
{cms_module module=CustomContent}
<!--customContent: startif group=members -->
{content}
<!--customContent: else -->
<p>Sorry, you need to be logged in to see this page</p>
<!--customContent: endif -->

