Med file_get_contents/fopen/fwrite/flock/fclose kan du vel, formatet er username:password hvor password som regel er krypteret med systemets crypt() (php's crypt() er det samme)... Men hvorfor vil du have det til at være .htaccess? Hvorfor ikke bruge php-logins med sessions? Du kan også selv lave din egen "pseudo-htaccess user/password prompt": http://dk.php.net/features.http-auth
@straszek: Jeg har afvist dit svar fordi jeg ikke har været i stand til at få scriptet til at virke. Jeg forstår ikke hvordan det script virker, jeg har prøvet for sjov at sætte den op på min server, men den giver bare en blank side.
<?php if (!isset($_SERVER['PHP_AUTH_USER'])) { header('WWW-Authenticate: Basic realm="My Realm"'); header('HTTP/1.0 401 Unauthorized'); echo 'Text to send if user hits Cancel button'; exit; } else { // HER SKAL DU CHECKE OM $_SERVER['PHP_AUTH_USER'] passer med $_SERVER['PHP_AUTH_PW'] // DU KAN BRUG EN DATABASE, ELLER HVAD DU HAR LYST TIL. // ER KODEN FORKERT SENDER DU BLOT "401 Unauthorized" SOM OVENFOR echo "<p>Hello {$_SERVER['PHP_AUTH_USER']}.</p>"; echo "<p>You entered {$_SERVER['PHP_AUTH_PW']} as your password.</p>"; } ?>
/** * Class for handling htaccess of Apache * @author Sven Wagener <sven.wagener@intertribe.de> * @copyright Intertribe - Internetservices Germany * @include Funktion:_include_ */
class htaccess{ var $fHtaccess="domæne.dk/cms/.htaccess"; // path and filename for htaccess file var $fHtgroup=""; // path and filename for htgroup file var $fPasswd=".htmaster/.ok_user"; // path and filename for passwd file
var $authType="Basic"; // Default authentification type var $authName="Internal area"; // Default authentification name
/** * Initialising class htaccess */ function htaccess(){ }
/** * Sets the filename and path of .htaccess to work with * @param string $filename the name of htaccess file */ function setFHtaccess($filename){ $this->fHtaccess=$filename; }
/** * Sets the filename and path of the htgroup file for the htaccess file * @param string $filename the name of htgroup file */ function setFHtgroup($filename){ $this->fHtgroup=$filename; }
/** * Sets the filename and path of the password file for the htaccess file * @param string $filename the name of htgroup file */ function setFPasswd($filename){ $this->fPasswd=$filename; }
/** * Adds a user to the password file * @param string $username Username * @param string $password Password for Username * @param string $group Groupname for User (optional) * @return boolean $created Returns true if user have been created otherwise false */ function addUser($username,$password,$group){ // checking if user already exists $file=@fopen($this->fPasswd,"r"); $isAlready=false; while($line=@fgets($file,200)){ $lineArr=explode(":",$line); if($username==$lineArr[0]){ $isAlready=true; } }
/** * Adds a group to the htgroup file * @param string $groupname Groupname */ function addGroup($groupname){ $file=fopen($this->fHtgroup,"a"); fclose($file); }
/** * Deletes a user in the password file * @param string $username Username to delete * @return boolean $deleted Returns true if user have been deleted otherwise false */ function delUser($username){ // Reading names from file $file=fopen($path.$this->fPasswd,"r"); $i=0; while($line=fgets($file,200)){ $lineArr=explode(":",$line); if($username!=$lineArr[0]){ $newUserlist[$i][0]=$lineArr[0]; $newUserlist[$i][1]=$lineArr[1]; $i++; }else{ $deleted=true; } } fclose($file);
// Writing names back to file (without the user to delete) $file=fopen($path.$this->fPasswd,"w"); for($i=0;$i<count($newUserlist);$i++){ fputs($file,$newUserlist[$i][0].":".$newUserlist[$i][1]."\n"); } fclose($file);
/** * Returns an array of all users in a password file * @return array $users All usernames of a password file in an array * @see setFPasswd() */ function getUsers(){ }
/** * Sets a password to the given username * @param string $username The name of the User for changing password * @param string $password New Password for the User * @return boolean $isSet Returns true if password have been set */ function setPasswd($username,$new_password){ // Reading names from file $newUserlist="";
/// Writing names back to file (with new password) $file=fopen($this->fPasswd,"w"); for($i=0;$i<count($newUserlist);$i++){ $content=$newUserlist[$i][0].":".$newUserlist[$i][1]; fputs($file,$content); } fclose($file);
/** * Sets the Authentification type for Login * @param string $authtype Authentification type as string */ function setAuthType($authtype){ $this->authType=$authtype; }
/** * Sets the Authentification Name (Name of the login area) * @param string $authname Name of the login area */ function setAuthName($authname){ $this->authName=$authname; }
/** * Writes the htaccess file to the given Directory and protects it * @see setFhtaccess() */ function addLogin(){ $file=fopen($this->fHtaccess,"w+"); fputs($file,"Order allow,deny\n"); fputs($file,"Allow from all\n"); fputs($file,"AuthType ".$this->authType."\n"); fputs($file,"AuthUserFile ".$this->fPasswd."\n\n"); fputs($file,"AuthName \"".$this->authName."\"\n"); fputs($file,"require valid-user\n"); fclose($file); }
/** * Deletes the protection of the given directory * @see setFhtaccess() */ function delLogin(){ unlink($this->fHtaccess); } } ?>
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.