탑스쿨님의 팝업관리-메인에서 뜨지 않는 원인을 모르겠습니다. > 그누4 질문답변

그누4 질문답변

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

탑스쿨님의 팝업관리-메인에서 뜨지 않는 원인을 모르겠습니다. 정보

탑스쿨님의 팝업관리-메인에서 뜨지 않는 원인을 모르겠습니다.

본문

관리자에서 게시판을 선택하면 해당 게시판에선 잘 뜹니다.

그런데, 메인에 띄우려고 경로를 입력해도 메인에 전혀 출력되지 않습니다.

사용하고 계신분들은 방법을 가르쳐 주세요...

댓글 전체

ftp 파일중 cheditor과 lib/cheditor.lib.php가 있나요?
tail.sub.php 페이지에 아래 코드삽입

// 팝업실행(head에 넣으면 안됨 출력부분이 있어서 exploed 라이브러리에 넣어도 안됨 head 보다 위쪽에 들어감)
include_once "lib/popup.lib.php";

config.php 페이지에 아래 코드삽입

// 기타
$g4['popup_table'] = $g4['table_prefix'] . "topschool_popup"; // 팝업창 관리 테이블

admin.menu100.php 페이지에 아래 코드 삽입

array("100300", "메일 테스트", "$g4[admin_path]/sendmail_test.php"), 윗부분에 아래내용 추가

그누보드에 추가할때 삽입코드
array("100200", "팝업관리", "$g4[admin_path]/popup_list.php"),


DB추가

CREATE TABLE `g4_topschool_popup` (
`po_id` int(11) NOT NULL auto_increment,
`po_skin` varchar(255) NOT NULL default '',
`po_dir` varchar(255) NOT NULL default '',
`po_popstyle` tinyint(1) NOT NULL default '0',
`po_openchk` tinyint(1) NOT NULL default '0',
`po_start_date` varchar(19) NOT NULL default '',
`po_end_date` varchar(19) NOT NULL default '',
`po_expirehours` int(4) NOT NULL default '0',
`po_scrollbar` tinyint(1) NOT NULL default '0',
`po_left` int(4) NOT NULL default '0',
`po_top` int(4) NOT NULL default '0',
`po_width` int(4) NOT NULL default '0',
`po_height` int(4) NOT NULL default '0',
`po_subject` varchar(255) NOT NULL default '',
`po_content` text NOT NULL,
`po_datetime` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`po_id`),
KEY `po_date` (`po_start_date`,`po_end_date`),
KEY `po_openchk` (`po_openchk`)
) TYPE=MyISAM ;



다 하셨나요?
우리빌더님, 당연히 위와 같이 했고 그래서 게시판을 지정하고 띄우면 잘 나옵니다.
위와 같은 적용과정은 10번도 넘게 점검하고 검토했습니다.

게시판이 아닌 메인 및 기타 페이지에는 왜 나오지 않는지 정말 이해가 되지 않네요..혹시 방법을 아는 분들은 없나요?ㅜㅜ
매너데빌님, 인덱스에 넣었더니

Warning: include_once(lib/popup.lib.php) [function.include-once]: failed to open stream: No such file or directory in /home/hosting_users/ssa5012/www/index.htm on line 548

Warning: include_once() [function.include]: Failed opening 'lib/popup.lib.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/hosting_users/ssa5012/www/index.htm on line 548


와 같은 메시지가 뜹니다. 참고로 popup.lib.php은 lib에 제대로 넣었습니다..ㅜㅜ

인덱스에 <? include_once "lib/popup.lib.php"; ?>만 넣으면 위와 같은 메시지가 나오네요...
인덱스페이지 홈페이지 주소 : http://ssaboo.com/


------------------------------index,htm 페이지 소스-------------------------------------------

<?
include_once($_SERVER[DOCUMENT_ROOT]."/include/common_header.php");
include_once("$g4[path]/lib/latest.lib.php");



$displ_date = date("Y.m.d.", $g4[server_time]);
$today = date("w", $g4[server_time]);
switch($today)
{
  case 0 :
    $displ_day = "일요일"; break;
  case 1 :
    $displ_day = "월요일"; break;
  case 2 :
    $displ_day = "화요일"; break;
  case 3 :
    $displ_day = "수요일"; break;
  case 4 :
    $displ_day = "목요일"; break;
  case 5 :
    $displ_day = "금요일"; break;
  case 6 :
    $displ_day = "토요일"; break;
}


