MediaWiki cheat sheet

From misc notes
Revision as of 12:31, 14 April 2012 by Nxhack (talk | contribs)
Jump to navigation Jump to search

この MediaWiki の設定・運用メモ(忘れるので...)

  • Update を確認
MediaWiki.org
  • 使っている extentions も確認
Extension:HTMLets
Extension:SyntaxHighlight GeSHi
SyntaxHighlight の使い方
<syntaxhighlight lang="php">
  • LocalSettings.php の設定

PHP のメモリー設定

ini_set( 'memory_limit', '128M' );

MemCached の設定

$wgMainCacheType = CACHE_MEMCACHED;
$wgMemCachedServers = array('127.0.0.1:11211');
$wgSessionsInMemcached = true;
$wgUseMemCached = true;

匿名ユーザの制限

$wgGroupPermissions['*']['createaccount'] = false;
$wgGroupPermissions['*']['edit'] = false;
$wgDefaultUserOptions['editsection'] = false;
$wgDisableAnonTalk = true;

外部リンク画像ファイルの表示

$wgAllowExternalImages = true;

varnish の設定

$wgUseSquid = true;
$wgSquidServers = array( 'xxx.xxx.xxx.xxx' , 'xxx.xxx.xxx.xxx' );
$wgSquidServersNoPurge = array('127.0.0.1');

不要な情報を隠す

$wgDisableCounters = true;
$wgShowIPinHeader = false;
  • Skin (Vector) の設定

余計なタブやフッターを隠す (MediaWiki:Vector.css の設定)

#ca-talk { display: none !important; }
#ca-history { display: none !important; }
#ca-viewsource { display: none !important; }
/* #footer-info-lastmod { display: none; } */
#footer-info-copyright { display: none; }
#footer-places-privacy { display: none; }
#footer-places-about { display: none; }
#footer-places-disclaimer { display: none; }
#footer-poweredbyico { display: none; }

余計なフッターを隠す (MediaWiki:Privacy | MediaWiki:Privacypage | MediaWiki:Aboutsite | MediaWiki:Aboutpage | MediaWiki:Disclaimers | MediaWiki:Disclaimerpage にハイフン '-' を設定)

-

余計なフッターを隠す (MediaWiki:Common.css の設定)

#f-poweredbyico { display: none; }
#footer-icon-poweredby { display: none; }
#footer-icon-poweredbyico { display: none; }
#footer-poweredbyico { display: none; }

ログインユーザにのみツールボックスを見せる (skins/Vector.php の変更)

@@ -267,7 +267,11 @@
                        $portals['SEARCH'] = true;
                }
                if ( !isset( $portals['TOOLBOX'] ) ) {
-                       $portals['TOOLBOX'] = true;
+                       if($this->data['loggedin']) {
+                               $portals['TOOLBOX'] = true;
+                       } else {
+                               $portals['TOOLBOX'] = false;
+                       }
                }
                if ( !isset( $portals['LANGUAGES'] ) ) {
                        $portals['LANGUAGES'] = true;
  • SyntaxHighlight GeSHi の下位互換性

インデントさせる為に MediaWiki:Geshi.css に設定

div.mw-geshi {
  padding: 1em; 
  margin: 1em 0; 
  border: 1px dashed #2f6fab;
  background-color: #f9f9f9;
}
  • HTMLets のメモ

今はつかってないので忘れてしまいそう。すべてのページに挿入するには MediaWiki:Sitenotice に仕込む