#title 모니위키 FAQ #keywords moniwiki, 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 // 수정 전 php code 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 // 수정 후 php code 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) { }}} ---- '''Q3.''' 페이지 저장 후, 깜빡거림(?)을 없애고 싶습니다. '''A3.''' 원래 포스팅 후에 반드시 리로딩이 있어야 합니다. 예전에는 이 리로딩이 없었는데 이것을 불만으로 삼으시는 분이 많더군요. 그래서 $use_save_refresh=2; 라는 값이 config.php에 기본으로 되어있어서 그렇습니다. 이 값을 0으로 하면 아마 refresh가 일어나지 않을겁니다. ---- CategoryMoniwiki