Kohana-使用文件驱动程序更改管理员的密码

时间:2012-01-05 13:06:28

标签: php kohana kohana-auth

如何使用文件驱动程序更改kohana中用户的密码?

1 个答案:

答案 0 :(得分:3)

对于Auth文件驱动程序,密码存储在Auth配置文件中 - modules/auth/config/auth.php,因此如果要更改用户密码,则必须编辑 那个文件。默认情况下,内容如下所示:
    

return array(

    'driver'       => 'file',
    'hash_method'  => 'sha256',
    'hash_key'     => NULL,
    'lifetime'     => 1209600,
    'session_type' => Session::$default,
    'session_key'  => 'auth_user',

    // Username/password combinations for the Auth File driver
    'users' => array(
        // 'admin' => 'b3154acf3a344170077d11bdb5fff31532f679a1919e716a02',
    ),

);

请注意,密码是使用Auth::hash方法加密的 - 您必须先使用它来获取新密码的哈希值。

我想让您的用户通过网站更改密码 - 没有好办法,我建议改用ORM驱动程序。