$noIMG = "/img/noimg.gif"; //[필수](URL)
$max = 153 ; //[필수](픽셀) 썸네일 이미지의 가로세로(긴쪽)의 최대치.
$resol = 90 ; //[필수](퍼센트%) 생성되는 썸네일의 JPG압축률.
$str = 15 ; //[필수](글자수) 썸네일 밑의 제목의 글자수.

function smaller( $W, $H ) {
  global $max, $thum_W, $thum_H ;

    if ( $W > $H ) { //가로형일 경우.
      $thum_W = $max ;
      $thum_H = ceil( $H * ( $max / $W ) );
    }
    if ( $W < $H ) { //세로형일 경우.
      $thum_H = $max ;
      $thum_W = ceil( $W * ( $max / $H ) );
    }
    if ( $W == $H ) { //정사각형일 경우.
      $thum_W = ceil( $max * 0.8 );
      $thum_H = ceil( $max * 0.8 );
    }
 
  return $thum_W ;
  return $thum_H ;
}


function maker( $thum_W, $thum_H ) {
  global $thum, $resol, $ori, $ori_info ;

    //$newImg = ImageCreate($thum_W,$thum_H); // GD라이브러리 2.0 (이하일 경우)
    $newImg = ImageCreateTrueColor($thum_W,$thum_H); // GD라이브러리 2.0 전용함수
   
    if($ori_info[2]=="2") $origImg=ImageCreateFromjpeg($ori);
    if($ori_info[2]=="3") $origImg=ImageCreateFrompng($ori);
   
    //ImageCopyResized($newImg,$origImg,0,0,0,0,$thum_W,$thum_H,ImageSX($origImg),ImageSY($origImg));
    imageCopyResampled($newImg,$origImg,0,0,0,0,$thum_W,$thum_H,ImageSX($origImg),ImageSY($origImg));
   
    Imagejpeg($newImg, $thum, $resol );
   
    chmod($thum,0707);
    ImageDestroy($newImg);
    ImageDestroy($origImg);

  return $thum ;
}


/*
<!-----------------------
 -------------------------------------------------
ㅣ                    top                        ㅣ
ㅣ                                              ㅣ
 -------------------------------------------------
 -------------------------------------------------
ㅣ              login/today/notice              ㅣ
ㅣ                                              ㅣ
 ------------------------------------------------
ㅣ              main  banner                    ㅣ
ㅣ                                              ㅣ
 ------------------------------------------------
ㅣ                                              ㅣ
ㅣ                  baard                      ㅣ
  ------------------------------------------------
ㅣ                  banner                      ㅣ
ㅣ                                              ㅣ
 -------------------------------------------------
 -------------------------------------------------
ㅣ                  copyright                    ㅣ
ㅣ                                              ㅣ
 -------------------------------------------------
--------------->
*/
?>

<? include_once($_SERVER[DOCUMENT_ROOT]."/include/html_header.php"); ?>



<link href="/common_v2/ssaboo_main.css" rel="stylesheet" type="text/css" />
<body marginheight="0">

<script language="JavaScript">
<!--
function news(n) {
    obj1 = document.getElementById("news1");
    obj2 = document.getElementById("news2");
    obj3 = document.getElementById("precheck_img1");
    obj4 = document.getElementById("precheck_img2");
    img1 = document.getElementById("news_button1");
    img2 = document.getElementById("news_button2"); 

    if ( n == 1 ) {
      obj1.style.display = "block";
      obj2.style.display = "none";
      obj3.style.display = "block";
      obj4.style.display = "none";
      img2.src = "/img/today_tap2_o.jpg";
      img1.src = "/img/today_tap1.jpg";
    }

    if ( n == 2 ) {
      obj1.style.display = "none";
      obj2.style.display = "block";
      obj3.style.display = "none";
      obj4.style.display = "block";
      img2.src = "/img/today_tap2.jpg";
      img1.src = "/img/today_tap1_o.jpg";
    }
}
// -->
</script>



<? include_once("include/all_menu.php");?>

