저번에도 질문했는데 해결을 못해서요..다시한번 올립니다ㅠㅠ


게시판에있는 글 삭제하려고하면

Warning: include(/ask_password.php) [function.include]: failed to open stream: No such file or directory in /home1/sijang0606/public_html/zb4pl8/bbs/delete.php on line 32

Warning: include() [function.include]: Failed opening '/ask_password.php' for inclusion (include_path='.:/usr/local/php/lib/php') in /home1/sijang0606/public_html/zb4pl8/bbs/delete.php on line 32


이런 오류가 떠요..

밑에는 delete.php 내용이구요

<?
/***************************************************************************
 * 공통 파일 include
 **************************************************************************/
 include "_head.php";

 if(!eregi($HTTP_HOST,$HTTP_REFERER)) Error("정상적으로 글을 삭제하여 주시기 바랍니다.");

/***************************************************************************
 * 게시물 삭제 처리
 **************************************************************************/

// 원본글을 가져옴
 $s_data=mysql_fetch_array(mysql_query("select * from $t_board"."_$id where no='$no'"));

 if($s_data[ismember]||$is_admin||$member[level]<=$setup[grant_delete]) {
  if($s_data[ismember]!=$member[no]&&!$is_admin&&$member[level]>$setup[grant_delete]) Error("삭제할 권한이 없습니다");
  $title="글을 삭제하시겠습니까?";
   } else {
  $title=stripslashes($s_data[name])."님의 글을 삭제합니다.<br>비밀번호를 입력하여 주십시요";
  $input_password="<input type=password name=password size=20 maxlength=20 class=input>";
 }

 $target="delete_ok.php";

 $a_list="<a href=zboard.php?$href$sort>";
 
 $a_view="<a href=# onclick=history.back()>";

 head();

 include $dir."/ask_password.php";

 foot();
 
  include "_foot.php";
?>

 
게시판스킨폴더에있는 ask_password.php 스펠링도 다 똑같아요ㅠㅠ