Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Authenticate by certificate? 1

Status
Not open for further replies.

simon373

Programmer
Oct 25, 2006
25
0
0
I have a php based intranet and would like a user to only be able to login using one computer. Is there a way of implementing a certificate based system or similar?

Many thanks
 
If you want everybody to login from one particular computer, you can add this to your httpd.conf

Code:
Order allow, deny
Allow from 192.168.1.20

Of course, you would use the ip of the machine you want them to login from. If I misundersood and you want them to each be able to only login from their own machine, then you would use sessions and cookies which would make this a php issue and not an apache one. There is a php forum here at tek-tips.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top