- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Linking unix users and php users
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-27-2010 07:39 AM
тАО12-27-2010 07:39 AM
Linking unix users and php users
I got php script where can create users and give password and allow them to acess files(through web).
Here I use .htusers.php file for user authorization,
I want to link unix local user to this users(which are under ./htusers.php)so that i will not face any permission issue.
Chandra
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-27-2010 01:01 PM
тАО12-27-2010 01:01 PM
Re: Linking unix users and php users
http://www.google.com/search?q=apache+php+use+passwd+authentication
hope this helps
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-27-2010 07:58 PM
тАО12-27-2010 07:58 PM
Re: Linking unix users and php users
Its apache web server.
Chadra
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-27-2010 11:57 PM
тАО12-27-2010 11:57 PM
Re: Linking unix users and php users
there are several authentication schemes and modules available for Apache.
One that seems viable to me would be to authenicate your web users against an LDAP directory to which end there exists mod_auth_ldap
http://httpd.apache.org/docs/2.0/mod/mod_auth_ldap.html
Of course, the easiest and probably most common form for websites with a moderate user base would be to simply use mod_auth with AuthType Basic against an AuthUserFile.
http://httpd.apache.org/docs/2.0/mod/mod_auth.html
But then you would have to keep this file somehow in sync with your system's passwd and group files.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-28-2010 12:19 AM
тАО12-28-2010 12:19 AM
Re: Linking unix users and php users
This is where i am looking for,
if i create user using httpasswd how unix file permission will be maintained??
Chandra