How can I hide part of web, access by password only?

Montymouse

Distinguished
Jul 17, 2006
12
0
18,510
I'm building a website and need to hide a part of the web for members only, which they will access with a password. Can I do this using FrontPage or do I need a particular software package?
Montymouse
 

TimmyS

Distinguished
Jan 14, 2006
18
0
18,510
If you are running Windows Server and IIS, all you should have to do is change the permissions of the folder which contains the members-only page. Make sure you set up a local account on your computer for members to use for accessing the page.
 

fredweston

Distinguished
Jul 21, 2006
565
0
18,990
The way to go about doing it will be different depending on what kind of server you're using. If it's linux with Apache, I think there's a wizard in Frontpage that can do it for you. Basically all it's doing is creating an .htaccess file in the folder.

Windows is a bit more complicated because each user you want to allow access would need to have an account on the server. A somewhat simpler approach would be to do your authentication in "software". In other words, you could use PHP or ASP or something similar to check the username and password before letting the user see the page. This is much more secure than creating accounts for the users on the server. If you do some googling, you can probably find a prebuilt user authentication package for PHP, maybe ASP too but not as likely.
 

Sangkom

Reputable
Nov 27, 2015
1
0
4,510