mantis 에서 사용자 패스워드 변경시 관리자가 설정방법
mantis 폴더에서 config_defaults_inc.php 파일을 편집으로 연다.
g_send_reset_password 가 ON으로 되어 있는데 OFF로 하면 administrator(관리자)가 계정 생성시 패스워드를 설정할 수 있다.
파일의 주석문을 확인해보면 ON 일때는 패스워드를 메일로 전송하고 OFF 이면 관리자가 셋팅한다고 되어있다.
/**
* If ON, users will be sent their password when their account is created
* or password reset (this requires mail settings to be correctly configured).
* If OFF, then the Administrator will have to provide a password when
* creating new accounts, and the password will be set to blank when reset.
* @global int $g_send_reset_password
*/
$g_send_reset_password = OFF;
g_send_reset_password 가 ON으로 되어 있는데 OFF로 하면 administrator(관리자)가 계정 생성시 패스워드를 설정할 수 있다.
파일의 주석문을 확인해보면 ON 일때는 패스워드를 메일로 전송하고 OFF 이면 관리자가 셋팅한다고 되어있다.
/**
* If ON, users will be sent their password when their account is created
* or password reset (this requires mail settings to be correctly configured).
* If OFF, then the Administrator will have to provide a password when
* creating new accounts, and the password will be set to blank when reset.
* @global int $g_send_reset_password
*/
$g_send_reset_password = OFF;
댓글
댓글 쓰기