묻고답하기

저는 xe 1.7.3 을 사용하고 있는데, 관리자 페이지 설정<일반 에서 언어선택이라던지, 모바일 체크를 하고 저장할 때 저장이 안되는데 이것은 config파일 경로에 문제가 있는 거라고 하는데 아직 초보라 무엇이 문제인지 잘 모르겠습니다. 고수님 좀 알려주세요.

 

config.php 소스입니다.

 

<?php

/**
 * set the include of the class file and other environment configurations
 *
 * @file   config/config.inc.php
 * @author NHN (developers@xpressengine.com)
 */
if(version_compare(PHP_VERSION, '5.4.0', '<'))
{
 @error_reporting(E_ALL ^ E_NOTICE ^ E_DEPRECATED);
}
else
{
 @error_reporting(E_ALL ^ E_NOTICE ^ E_DEPRECATED ^ E_STRICT);
}

if(!defined('__XE__'))
{
 exit();
}

/**
 * @deprecated __ZBXE__ will be removed. Use __XE__ instead.
 */
define('__ZBXE__', __XE__);

/**
 * Display XE's full version.
 * The version should be revised when releasing even if no change is made.

 * XE core's version name is designated development stage. Basically consist of 4 numbers. For example X.X.X.X.

 * First position number means 'major' update.
 * Second position number means 'minor' update.
 * Third position number '0, 1, 2, 3' means 'status' update.
 * Forth position number means 'patch' update.

 * Third position number for status display is consist of 0~3 numbers.
 * '0' means 'alpha' status.
 * '1' means 'beta' status.
 * '2' means 'release candidate' status.
 * '3' means 'final' status.
 */
define('__XE_VERSION__', '1.7.3.0');

/**
 * @deprecated __ZBXE_VERSION__ will be removed. Use __XE_VERSION__ instead.
 */
define('__ZBXE_VERSION__', __XE_VERSION__);

/**
 * The base path to where you installed zbXE Wanted
 */
define('_XE_PATH_', str_replace('config/config.inc.php', '', str_replace('\\', '/', __FILE__)));


// Set can use other method instead cookie to store session id(for file upload)
ini_set('session.use_only_cookies', 0);


if(file_exists(_XE_PATH_ . 'config/package.inc.php'))
{
 require _XE_PATH_ . 'config/package.inc.php';
}
else
{
 /**
  * Package type
  */
 define('_XE_PACKAGE_', 'XE');

 /**
  * Location
  */
 define('_XE_LOCATION_', 'en');

 /**
  * Location site
  */
 define('_XE_LOCATION_SITE_', 'http://www.xpressengine.org/');

 /**
  * Download server
  */
 define('_XE_DOWNLOAD_SERVER_', 'http://en.download.xpressengine.org/');
}

/*
 * user configuration files which override the default settings
 * save the following information into config/config.user.inc.php
 * <?php
 * define('__DEBUG__', 0);
 * define('__DEBUG_OUTPUT__', 0);
 * define('__DEBUG_PROTECT__', 1);
 * define('__DEBUG_PROTECT_IP__', '127.0.0.1');
 * define('__DEBUG_DB_OUTPUT__', 0);
 * define('__LOG_SLOW_QUERY__', 0);
 * define('__OB_GZHANDLER_ENABLE__', 1);
 * define('__ENABLE_PHPUNIT_TEST__', 0);
 * define('__PROXY_SERVER__', 'http://domain:port/path');
 * define('__XE_CDN_PREFIX__', 'http://yourCdnDomain.com/path/');
 * define('__XE_CDN_VERSION__', 'yourCdnVersion');
 */
if(file_exists(_XE_PATH_ . 'config/config.user.inc.php'))
{
 require _XE_PATH_ . 'config/config.user.inc.php';
}

if(!defined('__DEBUG__'))
{
 /**
  * output debug message(bit value)
  *
  * <pre>
  * 0: generate debug messages/not display
  * 1: display messages through debugPrint() function
  * 2: output execute time, Request/Response info
  * 4: output DB query history
  * </pre>
  */
 define('__DEBUG__', 0);
}

if(!defined('__DEBUG_OUTPUT__'))
{
 /**
  * output location of debug message
  *
  * <pre>
  * 0: connect to the files/_debug_message.php and output
  * 1: HTML output as a comment on the bottom (when response method is the HTML)
  * 2: Firebug console output (PHP 4 & 5. Firebug/FirePHP plug-in required)
  * </pre>
  */
 define('__DEBUG_OUTPUT__', 0);
}

