미디어 위키 갤러리페이지 보니까 너무 느려서 답답하고 브라우져가 뻗음......
확인결과 썸네일 기능이 전혀 사용하지 않아서 원본이미지가......ㄷㄷㄷ
그래서 찾아보니 썸네일 기능을 제공하는 듯하다
http://www.mediawiki.org/wiki/Manual:Installing_third-party_tools
Image thumbnailing
Image thumbnailing requires either ImageMagick or GD library. ImageMagick is recommended since it produces better quality thumbnails. It can be downloaded from http://www.imagemagick.org. GD can be downloaded fromhttp://boutell.com/gd.
ImageMagick
MediaWiki can be configured to use ImageMagick to do dynamic resizing and thumbnailing of images. ImageMagick is available for Windows, Unix, Mac OS, and Linux from http://www.imagemagick.org/script/index.php. Once ImageMagick is installed, you must enable ImageMagick and point MediaWiki to the convert
or convert.exe
program on your computer in LocalSettings.php like this:
$wgUseImageMagick = true; #$wgImageMagickConvertCommand = 'C:/ImageMagick/convert.exe'; # for windows $wgImageMagickConvertCommand = '/usr/bin/convert'; # for linux
For information on configuring MediaWiki for images in general see Manual:Image Administration and Manual:Configuration settings#Images. For information on installing ImageMagick on Windows, see Manual:Newcomers guide to installing on Windows#ImageMagick.
보니까 ImageMagick 깔려있어야되는 듯함
※ 설치과정
1) ImageMagick 설치
yum install ImageMagick
========================================================================================================= Package Arch Version Repository Size
=========================================================================================================
Installing:
ImageMagick x86_64 6.5.4.7-7.el6_5 updates 1.7 M
=========================================================================================================
2) 홈디렉토리에 LocalSettings.php 설정파일에서 썸네일 기능 활성화 주석제거
$wgUseImageMagick = true; $wgImageMagickConvertCommand = "/usr/bin/convert";
//리눅스 프로세스 리스트 보니까....썸네일 자체가 백엔드에서 Shell 로 돌는듯하다.
//window서버의 경우 위에 for windows 참조
3) 썸네일 불가 에러 발생 이미지 용량 너무큼.. thumbnail Shell 처리시 사이즈가 설정 메모리 용량 초과
$wgMaxShellMemory라는 게 있다!! 아래 링크참조
http://www.mediawiki.org/wiki/Manual:$wgMaxShellMemory
그래서 LocalSettings.php 에 아래 MaxShellMemory 변수값 추가함
$wgMaxShellMemory = 1024000;
//Note: 102400 KB = 100 MB, 307200 KB = 300 MB, etc.
//나 같은 경우 MaxUploadSize 와 동일하게 맞추어주었다
//회사 내부적이나 공개용이 아닌 일부 소수 사용자간에 사용되는 위키라면 넉넉하게 설정해 놓는 게 좋을듯함