<? include $_SERVER['DOCUMENT_ROOT']."/include_v2/body_start.php"; ?>
<!-----------------------------------상단 로고/ 상단메뉴 끝 ------------------>

 

<!----------------------------------로그인/ today / 회원알림판/ 센터배너 ------------------>
<table width="939" border="0" cellspacing="0" cellpadding="0" align="center">
  <tr>
    <!----------------------------------여백 ------------------>
    <td height="1"></td>
    <!----------------------------------여백 끝------------------>
  </tr>
  <tr>
    <!----------------------------------로그인/ today / 회원알림판 ------------------>
    <td><table width="939" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td width="148" height="131"><!-------------------로그인 폼------------------------------------------->
              <table width="49" border="0" cellspacing="0" cellpadding="0">
                <tr>

                  <td width="49" valign="middle">
    <?
    if($member[mb_id]) include_once($_SERVER[DOCUMENT_ROOT]."/include/logout_box.php");
    else include_once($_SERVER[DOCUMENT_ROOT]."/include/login_box.php");
    ?>
                  </td>

                </tr>
              </table>
          <!-------------------로그인 폼  끝------------------------------------------->
        </td>
        <td width="519" height="131">
              <table width="471" height="105" border="0" cellpadding="0" cellspacing="0">
                <tr>
                  <td colspan="3" width="467" height="29">
                    <table width="416" height="30" border="0" cellpadding="0" cellspacing="0">
                      <tr>
                        <td width="45" rowspan="2" height="30"><img src="/img/today_01.gif" width="70" height="33" alt="" /></td>
                        <td height="26" align="left" style="padding-top:6px" width="114"><?=$displ_date?> (<?=$displ_day?>) </td>
                        <td width="88" align="left" height="26">&nbsp;</td>
                        <td width="69" rowspan="2" height="30"><img src="/img/today_tap1.jpg" name="Image31" width="69" height="33" border="0" onClick="this.style.cursor='pointer'; news(1);" id="news_button1" style="cursor:pointer" /></td>
                        <td width="88" rowspan="2" height="30"><img src="/img/today_tap2_o.jpg" name="Image32" width="69" height="33" border="0" onClick="this.style.cursor='pointer'; news(2);" id="news_button2" style="cursor:pointer" /></td>
                      </tr>
                      <tr>
                        <td colspan="2" width="204"><img src="/img/today_05.gif" width="243" height="1" alt="" /></td>
                      </tr>
                  </table></td>
                </tr>
                <tr>
                  <td width="462" height="97"><table width="453" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td width="130" height="40">
                          <div id="precheck_img1" style="display:block"><img src="/img/precheck2.jpg" width="126" height="90" border="0" style="cursor:pointer" onClick="location.href='/hots/community/bbs/board.php?bo_table=club11'" /></div>
                          <div id="precheck_img2" style="display:none"><img src="/img/precheck.jpg" width="126" height="90" border="0" style="cursor:pointer" onClick="location.href='/hots/community/bbs/board.php?bo_table=club12'" /></div>
                        </td>
                        <td width="323" valign=top style="padding-top:10px" height="40">
                                                    <!-----------------------------게시물 뿌려주기------------------------------->

            <!--//출석체크 시작-->
            <div id="news1" style="none">
              <? echo latest("basic", "club11", 4, 40, 2); ?>
                            </div>

            <div id="news2" style="display:none;">
              <? echo latest("basic", "club12", 4, 40, 2); ?>
                            </div>



                        </td>
                      </tr>
                  </table></td>
                                <td width="2" height="97"></td>
                                <td width="-1" height="97"></td>
                </tr>
              </table>

          <!------------------출석체크 / 가입인사 끝----------------------------------------->
        </td>

   
        <td width="222" height="131"><!-------------------회원 공지사항  시작--------------->
