•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the PHP section within the Web Development category of DaniWeb, a massive community of 330,295 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,855 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our PHP advertiser: Lunarpages PHP Web Hosting
I wrote four simple functions to manipulate .htpasswd file ( Apache ).
Last edited : Dec 29th, 2007.
<?php /* Author : Mitko Kostov Weblog : http://mkostov.wordpress.com Mail :mitko.kostov@gmail.com Date : 12/21/2007 Used : PHP and Smarty */ // function to register user function regUser() { $filename = 'members/password/.htpasswd'; $data = $_POST['username'].":".htpasswd($_POST['password'])."\n"; if (is_writable($filename)) { if (!$handle = fopen($filename, 'a')) { echo "Cannot open file ($filename)"; exit; } if (fwrite($handle, $data) === FALSE) { echo "Cannot write to file ($filename)"; exit; } // echo "Success, wrote ($data) to file ($filename)"; fclose($handle); } else { echo "The file $filename is not writable"; } } // function to show all users and passwords ( encrypted ) function showUser() { $file = file('members/password/.htpasswd'); $array = array(); $count = count($file); for ($i = 0; $i < $count; $i++) { list($username, $password) = explode(':', $file[$i]); $array[] = array("username" => $username, "password" => $password); } return $array; } function delUser($username) { $fileName = file('members/password/.htpasswd'); $pattern = "/". $username."/"; foreach ($fileName as $key => $value) { if(preg_match($pattern, $value)) { $line = $key; } } unset($fileName[$line]); if (!$fp = fopen('members/password/.htpasswd', 'w+')) { print "Cannot open file ($fileName)"; exit; } if($fp) { foreach($fileName as $line) { fwrite($fp,$line); } fclose($fp); } } // function for encrypting password function htpasswd($pass) { $pass = crypt(trim($pass),base64_encode(CRYPT_STD_DES)); return $pass; } ?>
Post Comment
•
•
•
•
DaniWeb Marketplace (Sponsored Links)