글쓰기 수정시 오류

글쓰기 수정시 오류

QA

글쓰기 수정시 오류

본문

안녕하세요~~

현재 다중검색스킨으로 테스트 중인데 문제는 글작성후 글 수정시 전혀 적용이 되지 않는 문제가 있습니다. (링크 : https://sir.kr/g5_skin/34034)

 

다른 스킨을 써봐두 게시판이 글쓰기 수정이 동일하게 안되고 있는데

도무지 해결방법을 모르겠네요~~~

 

<증상>

글쓰기는 정상적으로 이루어지나

글쓰기 수정에 들어가면 모든 컨텐츠가 전혀 수정이 안되고 최소 글작성된 그대로 남아 있습니다.

 

어느부분을 어떻게 건드려야 할지 고수님들의 조언부탁드립니다!!

 

write.skin.php


<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
add_stylesheet('<link rel="stylesheet" href="'.$board_skin_url.'/style.css">', 0);
?>
<section id="bo_w">
    <h2 class="sound_only"><?php echo $g5['title'] ?></h2>
    <!-- 게시물 작성/수정 시작 { -->
    <form name="fwrite" id="fwrite" action="<?php echo $action_url ?>" onsubmit="return fwrite_submit(this);" method="post" enctype="multipart/form-data" autocomplete="off" style="width:<?php echo $width; ?>">
    <input type="hidden" name="uid" value="<?php echo get_uniqid(); ?>">
    <input type="hidden" name="w" value="<?php echo $w ?>">
    <input type="hidden" name="bo_table" value="<?php echo $bo_table ?>">
    <input type="hidden" name="wr_id" value="<?php echo $wr_id ?>">
    <input type="hidden" name="sca" value="<?php echo $sca ?>">
    <input type="hidden" name="sfl" value="<?php echo $sfl ?>">
    <input type="hidden" name="stx" value="<?php echo $stx ?>">
    <input type="hidden" name="spt" value="<?php echo $spt ?>">
    <input type="hidden" name="sst" value="<?php echo $sst ?>">
    <input type="hidden" name="sod" value="<?php echo $sod ?>">
    <input type="hidden" name="page" value="<?php echo $page ?>">
    <?php
    $option = '';
    $option_hidden = '';
    if ($is_notice || $is_html || $is_secret || $is_mail) {
        $option = '';
        if ($is_notice) {
            $option .= PHP_EOL.'<li class="chk_box"><input type="checkbox" id="notice" name="notice"  class="selec_chk" value="1" '.$notice_checked.'>'.PHP_EOL.'<label for="notice"><span></span>공지</label></li>';
        }
        if ($is_html) {
            if ($is_dhtml_editor) {
                $option_hidden .= '<input type="hidden" value="html1" name="html">';
            } else {
                $option .= PHP_EOL.'<li class="chk_box"><input type="checkbox" id="html" name="html" onclick="html_auto_br(this);" class="selec_chk" value="'.$html_value.'" '.$html_checked.'>'.PHP_EOL.'<label for="html"><span></span>html</label></li>';
            }
        }
        if ($is_secret) {
            if ($is_admin || $is_secret==1) {
                $option .= PHP_EOL.'<li class="chk_box"><input type="checkbox" id="secret" name="secret"  class="selec_chk" value="secret" '.$secret_checked.'>'.PHP_EOL.'<label for="secret"><span></span>비밀글</label></li>';
            } else {
                $option_hidden .= '<input type="hidden" name="secret" value="secret">';
            }
        }
        if ($is_mail) {
            $option .= PHP_EOL.'<li class="chk_box"><input type="checkbox" id="mail" name="mail"  class="selec_chk" value="mail" '.$recv_email_checked.'>'.PHP_EOL.'<label for="mail"><span></span>답변메일받기</label></li>';
        }
    }
    echo $option_hidden;
    ?>
    <table class="srch_tbl">
    <tbody>
    <?php if ($is_name) { ?>
    <tr>
      <td>
          <label for="wr_name" class="sound_only">이름<strong>필수</strong></label>
          <button type="button" class="btn_people"> 이름 </button>
          <input type="text" name="wr_name" value="<?php echo $name ?>" id="wr_name" required class="frm_input _30_input required" placeholder="이름">
    <?php } ?>
    <?php if ($is_password) { ?>
          <label for="wr_password" class="sound_only">비밀번호<strong>필수</strong></label>
          <button type="button" class="btn_people"> 비밀번호 </button>
          <input type="password" name="wr_password" id="wr_password" <?php echo $password_required ?> class="frm_input _30_input <?php echo $password_required ?>" placeholder="비밀번호">
      </td>
    </tr>
    <?php } ?>
    <?php if ($is_email) { ?>
    <tr>
      <td>
          <label for="wr_email" class="sound_only">이메일<strong>필수</strong></label>
          <button type="button" class="btn_people"> 이메일 </button>
          <input type="text" name="wr_email" value="<?php echo $email ?>" id="wr_email" class="frm_input _30_input email " placeholder="이메일">
    <?php } ?>
    <?php if ($is_category) { ?>
          <label for="ca_name" class="sound_only">분류<strong>필수</strong></label>
          <select name="ca_name" id="ca_name" required class="frm_input">
              <option value="">분류를 선택하세요</option>
              <?php echo $category_option ?>
          </select>
      </td>
    </tr>
    <?php } ?>
    <tr>
      <td>
        <div id="autosave_wrapper" class="write_div">
            <button type="button" class="btn_people"> 인물명 </button>
            <input type="text" name="wr_subject" value="<?php echo $subject ?>" id="wr_subject" required class="frm_input _30_input required" size="20" maxlength="255" placeholder="인물명">
            <?php if ($is_member) { // 임시 저장된 글 기능 ?>
            <script src="<?php echo G5_JS_URL; ?>/autosave.js"></script>
            <?php if($editor_content_js) echo $editor_content_js; ?>
            <button type="button" id="btn_autosave" class="btn_frmline">임시 저장된 인물 (<span id="autosave_count"><?php echo $autosave_count; ?></span>)</button>
            <div id="autosave_pop">
                <strong>임시 저장된 인물 목록</strong>
                <ul></ul>
                <div><button type="button" class="autosave_close">닫기</button></div>
            </div>
            <?php } ?>
            <button type="button" class="btn_people"> 성별 </button>
              <label><input type="radio" name="wr_1" value="남자" <? if($write['wr_1'] == "남자"){ echo 'checked'; } ?>> 남자</label>
              <label><input type="radio" name="wr_1" value="여자" <? if($write['wr_1'] == "여자"){ echo 'checked'; } ?>> 여자</label>
        </div>
      </td>
    </tr>
    <tr>
      <td>
        <button type="button" class="btn_people"> 나이(세) </button>
        <input type="text" name="wr_2" value="<?=@$write['wr_2']?>" class="people_input" placeholder="예시 : 24">
        <button type="button" class="btn_people"> 생년월일 </button><input type="text" name="wr_11" value="<?=@$write['wr_11']?>" class="birth_input" placeholder="예시 : 2000-01-01">
        <button type="button" class="btn_people"> 나이대 </button>
        <label><input type="radio" name="wr_3" value="10대미만" <? if($write['wr_3'] == "10대미만"){ echo 'checked'; } ?>> 10대미만</label> 
        <label><input type="radio" name="wr_3" value="10대" <? if($write['wr_3'] == "10대"){ echo 'checked'; } ?>> 10대</label> 
        <label><input type="radio" name="wr_3" value="20대" <? if($write['wr_3'] == "20대"){ echo 'checked'; } ?>> 20대</label> 
        <label><input type="radio" name="wr_3" value="30대" <? if($write['wr_3'] == "30대"){ echo 'checked'; } ?>> 30대</label> 
        <label><input type="radio" name="wr_3" value="40대" <? if($write['wr_3'] == "40대"){ echo 'checked'; } ?>> 40대</label>
        <label><input type="radio" name="wr_3" value="50대" <? if($write['wr_3'] == "50대"){ echo 'checked'; } ?>> 50대</label>
        <label><input type="radio" name="wr_3" value="60대" <? if($write['wr_3'] == "60대"){ echo 'checked'; } ?>> 60대</label>
        <label><input type="radio" name="wr_3" value="70대이상" <? if($write['wr_3'] == "70대이상"){ echo 'checked'; } ?>> 70대이상</label>
      </td>
    </tr>
    <tr>
      <td>
        <button type="button" class="btn_people"> 키(cm) </button>
        <input type="text" name="wr_4" value="<?=@$write['wr_4']?>" class="people_input" placeholder="예시 : 170">
        <button type="button" class="btn_people"> 키구간 </button>
        <label><input type="radio" name="wr_5" value="150cm미만" <? if($write['wr_5'] == "150cm미만"){ echo 'checked'; } ?>> 150cm미만</label> 
        <label><input type="radio" name="wr_5" value="150cm대" <? if($write['wr_5'] == "150cm대"){ echo 'checked'; } ?>> 150cm대</label> 
        <label><input type="radio" name="wr_5" value="160cm대" <? if($write['wr_5'] == "160cm대"){ echo 'checked'; } ?>> 160cm대</label> 
        <label><input type="radio" name="wr_5" value="170cm대" <? if($write['wr_5'] == "170cm대"){ echo 'checked'; } ?>> 170cm대</label> 
        <label><input type="radio" name="wr_5" value="180cm대" <? if($write['wr_5'] == "180cm대"){ echo 'checked'; } ?>> 180cm대</label>
        <label><input type="radio" name="wr_5" value="190cm이상" <? if($write['wr_5'] == "190cm이상"){ echo 'checked'; } ?>> 190cm이상</label>
      </td>
    </tr>
    <tr>
      <td>
        <button type="button" class="btn_people"> 체중(kg) </button>
        <input type="text" name="wr_6" value="<?=@$write['wr_6']?>" class="people_input" placeholder="예시 : 45">
        <button type="button" class="btn_people"> 체중구간 </button>
        <label><input type="radio" name="wr_7" value="40kg미만" <? if($write['wr_7'] == "40kg미만"){ echo 'checked'; } ?>> 40kg미만</label> 
        <label><input type="radio" name="wr_7" value="40kg대" <? if($write['wr_7'] == "40kg대"){ echo 'checked'; } ?>> 40kg대</label> 
        <label><input type="radio" name="wr_7" value="50kg대" <? if($write['wr_7'] == "50kg대"){ echo 'checked'; } ?>> 50kg대</label> 
        <label><input type="radio" name="wr_7" value="60kg대" <? if($write['wr_7'] == "60kg대"){ echo 'checked'; } ?>> 60kg대</label> 
        <label><input type="radio" name="wr_7" value="70kg대" <? if($write['wr_7'] == "70kg대"){ echo 'checked'; } ?>> 70kg대</label>
        <label><input type="radio" name="wr_7" value="80kg대" <? if($write['wr_7'] == "80kg대"){ echo 'checked'; } ?>> 80kg대</label>
        <label><input type="radio" name="wr_7" value="90kg대" <? if($write['wr_7'] == "90kg대"){ echo 'checked'; } ?>> 90kg대</label>
        <label><input type="radio" name="wr_7" value="100kg이상" <? if($write['wr_7'] == "100kg이상"){ echo 'checked'; } ?>> 100kg이상</label>
      </td>
    </tr>
    <tr>
      <td>
        <button type="button" class="btn_people"> 언어 </button>
        <label><input type="checkbox" name="wr_8[]" value="한국어" > 한국어 </label> 
        <label><input type="checkbox" name="wr_8[]" value="영어" > 영어 </label> 
        <label><input type="checkbox" name="wr_8[]" value="중국어" > 중국어 </label> 
        <label><input type="checkbox" name="wr_8[]" value="일본어" > 일본어 </label> 
        <label><input type="checkbox" name="wr_8[]" value="프랑스어" > 프랑스어 </label> 
        <label><input type="checkbox" name="wr_8[]" value="스페인어" > 스페인어 </label> 
        <label><input type="checkbox" name="wr_8[]" value="수화" > 수화 </label> 
        <script>
          var str_wr_8 = "<?=@$write['wr_8']?>";
          $("input:checkbox[name='wr_8[]']").each(function(index){
            if(str_wr_8.indexOf($(this).val()) > -1){
              $(this).attr("checked", true);
            }
          });
        </script>
      </td>
    </tr>
    <tr>
      <td>
        <button type="button" class="btn_people"> 사투리 </button>
        <label><input type="checkbox" name="wr_9[]" value="없음" > 없음 </label> 
        <label><input type="checkbox" name="wr_9[]" value="경상도" > 경상도 </label> 
        <label><input type="checkbox" name="wr_9[]" value="전라도" > 전라도 </label> 
        <label><input type="checkbox" name="wr_9[]" value="충청도" > 충청도 </label> 
        <label><input type="checkbox" name="wr_9[]" value="강원도" > 강원도 </label> 
        <label><input type="checkbox" name="wr_9[]" value="제주도" > 제주도 </label> 
        <label><input type="checkbox" name="wr_9[]" value="북한" > 북한 </label> 
        <label><input type="checkbox" name="wr_9[]" value="연변" > 연변 </label> 
        <script>
          var str_wr_9 = "<?=@$write['wr_9']?>";
          $("input:checkbox[name='wr_9]']").each(function(index){
            if(str_wr_9.indexOf($(this).val()) > -1){
              $(this).attr("checked", true);
            }
          });
        </script>
      </td>
    </tr>
    <tr>
      <td>
        <button type="button" class="btn_people"> 연기전공 </button>
        <label><input type="radio" name="wr_10" value="전공" <? if($write['wr_10'] == "전공"){ echo 'checked'; } ?>> 전공</label> 
        <label><input type="radio" name="wr_10" value="비전공" <? if($write['wr_10'] == "비전공"){ echo 'checked'; } ?>> 비전공</label> 
      </td>
    </tr>
  </table>
     <table class="srch_tbl">
        <tbody>
        <tr>
            <td>
                <label for="wr_content" class="sound_only">내용<strong>필수</strong></label>
        <div class="wr_content <?php echo $is_dhtml_editor ? $config['cf_editor'] : ''; ?>">
            <?php if($write_min || $write_max) { ?>
            <!-- 최소/최대 글자 수 사용 시 -->
            <p id="char_count_desc">이 게시판은 최소 <strong><?php echo $write_min; ?></strong>글자 이상, 최대 <strong><?php echo $write_max; ?></strong>글자 이하까지 글을 쓰실 수 있습니다.</p>
            <?php } ?>
            <?php echo $editor_html; // 에디터 사용시는 에디터로, 아니면 textarea 로 노출 ?>
            <?php if($write_min || $write_max) { ?>
            <!-- 최소/최대 글자 수 사용 시 -->
            <div id="char_count_wrap"><span id="char_count"></span>글자</div>
            <?php } ?>
        </div>
            </td>
        </tr>
  </table>
  <table class="srch_tbl">
  <tbody>
  <?php if ($option) { ?>
  <tr>
    <td>
      <button type="button" class="btn_people"> 옵션 </button>
      <ul class="bo_v_option">
      <?php echo $option ?>
      </ul>
    </td>
  </tr>
  <?php } ?>
  <?if($is_link){?>
    <tr>
      <td>
        <button type="button" class="btn_people"> 링크 </button>
        <?php for ($i=1; $is_link && $i<=G5_LINK_COUNT; $i++) { ?>
          <div class="bo_w_link write_div">
                      <label for="wr_link<?php echo $i ?>"><i class="fa fa-link" aria-hidden="true"></i><span class="sound_only"> 링크  #<?php echo $i ?></span></label>
                          <input type="text" name="wr_link<?php echo $i ?>" value="<?php if($w=="u"){echo$write['wr_link'.$i];} ?>" id="wr_link<?php echo $i ?>" class="frm_input full_input" size="50">
                  </div>
        <?php } ?>
      </td>
    </tr>
    <?}?>
    <?if($is_file){?>
    <tr>
      <td>
        <button type="button" class="btn_people"> 파일 </button>
        <?php for ($i=0; $is_file && $i<$file_count; $i++) { ?>
        <div class="bo_w_flie write_div">
                        <div class="file_wr write_div">
                                <label for="bf_file_<?php echo $i+1 ?>" class="lb_icon"><i class="fa fa-folder-open" aria-hidden="true"></i><span class="sound_only"> 파일 #<?php echo $i+1 ?></span></label>
                                <input type="file" name="bf_file[]" id="bf_file_<?php echo $i+1 ?>" title="파일첨부 <?php echo $i+1 ?> : 용량 <?php echo $upload_max_filesize ?> 이하만 업로드 가능" class="frm_file ">
                        </div>
                        <?php if ($is_file_content) { ?>
                        <input type="text" name="bf_content[]" value="<?php echo ($w == 'u') ? $file[$i]['bf_content'] : ''; ?>" title="파일 설명을 입력해주세요." class="full_input frm_input" size="50" placeholder="파일 설명을 입력해주세요.">
                        <?php } ?>
                        <?php if($w == 'u' && @$file[$i]['file']) { ?>
                        <span class="file_del">
                                <input type="checkbox" id="bf_file_del<?php echo $i ?>" name="bf_file_del[<?php echo $i;  ?>]" value="1"> <label for="bf_file_del<?php echo $i ?>"><?php echo $file[$i]['source'].'('.$file[$i]['size'].')';  ?> 파일 삭제</label>
                        </span>
                        <?php } ?>
                </div>
                <?php } ?>
      </td>
    </tr>
    <?}?>
    <?php if ($is_use_captcha) { //자동등록방지  ?>
      <tr>
        <td>
          <button type="button" class="btn_people"> 지동등록방지 </button>
          <?php echo $captcha_html ?>
        </td>
      </tr>
      <?php } ?>
</table>
    <div class="btn_confirm write_div">
        <a href="<?php echo get_pretty_url($bo_table); ?>" class="btn_cancel btn">취소</a>
        <button type="submit" id="btn_submit" accesskey="s" class="btn_submit btn">작성완료</button>
    </div>
    </form>
    <script>
    <?php if($write_min || $write_max) { ?>
    // 글자수 제한
    var char_min = parseInt(<?php echo $write_min; ?>); // 최소
    var char_max = parseInt(<?php echo $write_max; ?>); // 최대
    check_byte("wr_content", "char_count");
    $(function() {
        $("#wr_content").on("keyup", function() {
            check_byte("wr_content", "char_count");
        });
    });
    <?php } ?>
    function html_auto_br(obj)
    {
        if (obj.checked) {
            result = confirm("자동 줄바꿈을 하시겠습니까?\n\n자동 줄바꿈은 게시물 내용중 줄바뀐 곳을<br>태그로 변환하는 기능입니다.");
            if (result)
                obj.value = "html2";
            else
                obj.value = "html1";
        }
        else
            obj.value = "";
    }
    function fwrite_submit(f)
    {
        <?php echo $editor_js; // 에디터 사용시 자바스크립트에서 내용을 폼필드로 넣어주며 내용이 입력되었는지 검사함   ?>
        var subject = "";
        var content = "";
        $.ajax({
            url: g5_bbs_url+"/ajax.filter.php",
            type: "POST",
            data: {
                "subject": f.wr_subject.value,
                "content": f.wr_content.value
            },
            dataType: "json",
            async: false,
            cache: false,
            success: function(data, textStatus) {
                subject = data.subject;
                content = data.content;
            }
        });
        if (subject) {
            alert("제목에 금지단어('"+subject+"')가 포함되어있습니다");
            f.wr_subject.focus();
            return false;
        }
        if (content) {
            alert("내용에 금지단어('"+content+"')가 포함되어있습니다");
            if (typeof(ed_wr_content) != "undefined")
                ed_wr_content.returnFalse();
            else
                f.wr_content.focus();
            return false;
        }
        if (document.getElementById("char_count")) {
            if (char_min > 0 || char_max > 0) {
                var cnt = parseInt(check_byte("wr_content", "char_count"));
                if (char_min > 0 && char_min > cnt) {
                    alert("내용은 "+char_min+"글자 이상 쓰셔야 합니다.");
                    return false;
                }
                else if (char_max > 0 && char_max < cnt) {
                    alert("내용은 "+char_max+"글자 이하로 쓰셔야 합니다.");
                    return false;
                }
            }
        }
        <?php echo $captcha_js; // 캡챠 사용시 자바스크립트에서 입력된 캡챠를 검사함  ?>
        document.getElementById("btn_submit").disabled = "disabled";
        return true;
    }
    </script>
</section>
<!-- } 게시물 작성/수정 끝 -->
 

 

 

write.update.skin.php


<?
// checkbox 배열 String 만들기, DB 업데이트 저장
$wr_8 = @implode("|", $_POST[wr_8]);
$wr_9 = @implode("|", $_POST[wr_9]);
$sql = " update $g5[write_prefix]$bo_table set wr_8 = '$wr_8', wr_9 = '$wr_9' where wr_id = '$wr_id' ";
sql_query($sql);
// checkbox 배열 String 만들기, DB 업데이트 저장
?>
<?php
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
$sql = " update $write_table
            set wr_11 = '$wr_11',
                 wr_12 = '$wr_12',
                 wr_13 = '$wr_13',
                 wr_14 = '$wr_14',
                 wr_15 = '$wr_15',
                 wr_16 = '$wr_16',
                 wr_17 = '$wr_17',
                 wr_18 = '$wr_18',
                 wr_19 = '$wr_19',
                 wr_20 = '$wr_20',
                 wr_21 = '$wr_21',
                 wr_22 = '$wr_22',
                 wr_23 = '$wr_23',
                 wr_24 = '$wr_24',
                 wr_25 = '$wr_25',
                 wr_26 = '$wr_26',
                 wr_27 = '$wr_27',
                 wr_28 = '$wr_28',
                 wr_29 = '$wr_29',
                 wr_30 = '$wr_30'
          where wr_id = '$wr_id' ";
sql_query($sql);
?>
 

이 질문에 댓글 쓰기 :

답변 3

이런경우 file path가 잘못된경우가

form action이라면 action url을 따라가서 상단에 echo "it works"; exit; 로 실제 이페이지 가 호출

되는지 먼저 확인하시고 echo 찍어가면서 어디까지 실행되는지 체크하시면서 하시면

 

도움이 되실거예요 

파일명은 정확하게 적으신 거 맞나요?

정확한 파일명은 write_update.skin.php입니다.

write.update.skin.php 이렇게 위에 적어두셨네요.

답변을 작성하시기 전에 로그인 해주세요.
전체 123,618 | RSS
QA 내용 검색

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1404호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT