検索条件
全1件
(1/1ページ)
前:$wgEnableUploads = false; 後:$wgEnableUploads = true;アップロードできるファイルの拡張子も記載します。
$wgFileExtensions = array( 'gif', 'png', 'jpg', 'jpeg', 'bmp', 'pdf' );
$wgGroupPermissions['*']['createaccount'] = false;を書き加える。
$wgScript = "$wgScriptPath/index.php"; $wgRedirectScript = "$wgScriptPath/redirect.php"; $wgArticlePath = "$wgScriptPath/$1";同じフォルダ内にある「.htaccess」に以下を書き加えます。
RewriteEngine on RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+)$ index.php?title=$1 [L,QSA]
$wgScriptPath = "/mediawiki"; $wgScript = "$wgScriptPath/index.php"; $wgRedirectScript = "$wgScriptPath/redirect.php"; $wgArticlePath = "$wgScriptPath/$1";同じフォルダ内にある「.htaccess」に以下を書き加えます。
RewriteEngine on RewriteBase /mediawiki/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+)$ index.php?title=$1 [L,QSA]
wfLoadExtension( 'MobileFrontend' ); $wgMFAutodetectMobileView = true;と追記します。モバイルページのcssは、
MediaWiki:Mobile.cssで記載・設定できます。