我正在尝试使用PEAR Auth进行php站点身份验证。我按照官方文档中的示例进行了操作,但是我无法摆脱像这样的很多通知警告:
Notice: Constant DB_OK already defined in /usr/share/php/DB.php on line 47
Call Stack:
0.0005 647400 1. {main}() /var/www/concursosRep/admin/index.php:0
0.0751 7100160 2. include('/var/www/concursosRep/admin/loginbeta.php') /var/www/concursosRep/admin/index.php:60
0.0788 7448160 3. Auth->start() /var/www/concursosRep/admin/loginbeta.php:114
0.0790 7448528 4. Auth->login() /usr/share/php/Auth.php:528
0.0790 7448608 5. Auth->_loadStorage() /usr/share/php/Auth.php:546
0.0790 7448608 6. Auth->_factory() /usr/share/php/Auth.php:445
0.0809 7681728 7. include_once('/usr/share/php/Auth/Container/DB.php') /usr/share/php/Auth.php:468
0.0839 8066384 8. require_once('/usr/share/php/DB.php') /usr/share/php/Auth/Container/DB.php:32
0.0869 8374552 9. define() /usr/share/php/DB.php:47
我知道这意味着在某种程度上这个库被包含了不止一次,但我不知道如何修复它。在我的php.ini中,我在include_path中有这个:
include_path .:/usr/share/php:/usr/share/php/libzend-framework-php
我首先想到的问题是Zend正在某处加载pear auth的类,所以我将include_path更改为:。:/ usr / share / php但是我遇到了同样的问题。
以下是我使用它的方式:
require_once ('Auth.php');//Pear Auth
$dns = 'mysql://'.USER.':'.Util::decodePass(PASSWORD).'@'.SERVER.'/'.DBNAME;
$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));
}
我试图在我的系统中找到两个文件DB.php
;这就是我得到的:
# sudo find -name DB.php -print
./usr/share/php/DB.php
./usr/share/php/Auth/Container/DB.php
我试图在我的脚本中找到重复的文件,这是我得到的:
#var_dump(get_included_files());
string(23) "/usr/share/php/Auth.php" [30] => string(36) "/usr/share/php/Auth/Container/DB.php" [31] => string(33) "/usr/share/php/Auth/Container.php" [32] => string(21) "/usr/share/php/DB.php" [33] => string(23) "/usr/share/php/PEAR.php" [34] => string(24) "/usr/share/php/PEAR5.php" [35] => string(27) "/usr/share/php/DB/mysql.php" [36] => string(28) "/usr/share/php/DB/common.php" }
希望有人可以帮助找出问题所在。 问候。
答案 0 :(得分:1)
note1:Pear DB是一个不推荐使用的库,因此您应该将Auth配置为使用MDB2!
注意2:这是一个通知,因此您的代码可以正常运行。
根据您提供的信息,很难分辨出之前定义的DB_OK常量。要做到这一点,需要完整的代码。
要调试这样的错误,您可以学习使用XDEBUG并逐步运行代码。 或者,如果你不想像专业人士那样学习和做这件事,那么你可以找到一些关于如何找到它的丑陋想法:
将它放在代码的最开头:
declare(ticks=1);
function my_tick_function()
{
if (defined('DB_OK'))
{
echo 'DB_OK defined for the first time as ' . DB_OK;
var_dump(debug_backtrace());
unregister_tick_function('my_tick_function');
}
}
// using a function as the callback
register_tick_function('my_tick_function', true);
(我没有运行它,这只是一个想法)
http://php.net/manual/en/function.register-tick-function.php
答案 1 :(得分:1)
我不认为DB.php
被加载两次,因为那时你会得到一个关于已经定义的类的致命错误 - 不仅仅是一个常数。
如果我是你,我会grep
DB_OK
和define
来电代码。var_dump(get_included_files());
要限制对某些文件的选择,请添加
/usr/share/php/DB.php
在第47行的define()
中。它会显示已经包含哪些文件,因此define()
调用需要在其中。
另一种方法是使用xdebug's function traces记录正在进行{{1}}调用的位置。如果您安装了xdebug,这可能是最简单的解决方案。