Topic awaiting preservation: Can someone point me to... |
|
---|---|
Author | Thread |
Bipolar (III) Inmate From: Kapolei, Hawaii USA |
posted 09-08-2004 06:17
I'm trying to figure out a way to design a page that you need a password to enter. Basicly it's for my clients to preview their videos on my site but I |
Paranoid (IV) Inmate From: USA |
posted 09-08-2004 06:35
Not in Javascript. Since all the code is downloadable and viewable, any password you create would be simple to crack. I suggest looking in to Perl, PHP, Python, or any other server-side method of doing this. |
Paranoid (IV) Mad Librarian From: Berlin (almost) |
posted 09-08-2004 06:38
If you're allowed to create .htaccess / .htpasswd files on your server they'd be the option I'd go for. |
Bipolar (III) Inmate From: Kapolei, Hawaii USA |
posted 09-08-2004 06:39
Bummer, not to familiar with that stuff... any other suggestions? What would be the easiest PHP security screen if you could point to one? |
Nervous Wreck (II) Inmate From: Sweden |
posted 09-08-2004 07:56
There is one easy way to password protect your files using nothing but JavaScript. It's not very secure though... code: function CheckPass(pass){
|
Nervous Wreck (II) Inmate From: Umeå, Sweden |
posted 09-08-2004 16:41
Oh, come on! Apache: Authentication, Authorization, and Access Control, PHP: HTTP authentication with PHP. |
Nervous Wreck (II) Inmate From: Sweden |
posted 09-09-2004 07:52
I said it wasn't very secure. |
Bipolar (III) Inmate From: Kapolei, Hawaii USA |
posted 09-09-2004 21:16
Thanks guys! |