Page 1 of 1

online security question

Posted: Tue Dec 02, 2008 7:55 am
by sushi
lets assume a bunch of guys want to put up a very simple webpage. One opening page and a second page with a timetable for events. The second page is supposed to be accessed via login (same password for everybody) only.

Here is the question: is there an easy way of putting online the contact data of the members within the second page with relative safety against finding them the next day in google search and the like?

Posted: Tue Dec 02, 2008 11:00 pm
by Goggles
how about a php page that does a login check before printing the data?

Simple abstract algorithm:

if not logged in
display login info
else
display authorized content


you could fire up a page like that rather quickly, and the google webcrawler would automatically only get the output from the not-logged-in portion.

Posted: Fri Dec 05, 2008 4:50 pm
by SSnake_Plissken
- Or -

You could put up a php page that does a login check before printing the data?

Simple abstract algorithm:

if not logged in
display login info
else
display authorized content

You could fire up a page like that rather quickly, and the google webcrawler would automatically only get the output from the not-logged-in portion.

Posted: Sat Dec 06, 2008 9:47 am
by ramboon
There is another simple way how you could do it:

You could put up a php page that does a login check before printing the data?

Simple abstract algorithm:

if not logged in
display login info
else
display authorized content

You could fire up a page like that rather quickly, and the google webcrawler would automatically only get the output from the not-logged-in portion.

Posted: Mon Dec 08, 2008 10:47 am
by SSnake_Plissken
Yeah, that's probably the best way to do it...

Posted: Mon Dec 08, 2008 11:09 am
by LandRover
:lol: :lol: :lol:

I cannot add much to this long list of great suggestions, but here is a software I use on my site for my students to make sure everyone gets only the class material for his level. There are great add-ons to do anything you may want to have from an active community.

It is called Joomla! and it is Free Software released under the GNU/GPL License.
http://www.joomla.org/

Posted: Mon Dec 08, 2008 2:27 pm
by ph1l0r
check if your host allows .htaccess access control. googling for .htaccess will yield you a shitload links. additionally place a robots.txt on your website that explicitly disallows search engines to index the sites. the robots.txt file will be honored by reasonable search engines like google, yahoo, microsoft search etc. pp.

Posted: Tue Dec 09, 2008 2:46 am
by BRUMMIE
Well I found myself thinking along the same lines as you Phil as that seemed to make sense, but then I had a brainstorm and thought what if you could put up a php page that does a login check before printing the data?

Simple abstract algorithm:

if not logged in
display login info
else
display authorized content

You could fire up a page like that rather quickly, and the google webcrawler would automatically only get the output from the not-logged-in portion.