PDA

View Full Version : Password Access, easy updates, etc.



digitalleigh
02 Nov 2008, 08:08 PM
I have a friend who wants me to help him with a site including some things I'm a bit unfamiliar with.

1. A members only page - he wants password access to some of the content. Is this easy to include? Are there any online tutorials or websites that can help guide me through this process if it is difficult?

2. He wants to be able to update his site with new clips fairly regularly... but he doesn't know anything about web development. It will be an HTML / CSS site, so I'm not sure how I should go about that for him.

3. Is it possible to guarantee that a clip is only viewable and that there is no way to save it on a client computer?

Thank you for your time!!

Alan
09 Nov 2008, 09:54 PM
I have a friend who wants me to help him with a site including some things I'm a bit unfamiliar with.

1. A members only page - he wants password access to some of the content. Is this easy to include? Are there any online tutorials or websites that can help guide me through this process if it is difficult?

2. He wants to be able to update his site with new clips fairly regularly... but he doesn't know anything about web development. It will be an HTML / CSS site, so I'm not sure how I should go about that for him.

3. Is it possible to guarantee that a clip is only viewable and that there is no way to save it on a client computer?

Thank you for your time!!

1. The level of difficulty is dependent on how secure you wish to make it. If your looking for a simple but effective approach, look into .htaccess files. You can create groups and passwords simple with that technique. You need to be using the Apache HTTP Web Server however. (Do a Google search for .htaccess and .htpasswd files and you should get a decent article on the first page.)

2. You would need to use some server-side scripting language (PHP, ASP, JSP etc...) to process any client side forms if you don't want to directly modify the html code. And a database would be the ideal way of doing it, but not completely necessary. If your not interested in learning PHP or MySQL etc... you should teach him some HTML and CSS. If he is going to be updating the site, he should have a basic understanding of these technologies.

3. Guarantee... no. If you don't want someone to duplicate your work, don't make it viewable to the world. The internet = sharing. :) If you have any specific questions regarding PHP & MySQL... post away. :) Oh and best of luck with it. :)