1. 修改文件 manage_user_edit_page.php
1) 找到该行:"<!-- Email -->
2) 粘贴下面代码:
<!-- Password -->
<tr <?php echo helper_alternate_class( 1 ) ?>>
<td class="category" width="30%">
<?php echo "Password (change only)" ?>:
</td>
<td width="70%">
<input type="text" size="16" maxlength="100" name="password" value="" />
</td>
</tr>
2. 修改文件 manage_user_update.php
1) 找到该行: $f_user_id = gpc_get_int( 'user_id' );
2) 在该行下粘贴下面行:
$f_pass = gpc_get_string('password');
3) 找到该行: $result = db_query( $query ); 有的版本是:$result = db_query_bound( $query, $query_params );
4) 在该行上面粘贴下面行:
//Reset the password if specified.
if ($f_pass) user_set_password($f_user_id, $f_pass);
3. 使用管理员身份administrator用户登陆,点击: 管理--->用户管理--->选择某用户,见下面界面:
4. 输入新的口令之后,点击"更新账号信息"即可。