Generate secure password hashes using PHP5+ password_hash() function.
$auth_users = array(
'username' => 'REPLACE WITH GENERATED HASH'
);
Not working? Please ensure the password entered is valid and try again.
$auth_users = array(
'username' => password_hash('your-password', PASSWORD_DEFAULT)
);