似乎我的 pear 配置不好,但找不到原因,使用此库时收到“通知已定义”消息。
在我的 php.ini 上,我有:
.:/usr/share/php:/usr/share/php/libzend-framework-php
命令“which pear”返回:
/usr/bin/pear
并且命令“pear config-get php_dir”返回:
/usr/share/php/
我不知道为什么似乎要加载两次类。
这就是我使用代码的方式:
require_once ('Auth.php');//Pear Auth
$dns = 'mysql://'.USER.':'.Util::decodePass(PASSWORD).'@'.SERVER.'/'.DBNAME;
// All options:
// Use specific username and password columns.
// Use SHA1() to encrypt the passwords.
// Retrieve all fields.
$options = array(
'dsn' => $dns,
'table' => 'usuario',
'usernamecol' => 'login',
'passwordcol' => 'password',
'cryptType' => 'md5', //'sha1'
'db_fields' => '*'
);
// Create the Auth object:
$auth = new Auth('DB', $options, 'show_login_form');
// Start the authorization:
$auth->start();
// Confirm authorization:
if ($auth->checkAuth()) {
//Authorized
echo(javaScriptRedirect(true,$js));
} else { // Unauthorized.
echo(javaScriptRedirect(false,$js));
//no se valida la autenticacion
}