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?
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.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.