첨부파일 필수 > 그누4 질문답변

그누4 질문답변

그누보드4 관련 질문은 QA 로 이전됩니다. QA 그누보드4 바로가기
기존 게시물은 열람만 가능합니다.

첨부파일 필수 정보

첨부파일 필수

본문

첨부파일 필수로 하려면
http://sir.co.kr/bbs/board.php?bo_table=g4_tiptech&wr_id=11398

따라서 해라고 하시는데요.
2007년 자료이네요.

------------------------------------------------------------------
write.skin.php 파일 158행쯤에
  objCell.innerHTML = "<input type='file' class=ed name='bf_file[]' title='파일 용량 <?=$upload_max_filesize?> 이하만 업로드 가능'>";
이런부분있죠
 
 
요걸
 
 
upload_required="";
if (flen ==0) upload_required=" required itemname='아줌마 첫번째 사진을 안올렸네요--' ";
objCell.innerHTML = "<input type='file' class=ed name='bf_file[]' title='파일 용량 <?=$upload_max_filesize?> 이하만 업로드 가능'  "+upload_required+">";
 
문구는 알아서 고치세요

--------------------------------------------------------------------

익스플로러 에서는 잘 되는데.
타 브라우저에서는 wr_id에러가 납니다.

고수님들 한말씀 해주시와요~
  • 복사

댓글 전체

<g4>/skin/board/게시판스킨/write_update.head.php 파일에
(파일이 없으면, 새로 생성하세요)


<?
if(empty($_FILES['bf_file'])) alert('파일을 꼭 첨부하셔야 해요~');
?>
답변 감사드립니다.
그런데 적용해도 파일첨부없이 글이 써지네요 ㅠ.ㅠ
라이트 스킨에는 이렇게 되어있어요.

        var flen = 0;
        function add_file(delete_code)
        {
            var upload_count = <?=(int)$board[bo_upload_count]?>;
            if (upload_count && flen >= upload_count)
            {
                alert("이 게시판은 "+upload_count+"개 까지만 파일 업로드가 가능합니다.");
                return;
            }

            var objTbl;
            var objRow;
            var objCell;
            if (document.getElementById)
                objTbl = document.getElementById("variableFiles");
            else
                objTbl = document.all["variableFiles"];

            objRow = objTbl.insertRow(objTbl.rows.length);
            objCell = objRow.insertCell(0);
            objCell.innerHTML = "<input type='file' class='ed' name='bf_file[]'  title='파일 용량 <?=$upload_max_filesize?> 이하만 업로드 가능'>";
            if (delete_code)
© SIRSOFT
현재 페이지 제일 처음으로