if(!defined('__DEBUG_PROTECT__'))
{
 /**
  * output comments of the firePHP console and browser
  *
  * <pre>
  * 0: No limit (not recommended)
  * 1: Allow only specified IP addresses
  * </pre>
  */
 define('__DEBUG_PROTECT__', 1);
}

if(!defined('__DEBUG_PROTECT_IP__'))
{
 /**
  * Set a ip address to allow debug
  */
 define('__DEBUG_PROTECT_IP__', '127.0.0.1');
}

if(!defined('__DEBUG_DB_OUTPUT__'))
{
 /**
  * DB error message definition
  *
  * <pre>
  * 0: No output
  * 1: files/_debug_db_query.php connected to the output
  * </pre>
  */
 define('__DEBUG_DB_OUTPUT__', 0);
}

if(!defined('__LOG_SLOW_QUERY__'))
{
 /**
  * Query log for only timeout query among DB queries
  *
  * <pre>
  * 0: Do not leave a log
  * = 0: leave a log when the slow query takes over specified seconds
  * Log file is saved as ./files/_db_slow_query.php file
  * </pre>
  */
 define('__LOG_SLOW_QUERY__', 0);
}

if(!defined('__DEBUG_QUERY__'))
{
 /**
  * Leave DB query information
  *
  * <pre>
  * 0: Do not add information to the query
  * 1: Comment the XML Query ID
  * </pre>
  */
 define('__DEBUG_QUERY__', 0);
}

if(!defined('__OB_GZHANDLER_ENABLE__'))
{
 /**
  * option to enable/disable a compression feature using ob_gzhandler
  *
  * <pre>
  * 0: Not used
  * 1: Enabled
  * Only particular servers may have a problem in IE browser when sending a compression
  * </pre>
  */
 define('__OB_GZHANDLER_ENABLE__', 1);
}

if(!defined('__ENABLE_PHPUNIT_TEST__'))
{
 /**
  * decide to use/not use the php unit test (Path/tests/index.php)
  *
  * <pre>
  * 0: Not used
  * 1: Enabled
  * </pre>
  */
 define('__ENABLE_PHPUNIT_TEST__', 0);
}

if(!defined('__PROXY_SERVER__'))
{
 /**
  * __PROXY_SERVER__ has server information to request to the external through the target server
  * FileHandler:: getRemoteResource uses the constant
  */
 define('__PROXY_SERVER__', NULL);
}

if(!defined('__XE_CDN_PREFIX__'))
{
 /**
  * CDN prefix
  */
 define('__XE_CDN_PREFIX__', 'http://static.xpressengine.com/core/');
}

if(!defined('__XE_CDN_VERSION__'))
{
 /**
  * CDN version
  */
 define('__XE_CDN_VERSION__', 'treat');
}

// Require specific files when using Firebug console output
if((__DEBUG_OUTPUT__ == 2) && version_compare(PHP_VERSION, '6.0.0') === -1)
{
 require _XE_PATH_ . 'libs/FirePHPCore/FirePHP.class.php';
}

// Set Timezone as server time
if(version_compare(PHP_VERSION, '5.3.0') >= 0)
{
 date_default_timezone_set(@date_default_timezone_get());
}

if(!defined('__XE_LOADED_CLASS__'))
{
 // Require a function-defined-file for simple use
 require(_XE_PATH_ . 'config/func.inc.php');

 if(__DEBUG__)
  define('__StartTime__', getMicroTime());

 // include the class files
 //TODO When _autoload() can be used for PHP5 based applications, it will be removed.
 if(__DEBUG__)
  define('__ClassLoadStartTime__', getMicroTime());
 require(_XE_PATH_ . 'classes/object/Object.class.php');
 require(_XE_PATH_ . 'classes/extravar/Extravar.class.php');
 require(_XE_PATH_ . 'classes/handler/Handler.class.php');
 require(_XE_PATH_ . 'classes/xml/XmlParser.class.php');
 require(_XE_PATH_ . 'classes/xml/XmlGenerator.class.php');
 require(_XE_PATH_ . 'classes/xml/XmlJsFilter.class.php');
 require(_XE_PATH_ . 'classes/xml/XmlLangParser.class.php');
 require(_XE_PATH_ . 'classes/cache/CacheHandler.class.php');
 require(_XE_PATH_ . 'classes/context/Context.class.php');
 require(_XE_PATH_ . 'classes/db/DB.class.php');
 require(_XE_PATH_ . 'classes/file/FileHandler.class.php');
 require(_XE_PATH_ . 'classes/widget/WidgetHandler.class.php');
 require(_XE_PATH_ . 'classes/editor/EditorHandler.class.php');
 require(_XE_PATH_ . 'classes/module/ModuleObject.class.php');
 require(_XE_PATH_ . 'classes/module/ModuleHandler.class.php');
 require(_XE_PATH_ . 'classes/display/DisplayHandler.class.php');
 require(_XE_PATH_ . 'classes/template/TemplateHandler.class.php');
 require(_XE_PATH_ . 'classes/mail/Mail.class.php');
 require(_XE_PATH_ . 'classes/page/PageHandler.class.php');
 require(_XE_PATH_ . 'classes/mobile/Mobile.class.php');
 require(_XE_PATH_ . 'classes/validator/Validator.class.php');
 require(_XE_PATH_ . 'classes/frontendfile/FrontEndFileHandler.class.php');
 require(_XE_PATH_ . 'classes/security/Security.class.php');
 if(__DEBUG__)
  $GLOBALS['__elapsed_class_load__'] = getMicroTime() - __ClassLoadStartTime__;
}
/* End of file config.inc.php */
/* Location: ./config/config.inc.php */

