일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
- server & linux
- java
- yum
- MySQL Query
- 기도문 (prayers)
- 식별자
- iPhone
- apache
- OS X
- お名前.com
- aptana studio
- CentOS5
- Parallels
- 컴퓨터내 파일 검색
- Remote Desktop
- eclipse ide
- Windows XP
- IDE
- Plesk
- Eclipse
- php
- CentOS4
- eclipse plugin
- Virtuozzo
- 맥
- linux
- VPS
- RPM
- .bash_profile
- mac
- Today
- Total
n-n
(관리자 포함한) 유저 비밀번호 제대로 변경 안되는 문제 본문
CE 버전 6.x 부터... 관리자 페이지 혹은 유저 접속후 비밀 번호 변경을 하려해도,
제대로 변경이 되질 않는 현상이 발생...
할 수 없이, mySql 의 테이블을 건드려서 비밀번호를 변경하곤 했는데,
일년이 지난 후에야 이유를 알게 되다니... ㅡ.,ㅡ;
[sugarcrm]/config.php 파일에 그 비밀이 있었음.
즉, 설정 부분에, 한글자 이상의 영문 대/소문자, 한글자 이상의 숫자를 입력해야 하는 것이
기본으로 설정 되어 있었음.
비밀번호 변경페이지에 안내 문구가 없었으니, 그동안 이런 원인은 생각도 못했었음.
263번째 라인을 보면...
'passwordsetting' =>
array (
'SystemGeneratedPasswordON' => true,
'generatepasswordtmpl' => '192a88cc-422a-241a-b44c-526de40719d0',
'lostpasswordtmpl' => '1f0a54b3-a2b2-d265-a87c-526de432d3d1',
'forgotpasswordON' => true,
'linkexpiration' => true,
'linkexpirationtime' => 24,
'linkexpirationtype' => 60,
'systexpiration' => 1,
'systexpirationtime' => 7,
'systexpirationtype' => '0',
'systexpirationlogin' => '',
'minpwdlength' => 6,
'oneupper' => true,
'onelower' => true,
'onenumber' => true,
),
여기서의 true 로 된 부분을 false 로 바꿔주면 해결
또한 비밀번호 최소 글자수 제한 등등도 설정 변경할 수 있으니, 이모저모 테스트가 필요.
참조가 되었던 포스팅 : http://forums.sugarcrm.com/f3/configuring-sugarcrm-passwords-79033/#post298679
'web Application > sugarCRM' 카테고리의 다른 글
SugarCRM 인스톨 후 자동 업그레이드시 퍼미션 관련 에러 (0) | 2009.01.20 |
---|