첨부파일 오류 정보
첨부파일 오류
본문
blog/adm_write_update.php 74라인
수정 전
if (!$is_admin && $filesize > $board[bo_upload_size])
{
alert("\'{$filename}\' 파일의 용량(".number_format($filesize)." 바이트)이 게시판에 설정(".number_format($board[bo_upload_size])." 바이트)된 값보다 크므로 업로드 하지 않습니다.\\n");
continue;
}
수정 후
if (!$is_admin && $filesize > $gb4['upload_one_file_size'])
{
alert("\'{$filename}\' 파일의 용량(".number_format($filesize)." 바이트)이 게시판에 설정(".number_format($gb4['upload_one_file_size'])." 바이트)된 값보다 크므로 업로드 하지 않습니다.\\n");
continue;
}
수정 전
if (!$is_admin && $filesize > $board[bo_upload_size])
{
alert("\'{$filename}\' 파일의 용량(".number_format($filesize)." 바이트)이 게시판에 설정(".number_format($board[bo_upload_size])." 바이트)된 값보다 크므로 업로드 하지 않습니다.\\n");
continue;
}
수정 후
if (!$is_admin && $filesize > $gb4['upload_one_file_size'])
{
alert("\'{$filename}\' 파일의 용량(".number_format($filesize)." 바이트)이 게시판에 설정(".number_format($gb4['upload_one_file_size'])." 바이트)된 값보다 크므로 업로드 하지 않습니다.\\n");
continue;
}
댓글 전체
기본 설정이 db에 저장 되는 줄 알고 약간 당황했네요. -_-
Warning: move_uploaded_file(../data/blog/file/admin/2130706433_4e5eeba3_1.gif): failed to open stream: No such file or directory in d:\usr\www\blog\adm_write_update.php on line 93
Warning: move_uploaded_file(): Unable to move 'D:\usr\local\php\uploadtemp\php7.tmp' to '../data/blog/file/admin/2130706433_4e5eeba3_1.gif' in d:\usr\www\blog\adm_write_update.php on line 93
님께서 알려주신대로 하시니까 파일첨부하면 이렇게 되네요. 무슨 문제이죠? ㅜㅜ
Warning: move_uploaded_file(): Unable to move 'D:\usr\local\php\uploadtemp\php7.tmp' to '../data/blog/file/admin/2130706433_4e5eeba3_1.gif' in d:\usr\www\blog\adm_write_update.php on line 93
님께서 알려주신대로 하시니까 파일첨부하면 이렇게 되네요. 무슨 문제이죠? ㅜㅜ
수정했습니다. 왠 버그가 ㅠㅠ