본문 바로가기
PHP/그누보드

(팁) 그누보드 새로운 폴더에 index.php 추가하기

by ethanjoh 2024. 5. 29.

그누보드 사용 중 잊어버릴 듯한 팁을 모아두면 좋을 것 같아 카테고리를 만들었다.

 

그누보드를 거의 사용해보지 않아 뭔가 해보려고 하면 찾기도 힘들고.

 

그누보드 폴더 말고 새로운 폴더를 생성 후에 그 안에 index.php 넣는다면 어떻게 출력하게 할까?

 

그누보드 QA - 최신글 관련 문의드립니다. (sir.kr)

./ (${DOCUMENT_ROOT})
├── common.php
├── index.php
└── test
    ├── _common.php
    └── index.php

 

test 디렉토리의 소스는 다음과 같이 구성되어야 합니다.

 

test/_common.php

 

<?php
require_once '../common.php';
?>

 

test/index.php

 

<?php
include_once('./_common.php');
include_once(G5_LIB_PATH.'/latest.lib.php');
include_once(G5_LIB_PATH.'/outlogin.lib.php');
 
define('_INDEX_', true);
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
?>

 

'PHP > 그누보드' 카테고리의 다른 글

(팁) 그누보드 게시판 첨부파일 용량 조정하기  (0) 2024.05.29