글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
문양호 고수님들 업글후 다운로드 권한이 없다네요.... [1] file 2007.11.30 by 문양호
shopga 아이디 비밀번호 찾기 관련 질문입니다.  
윤스키 XE 쓴 홈피 가보니까 대부분 모양이 비슷하던데요.. [3] 2007.11.30 by 포레버
박재홍 div 에 대해서.. [2] 2007.11.30 by Bok-e
윤스키 아.. 이렇게 다 날리는 것인가.. 도와주세요 ㅠ_ㅠ [3] file 2007.11.30 by 윤스키
스타일 제로보드에 <style> img{border:none;}태그를 넣은후 부터 수정, 삭제 메뉴가 안나타나요 [1] 2007.11.30 by 나그네
민서 좌측로그인박스 없애려면 어떻게 하나요? [1] 2007.11.30 by 백성찬
제트스윙 게시물 리스트 보기 페이지에서 제목이 짤립니다. file  
Mastojun ol, li, ul 테그가 제대로 먹히지 않습니다. [2] 2007.11.30 by Mastojun
김동환 이런 오류는 어떻게 해야하나욧 ㅠ.ㅠ. [4] 2007.11.30 by 비트겐스
smico 제로보드 메인페이지에 있는 탭메뉴는 어떻게 만든 것입니까? [4] 2007.11.30 by smico
물어봐요 게시판 날짜 삭제 어떻게 하나요? [1] 2007.11.30 by HIKARU
하나로45 로그인 폼에 포커스가 안먹힐때는 어떻게 해야 하나요?  
철장통치 확장변수 전화번호형식에서 앞자리 "0"이 표시되지 않는 문제 [3] file 2007.11.30 by 철장통치
smico 같은 내용에 메인페이지의 스킨만 달리할수 있는 방법을 가르쳐 주세요. [1] 2007.11.30 by guny
서희웅 언제부턴가, 이상하게 나오기 시작합니다.. [3] file 2007.11.30 by 서희웅
설문조사 0.2.7 버전에 설문조사 위젯이 없어졌나요? [1] 2007.11.29 by 백성찬
조용철126 제로보드4를 사용하고 있는데.... [1] 2007.11.29 by guny
말탄개미 댓글에 답변을 다는 경우 원글 작성자의 회원번호를 따려는데요... [1] 2007.11.29 by Simulz
질문이 로그인했을때 "저장함 보기" 의 기능은? [2] 2007.11.29 by 질문이
niea xe에서 플래시 메뉴를 사용해보려고 합니다 자세한 조언 부탁드립니다...  
팬텀 페이지 모듈 기본체크 해제방법? [1] 2007.11.29 by 백성찬
최보람395 제로보드 에 있던 글 다른곳으로 옮기려면??  
김동환 자료 옮길때 질문!!  
더하기나무 계속 홈을 손보다보니...  
Coni 제로보드4 와 XE 회원정보를 공유할수 있나요? [1] 2007.11.29 by 백성찬
≪HKM≫ php 오류...다이제님 한번만 더 봐 주세요 ㅜ.ㅜ [3] 2007.11.29 by 다이제
하이우리 홈페이지메인에서 게시판 누르면 화면이 안나오네요 ㅠㅠ  
민서 swf 파일 첨부했을때 바로 볼 수 있게 .... [3] 2007.11.29 by ChosenOne
장유라 아이프레임으로 이런 모양 구성할줄아시는분 도움좀.. [2] file 2007.11.29 by bonghwang999@gmail.com