<? include_once($_SERVER[DOCUMENT_ROOT]."/include_v2/notice_1.php"); ?>
                                    <!-------------------회원 공지사항  끝--------------->
                </td>
      </tr>
    </table></td>
  <!----------------------------------로그인/ today / 회원알림판 끝------------------>
  </tr>






  <tr>
    <!----------------------------------여백 ------------------>
    <td height="11">&nbsp;</td>
    <!----------------------------------여백 끝------------------>
  </tr>


    <tr>
    <!----------------------------------중앙배너부분------------------>
    <td><table width="939" height="271" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td height="224">&nbsp;<script language="javascript"> display_flash("/img/main_banner.swf", 939, 271) </script></td>
      </tr>
     
    </table></td>
    <!----------------------------------중앙배너부분 끝 ------------------>
    </tr>



  <tr>
    <!----------------------------------여백 ------------------>
    <td>&nbsp;</td>
    <!----------------------------------여백 끝------------------>
  </tr>
 
</table>
      <table width="944" height="100" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td width="346"><?=latest("basic_kd04", "local12", 5, 30); // 메인베이직미리보기 ?> </td>
          <td width="592">
            <table border="0" width="621">
                <tr>
                    <td width="348" height="10"><?=latest("basic_kd03", "oneself23", 5, 30); // 메인베이직미리보기 ?></td>
                    <td width="263" height="10"><p>&nbsp;<A href="http://ssaboo.com/hots/community/bbs/board.php?bo_table=counsel21" target=_self><IMG src="ssaboo_image/consulting_group.jpg" border=0></A></p></td> 
              </tr>
            </table>
 </td>
        </tr>
      </table>

                                                                                                                                                                                                                                                                                            <tr>
    <!----------------------------------여백 ------------------>
    <td>&nbsp;</td>
    <!----------------------------------여백 끝------------------>
  </tr>


<tr>
    <!----------------------------------회원지원프로그램/ 지원센터------------------>
    <td><table width="939" border="0" cellspacing="0" cellpadding="0">
      <tr>
     

<td width="407"><!-------------------------------------성공투자의 필수조건(왼쪽)----------------------->
              <table width="407" height="387" border="0" cellpadding="0" cellspacing="0">
                <tr>
                  <td colspan="3" width="407" height="37"><table width="407" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td width="361"><img src="/img/under_left_03.gif" width="361" height="37" /></td>
                        <td width="46"><a href="/local.htm"><img src="/img/under_left_03_more.gif" width="46" height="37" border="0" /></a></td>
                    </tr>
                  </table></td>
                </tr>
                <tr>
                  <td width="9" background="/img/under_left_02.gif">&nbsp;</td>
                  <td width="389" height="341">

<?
$gr = $grs = $bo = Array();
$query = "select gr_id, gr_subject from g4_group where gr_id like 'g_local%'";

$result = sql_query($query);
for ($i=0; $row = sql_fetch_array($result); $i++)
{
  $gr[] = $row;
  $grs[] = "'".$row[gr_id]."'";
}

$query = "select bo_table, gr_id, bo_subject from g4_board where gr_id in (".implode(",", $grs).") order by bo_10";
$result = sql_query($query);
for ($i=0; $row = sql_fetch_array($result); $i++)
{
  $bo["g4_write_".$row[bo_table]] = $row[bo_subject];
}

$sql = " select * from hots_article_list where gr_id in (".implode(",", $grs).") order by import desc, ar_seq desc limit 0, 15 ";
$result = sql_query($sql);

$list = array();
$i = 0;
$k = 0;

while ($row = sql_fetch_array($result))
{
    $list[$i] = $row;
    $list[$i][num] = $total_count - ($page - 1) * $page_rows - $k;
    $i++;
    $k++;
}
?>

                    <table width="389" border="0" cellspacing="0" cellpadding="0">
