제로보드 닉이미지가 안 떠요
- 07-24
- 5,561 회
- 1 건
핵심 질문엔 답을 해주지 않으시궁..
제로보드 폴더명은 zero인데요..
이모티콘도 안되네요.
제로보드 IRC깔았어요.
성의껏 갈켜주시어요
// 제로보드를 통해서 아이디를 획득합니다.
if($member[no])
$tempid=$member[no]; // user_id;
$icon_file = $bbsdir."icon/private_name/$tempid.gif";
$icon_dir = $bbsdir."icon/private_name/";
bbs가 아니라 zerodir로 해야 하는거 아닌가요?
if (file_exists($icon_file) && is_file($icon_file))
{
$size = getimagesize($icon_file);
$width = $size[0];
$height = $size[1];
if ($width > $cfg[mb_icon_width]) $width = $cfg[mb_icon_width];
if ($height > $cfg[mb_icon_height]) $height = $cfg[mb_icon_height];
$tempip = explode('.',$HTTP_SERVER_VARS["REMOTE_ADDR"]);
$calip = sprintf('%x', ($tempip[0] * 4)+ ($tempip[1] * 3) + ( $tempip[2] * 2 ) + $tempip[3]);
$UID = 'KH_' . $tempid . '_' . $calip;
}
else
$UID = $member[name];
?>
제로보드 폴더명은 zero인데요..
이모티콘도 안되네요.
제로보드 IRC깔았어요.
성의껏 갈켜주시어요
// 제로보드를 통해서 아이디를 획득합니다.
if($member[no])
$tempid=$member[no]; // user_id;
$icon_file = $bbsdir."icon/private_name/$tempid.gif";
$icon_dir = $bbsdir."icon/private_name/";
bbs가 아니라 zerodir로 해야 하는거 아닌가요?
if (file_exists($icon_file) && is_file($icon_file))
{
$size = getimagesize($icon_file);
$width = $size[0];
$height = $size[1];
if ($width > $cfg[mb_icon_width]) $width = $cfg[mb_icon_width];
if ($height > $cfg[mb_icon_height]) $height = $cfg[mb_icon_height];
$tempip = explode('.',$HTTP_SERVER_VARS["REMOTE_ADDR"]);
$calip = sprintf('%x', ($tempip[0] * 4)+ ($tempip[1] * 3) + ( $tempip[2] * 2 ) + $tempip[3]);
$UID = 'KH_' . $tempid . '_' . $calip;
}
else
$UID = $member[name];
?>
-
-
$bbsdir 은 admin 에서 경로설정할때 입력한 값을 토대로 얻어지게 됩니다.
어드민 부분에서 메뉴얼대로 경로를 설정하지 않을경우 닉이 출력되지 않게 됩니다.
어드민에서 연동모듈 경로를 다시한번 확인해보시길 바랍니다. 감사합니다.- 04-07-24