"미디어위키 MobileFrontend 설치 (모바일웹)"의 두 판 사이의 차이

6번째 줄: 6번째 줄:
*https://www.mediawiki.org/wiki/Extension:MobileFrontend 에서 확장기능을 다운로드
*https://www.mediawiki.org/wiki/Extension:MobileFrontend 에서 확장기능을 다운로드
* [[확장기능 폴더]]에 업로드하고 압축 해제
* [[확장기능 폴더]]에 업로드하고 압축 해제
* [[LocalSettings.php]] 하단에 아래 내용 추가
* [[LocalSettings.php]] 하단에 아래 내용 추가<ref>미디어위키 1.24 이하 구버전은 <code>wfLoadExtension("MobileFrontend");</code>
 
대신 <code>require_once("$IP/extensions/MobileFrontend/MobileFrontend.php");</code></ref>
<source lang="php">
<source lang="php">
# MediaWiki 1.24 초과 버전
wfLoadExtension("MobileFrontend");
wfLoadExtension("MobileFrontend");
$wgMFAutodetectMobileView = true;
</source>
<source lang='php'>
# MediaWiki 1.24 이하 버전 (구버전)
require_once("$IP/extensions/MobileFrontend/MobileFrontend.php");
$wgMFAutodetectMobileView = true;
$wgMFAutodetectMobileView = true;
</source>
</source>

2017년 8월 24일 (목) 00:09 판

미디어위키 모바일웹 적용
미디어위키 MobileFrontend 적용
미디어위키 MobileFrontend 설치

1 방법

wfLoadExtension("MobileFrontend");
$wgMFAutodetectMobileView = true;

2 같이 보기

3 참고

  1. 미디어위키 1.24 이하 구버전은 wfLoadExtension("MobileFrontend"); 대신 require_once("$IP/extensions/MobileFrontend/MobileFrontend.php");