<?
$s_date = date("YmdHis", time()-86400);
for($i=0; $i<15; $i++)
{
  $d = $list[$i];
 
  $c_date = str_replace(" ", "", $d[wr_datetime]);
  $c_date = str_replace("-", "", $c_date);
  $c_date = str_replace(":", "", $c_date);
  if($c_date > $s_date)
    $new_img = "<img src=\"/img/new_icon.gif\" width=\"21\" height=\"21\" style=\"vertical-align:middle\"/>";
  else
    $new_img = "";

  $bo_table = str_replace("g4_write_", "", $d[bo_table]);
?>
                      <tr>
                        <td align="left" valign="middle" width="17" height="26"><img src="/img/blue_dot.gif" width="17" height="26" /></td>
                        <td width="112" height="26" align="left" style="vertical-align:middle"><a href="/hots/community/bbs/board.php?bo_table=<?=$bo_table?>"><font class="black_bold"><?=cut_str($bo[$d[bo_table]], 15,"..")?></font></a></td>
                        <td width="260" align="left" style="vertical-align:middle"><a href="/hots/community/bbs/board.php?bo_table=<?=$bo_table?>&wr_id=<?=$d[wr_id]?>"><?=cut_str($d[wr_subject], 37,"..")?></a><?=$new_img?></td>
                      </tr>
<? } ?>

                      <tr>
                        <td width="17" height="6"></td>
                        <td height="6" colspan="2"></td>
                    </tr>
                  </table></td>
                  <td width="9" background="/img/under_left_04.gif">&nbsp;</td>
                </tr>
                <tr>
                  <td colspan="3"><img src="/img/under_left_05.gif" width="407" height="9" alt="" /></td>
                </tr>
              </table>
          <!-------------------------------------성공투자의 필수조건 끝(왼쪽)----------------------->
        </td>


        <!----------------------------------가운데여백------------------->
        <td width="10">&nbsp;</td>
        <!----------------------------------가운데여백 끝------------------->
        <td width="522"><table width="521" height="388" border="0" cellpadding="0" cellspacing="0">
          <tr>
            <td colspan="4"><table width="521" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td width="464"><img src="/img/under_right_01.gif" width="464" height="37" /></td>
                <td width="57"><a href="/oneself.htm"><img src="/img/under_right_02.gif" width="57" height="37" border="0" /></a></td>
              </tr>
            </table></td>
          </tr>
          <tr>
            <td width="11" background="/img/under_right_03.gif"></td>
            <td colspan="2" width="499" height="341" valign="middle">
<?
$gr = $grs = $bo = Array();
$query = "select gr_id, gr_subject from g4_group where gr_id like 'g_oneself%'";

$result = sql_query($query);
for ($i=0; $row = sql_fetch_array($result); $i++)
{
  $gr[] = $row;
  $grs[] = "'".$row[gr_id]."'";
}

$query = "select bo_table, gr_id, bo_subject from g4_board where gr_id in (".implode(",", $grs).") order by bo_10";
$result = sql_query($query);
for ($i=0; $row = sql_fetch_array($result); $i++)
{
  $bo["g4_write_".$row[bo_table]] = $row[bo_subject];
}

$sql = " select * from hots_article_list where gr_id in (".implode(",", $grs).") order by import desc, ar_seq desc limit 0, 15 ";
$result = sql_query($sql);

$list = array();
$i = 0;
$k = 0;

while ($row = sql_fetch_array($result))
{
    $list[$i] = $row;
    $list[$i][num] = $total_count - ($page - 1) * $page_rows - $k;
    $i++;
    $k++;
}
?>

                    <table width="497" border="0" cellspacing="0" cellpadding="0">
