Can anybody suggest me a simple and best solution to manage user logins (username & password) in a private network (localhost) web page without setting up a mysql or any such database systems?? I am running apache with php. It will be helpful if anybody give a php demo.

I accepted one answer, but It will be fine if somebody have a better solution

Thanks in advance... :)

blasteralfred

link|improve this question

Do you have an LDAP or Windows Active Directory server that you could utilize usernames and passwords from, on this local network? – Sean Apr 15 '11 at 16:53
I am having a windows vista system running apache... – blasteralfred Apr 15 '11 at 16:55
1  
User management without database is not overly difficult to accomplish. There are certainly exisiting solutions, just bad to google. Incidentally that are a multitude of scripts which manage .htpasswd files, which might be sufficient in your case. – mario Apr 15 '11 at 16:58
feedback

6 Answers

up vote 0 down vote accepted

There are other solutions like that, but I can't find nicer links right now:

Anyway. These scripts store usernames and passwords into a .htpasswd file. This can be used independently from the PHP script. .htaccess and .htpasswd is common authentication scheme for Apache webservers. See this tutorial: http://www.javascriptkit.com/howto/htaccess3.shtml or the Apache manual: http://httpd.apache.org/docs/2.0/howto/auth.html

You could use the class itself for authentication, but it doesn't look very current. The login management tool might be useful to you. (But again: there are probably easier ones to find.)

link|improve this answer
feedback

Depends on your webserver. Assuming apache, htpasswd for basic auth could be all you need.

Authentication, Authorization and Access Control gives the information you need to get started.

link|improve this answer
Yea i am running apache, could you tell me how to save usernames and passwords to protect a web page with multiple usernames and passwords?? – blasteralfred Apr 15 '11 at 16:56
click on the links and read. use your favorite search engine after that, there are loads of examples/tutorials out there (and on this site). – Mat Apr 15 '11 at 17:00
i think htpassword protect entire web pages. Is there any way to protect custom pages with multiple un & pw?? – blasteralfred Apr 15 '11 at 17:16
please read the second link posted. It tells you exactly how you can use multiple users & passwords. follow the other links and search google. – Mat Apr 15 '11 at 17:21
feedback

If you are using localhost, then wouldn't everyone have access to the filesystem?

I think the simplest solution is .htaccess though.

link|improve this answer
could you tell me how to save usernames and passwords to protect a web page?? – blasteralfred Apr 15 '11 at 16:56
feedback

Have a look at www.mykonosphotographs.com/musas/

I'm still in the process of writing a download page, but I can email you the script if you're interested. Use the contact from on the site.

It's a major modification to a single-password system written by someone else, and I've added lots of extra functionality which you can use or not, as you like.

Currently free. It won't be as soon as I've got the downloads page sorted! ;-)

Edit - too late! The downloads page is now sorted.

New URL - http://www.myksoftware.com

link|improve this answer
feedback

nope.

unless you want to save all information to files (like csvs)

but this could be a security threat if anyone got access to the files (which is easier than gaining access to a database)

php doc for reading csv file

link|improve this answer
i need a simple solution like csv.. Dont worry about security :) – blasteralfred Apr 15 '11 at 16:53
@blasteralfred so that is ur answer ^_^ – Neal Apr 15 '11 at 16:54
@Neal, could you tell me how to save usernames and passwords to protect a web page with multiple usernames and passwords?? – blasteralfred Apr 15 '11 at 16:57
same way you would do with a database. read up on csv file reading with php. again, you have to protect the files somehow (encode them? idk) – Neal Apr 15 '11 at 16:58
i posted a link for you – Neal Apr 15 '11 at 16:59
show 1 more comment
feedback

You can hide almost anything by various means.

For example, if your webspace provider permits it you can place files outside of your root directory. You can place files in a directory with some weird name like "jdf83usadj300p", with no link to them other than in php, which is parsed by serverside software without the clientside software ever seeing it. You can place passwords in a config file, if you call it something like "config.php" and make the first line:-

; <? php die(); ?>

Only an idiot would use the various javaScript "protection" methods out there like making the password the name of the next file. .htaccess can be cumbersome and can put people off. Far better make it attractive using server-side software.

If passwords are likely to be attacked, ALWAYS encrypt them. NEVER pass passwords from one page to another by GET method unless already encrypted. POST is more secure. md5 encrypting for most purposes is good, with encryption in-built in PHP and many algorithms out there freely available for javaScript. SHA-256 is almost the best there is fo almost any purpose. I don't think the US DoD or the UK MOD would be satisfied with it, but your local sports club's website (or similar) isn't exactly going to be a high-profile target for hackers.

Incidentally, blasteralfred, I sent you an email update. Hope you got it. Good luck!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.