#title 모니위키 FAQ '''Q1.''' [MoniWiki:SectionFolding]을 참고해서 config.php를 수정해 봤지만, 아무 반응도 보이지 않는다. '''A1.''' 모니위키 1.1.3부터 적용된 [MoniWiki:MoniMarkup]을 사용할 경우 Section Folding을 사용할 수 없다. '''Q2.''' 모니위키를 서버에 올려놓고 (설치 주소)/monisetup.php로 접속하려하면 다음과 같은 에러메시지가 출력된다. [[BR]] {{| Fatal error: Call to undefined function: bindtextdomain() in /web/home/icehit3/html/moniwiki/monisetup.php on line 678 |}} '''A2.''' moniwiki 1.1.3의 버그이다. 다음과 같이 monisetup.php의 일부분을 수정해야 한다. {{{#!php return $lang; } function initlocale($lang,$charset) { global $_Config,$_locale,$locale; if (!@include_once('locale/'.$lang.'/LC_MESSAGES/moniwiki.php') or @include_once('locale/'.substr($lang,0,2).'/LC_MESSAGES/moniwiki.php')) { if (!empty($_locale)) { function _t($text) { }}} {{{#!php return $lang; } $_locale = array(); function initlocale($lang,$charset) { global $_Config,$_locale,$locale; if (!@include_once('locale/'.$lang.'/LC_MESSAGES/moniwiki.php') and @include_once('locale/'.substr($lang,0,2).'/LC_MESSAGES/moniwiki.php')) { if (!empty($_locale)) { function _t($text) { }}} ---- CategoryMoniwiki