<?
$s_date = date("YmdHis", time()-86400);
for($i=0; $i<15; $i++)
{
  $d = $list[$i];
 
  $c_date = str_replace(" ", "", $d[wr_datetime]);
  $c_date = str_replace("-", "", $c_date);
  $c_date = str_replace(":", "", $c_date);
  if($c_date > $s_date)
    $new_img = "<img src=\"/img/new_icon.gif\" width=\"21\" height=\"21\" style=\"vertical-align:middle\"/>";
  else
    $new_img = "";

  $bo_table = str_replace("g4_write_", "", $d[bo_table]);
?>
                      <tr>
                        <td align="left" valign="middle" width="17" height="26"><img src="/img/blue_dot.gif" width="17" height="26" /></td>
                        <td width="112" height="26" align="left" style="vertical-align:middle"><a href="/hots/community/bbs/board.php?bo_table=<?=$bo_table?>"><font class="black_bold"><?=cut_str($bo[$d[bo_table]], 16,"..")?></font></a></td>
                        <td width="368" align="left" style="vertical-align:middle"><a href="/hots/community/bbs/board.php?bo_table=<?=$bo_table?>&wr_id=<?=$d[wr_id]?>"><?=cut_str($d[wr_subject], 57,"..")?></a><?=$new_img?></td>
                      </tr>
<? } ?>

                    </table>
              <!------------------------------- 나홀로 경매 지원센터 최근 게시물 끝------------------------------------->
            </td>
            <td width="11" background="/img/under_right_05.gif"></td>
          </tr>
          <tr>
            <td colspan="4"><img src="/img/under_right_06.gif" width="521" height="9" alt="" /></td>
          </tr>
          <tr>
            <td><img src="/img/spacer.gif" width="11" height="1" alt="" /></td>
            <td><img src="/img/spacer.gif" width="453" height="1" alt="" /></td>
            <td><img src="/img/spacer.gif" width="46" height="1" alt="" /></td>
            <td><img src="/img/spacer.gif" width="11" height="1" alt="" /></td>
          </tr>
        </table></td>
      </tr>
    </table></td>
    <!----------------------------------회원지원프로그램/ 지원센터 끝------------------>
  </tr>
  <tr>
    <td height="10"></td>
  </tr>
 


  <tr>
    <!----------------------------------여백 ------------------>
    <td>&nbsp;</td>
    <!----------------------------------여백 끝------------------>
  </tr>
 


  <table width="939" height="130" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td><? echo latest("basic11",local81, 6, 22);?></td>
        </tr>
  </table>
                                                                                                                                              <tr>
    <!----------------------------------여백 ------------------>
    <td>&nbsp;</td>
    <!----------------------------------여백 끝------------------>
  </tr>


    <table width="939" height="130" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td width="939" height="120">
            <table border="0" width="947">
                <tr>
                    <td width="468" height="14"><? echo latest("basic12",local91, 4, 25);?></td>
                    <td width="469" height="14"><? echo latest("basic12",local93, 4, 25);?></td>
                </tr>
            </table>
        </td> 
        </tr>
      </table>


  <tr>
    <!----------------------------------여백 ------------------>
    <td>&nbsp;</td>
    <!----------------------------------여백 끝------------------>
  </tr>





<DIV align=center>
<A href="http://ssaboo.com/onlinelect.htm" target=_self><IMG src="/ssaboo_image/main/main_school_title.JPG" border=0></A><br /></DIV>

 
      <table width="939" height="230" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td><? echo latest("lonely",onlinel23, 3, 40);?></td>
          <td><? echo latest("lonely",onlinel24, 3, 40);?></td>
          <td><? echo latest("lonely",onlinel25, 3, 40);?></td>
        </tr>
        <tr>
          <td><? echo latest("lonely",onlinel212, 3, 40);?></td>
          <td><? echo latest("lonely",onlinel29, 3, 40);?></td>
          <td><? echo latest("lonely",onlinel213, 3, 40);?></td>
        </tr>
      </table>
                                                                                                                                                                                                                                                                                            <tr>
    <!----------------------------------여백 ------------------>
    <td>&nbsp;</td>
    <!----------------------------------여백 끝------------------>
  </tr>



<? include_once($_SERVER[DOCUMENT_ROOT]."/include/body_end.php"); ?>

</html>


------------------------------index,htm 페이지 소스-------------------------------------------


현재, 사용중인 홈페이지라    <? include_once "lib/popup.lib.php"; ?>  소스는 뺀 상태..
<? include_once "lib/popup.lib.php"; ?>를 위 인덱스 페이지에 삽입 위치를 바꿔가며 삽입해도
에러 나는 줄만 달리할 뿐 똑같은 메시지가 나옵니다.

참고로 다시 한 번 말씀드리지만, 게시판에선 팝업이 정상적으로 잘 작동합니다. 그런데 게시판 이외 페이지에선 관리자에서 경로를 입력해도 전혀 나타나질 않습니다..ㅜㅜ
오류 메세지를 바야지만 알수있습니다.
재가봣을때는 경로상에 문제같은데

include_once("$g4[path]/lib/popup.lib.php");
로 문장을 넣어서 호출해보세요
해결됬습니다. 일러주신 include_once("$g4[path]/lib/popup.lib.php");  요거 한방에 문제가 해결되는 군요...전문사이트 부럽지 않은 너무나 유용한 탑스쿨님 팝업스킨 잘 쓰겠습니다. 깊은 감사드립니다^^
전체 66,554 |RSS
그누4 질문답변 내용 검색

회원로그인

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