Page 1 of 1

Log In passed by Google

Posted: Fri Sep 14, 2007 10:26 am
by gummi
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!

Re: Log In passed by Google

Posted: Fri Sep 14, 2007 12:38 pm
by scooper
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:

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 -->

that way even if they know the page name they won't be able to view the content.

Re: Log In passed by Google

Posted: Fri Sep 14, 2007 5:24 pm
by Pierre M.
Thank you scooper :-)

Pierre M.