회원가입시 프로필 사진 등록하고 싶은데요
관련링크
본문
//include_once(G5_BBS_PATH."/profile_image.php");
// 업로드 경로
$dest_path = G5_DATA_PATH.'/member/profile/';
$upload->path = $dest_path;
if($del_photo) {
$_old_photo = $dest_path.$old_photo;
@unlink($_old_photo);
sql_query("update {$g5[eyoom_member]} set photo = '' where mb_id='".$member['mb_id']."'");
}
$thumb['width'] = $eyoom['photo_width'];
$thumb['height'] = $eyoom['photo_height'];
$thumb['delete'] = 'y'; //원본 업로드 이미지 삭제여부
$res = $upload->upload_make_thumb("photo", $thumb);
if($res) {
$thumb_file = $res['t_file'];
// 썸네일 파일명을 회원아이디로 치환
$rename = $member['mb_id'].'.'.$res['ext'];
@rename($thumb_file, $dest_path.$rename);
sql_query("update {$g5[eyoom_member]} set photo = '".$rename."' where mb_id='".$member['mb_id']."'");
}
해당코드로 해도 등록이 안되네요 에러도 안나오구요.
jpg 파일로 변환해서 등록되었으면 좋겠씁니다.