묻고답하기
죄송합니다. 급하게 질문드립니다.
2012.02.09 17:35
안녕하세요. xpressengine를 처음 써보는 사용자입니다.
매뉴얼은 다운받아서 다 읽어 봤는데요. 일단 제 관리자 화면과 나타나는 화면 부터가 다르네요.
일단 시작페이지를 알고 싶습니다. 해당 폴더의 index.php에는 아무것도 이동경로가 나타나 있지 않고,
---------------------------------------------------------------------------------------------------------------------------------------
<?php
/**
* @file index.php
* @author NHN (developers@xpressengine.com)
* @brief 시작 페이지
*
* Request Argument에서 mid, act로 module 객체를 찾아서 생성하고 \n
* 모듈 정보를 세팅함
*
* @mainpage XpressEngine
* @section intro 소개
* XE 는 오픈 프로젝트로 개발되는 오픈 소스입니다.\n
* 자세한 내용은 아래 링크를 참조하세요.
* - 공식홈페이지 : http://www.xpressengine.com
* - SVN Repository : http://svn.xpressengine.net/xe
* \n
* "XpressEngine (XE)" is free software; you can redistribute it and/or \n
* modify it under the terms of the GNU Lesser General Public \n
* License as published by the Free Software Foundation; either \n
* version 2.1 of the License, or (at your option) any later version. \n
* \n
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
* \n
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
**/
/**
* @brief 기본적인 상수 선언, 웹에서 직접 호출되는 것을 막기 위해 체크하는 상수 선언
**/
define('__ZBXE__', true);
/**
* @brief 필요한 설정 파일들을 include
**/
require('./config/config.inc.php');
/**
* @brief Context 객체를 생성하여 초기화
* 모든 Request Argument/ 환경변수등을 세팅
**/
$oContext = &Context::getInstance();
$oContext->init();
/**
* @brief default_url 이 설정되어 있고 현재 url이 default_url과 다르면 SSO인증을 위한 rediret 시도 후 모듈 동작
**/
if($oContext->checkSSO()) {
$oModuleHandler = new ModuleHandler();
if($oModuleHandler->init()) {
$oModule = &$oModuleHandler->procModule();
$oModuleHandler->displayContent($oModule);
}
}
$oContext->close();
?>
---------------------------------------------------------------------------------------------------------------------------------------
이렇게만 나와있는데요. FTP에서 파일구조를 하나하나 다 살펴봤는데 시작페이지를 못찾겠습니다.
따로 시작페이지가 어디인지 관리자로 로그인하면 알 수 있나요? 아니면 어떻게 알아야 하나요?
두번째로 사이트에 팝업창을 띄우고 싶은데 어떻게 해야 하나요?
소스에 직접 onload를 하는 방법이나, 아니면 관리자로 로그인해서 사용이 가능한가요?
빠른 답변 부탁드립니다. 정말 급해서요.
댓글 4
-
백성찬
2012.02.09 17:44
메뉴얼에 설명되어 있습니다. -
forest535
2012.02.09 17:52
시작페이지는 관리자메뉴로 들어가셔서 시작페이지로 사용할 모듈(페이지, 게시판, 외부페이지 등)을 별도로 지정해 주어야합니다
그리고 팝업창을 띄우는것은 물론 소스코드에 하셔도 되지만 애드온이 개발되어있으므로 그것을 이용하는것이 좋을것 같네요
'팝업' 으로 검색하면 몇개 나옵니다
-
min
2012.02.09 18:36
매뉴얼을 읽어보고 이해가 잘 안되서 남긴 글이였습니다.^^
다시 매뉴얼을 봤는데요. 제 관리자화면과 다른거는 버전이 달라서 그런건가요?
-
백성찬
2012.02.09 18:41
관리자 > 설정(일반) > 기본 url -
백성찬
2012.02.09 18:47
1.5.1.6 기준으로
관리자 > 설정(일반) > 기본 url
에서 설정 합니다.