Recommend this page to a friend! |
![]() |
Info | Documentation | ![]() |
![]() |
![]() |
Reputation | Support forum | Blog | Links |
Ratings | Unique User Downloads | Download Rankings | ||||
![]() ![]() ![]() ![]() | Total: 427 | All time: 6,344 This week: 42![]() |
Version | License | PHP version | Categories | |||
php-auth 1.0.0 | MIT/X Consortium ... | 5 | PHP 5, Databases, User Management |
Description | Author | |
This class can register and login users stored in a database. |
|
PHPAuth is a secure user authentication class for PHP websites, using a powerful password hashing system and attack blocking to keep your website and users secure.
PHPAuth can now be installed with the following command:
composer require phpauth/phpauth
Then: require 'vendor/autoload.php';
The database table config
contains multiple parameters allowing you to configure certain functions of the class.
The rest of the parameters generally do not need changing.
If isBlocked()
returns verify
, then a CAPTCHA code should be displayed.
The method checkCaptcha($captcha)
is called to verify a CAPTCHA code. By default this method returns true
, but should be overridden to verify a CAPTCHA.
For example, if you are using Google's ReCaptcha NoCaptcha, use the following code:
private function checkCaptcha($captcha)
{
try {
$url = 'https://www.google.com/recaptcha/api/siteverify';
$data = ['secret' => 'your_secret_here',
'response' => $captcha,
'remoteip' => $_SERVER['REMOTE_ADDR']];
$options = [
'http' => [
'header' => "Content-type: application/x-www-form-urlencoded\r\n",
'method' => 'POST',
'content' => http_build_query($data)
]
];
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
return json_decode($result)->success;
}
catch (\Exception $e) {
return false;
}
}
If a CAPTCHA is not to be used, please ensure to set attempt_before_block
to the same value as attempts_before_verify
.
Making a page accessible only to authenticated users is quick and easy, requiring only a few lines of code at the top of the page:
<?php
include("Config.php");
include("Auth.php");
$dbh = new PDO("mysql:host=localhost;dbname=phpauth", "username", "password");
$config = new PHPAuth\Config($dbh);
$auth = new PHPAuth\Auth($dbh, $config);
if (!$auth->isLogged()) {
header('HTTP/1.0 403 Forbidden');
echo "Forbidden";
exit();
}
?>
The language for error and success messages returned by PHPAuth can be configured by passing in one of
the available languages as the third parameter to the Auth constructor. If no language parameter is provided
then the default en_GB
language is used.
Example: $auth = new PHPAuth\Auth($dbh, $config, "fr_FR");
Available languages:
All class methods are documented in the Wiki System error codes are listed and explained here
Anyone can contribute to improve or fix PHPAuth, to do so you can either report an issue (a bug, an idea...) or fork the repository, perform modifications to your fork then request a merge.
![]() |
File | Role | Description | ||
---|---|---|---|---|
![]() |
||||
![]() |
||||
![]() |
Class | Class source | ||
![]() |
Class | Class source | ||
![]() ![]() |
Data | Auxiliary data | ||
![]() ![]() |
Data | Auxiliary data | ||
![]() ![]() |
Lic. | License text | ||
![]() ![]() |
Doc. | Documentation |
The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page. |
![]() |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
User Ratings | ||||||||||||||||||||||||||||||
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.