Created
July 11, 2015 05:43
-
-
Save suneo3476/ba6583e53507dca9d845 to your computer and use it in GitHub Desktop.
Mediawikiがデプロイ先で500エラーを起こす時に真っ先に確認すること ref: http://qiita.com/suneo3476/items/43704f0f58e194c2883f
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#$wgScriptPath = "http://my.domain.com"; | |
$wgScriptPath = "http://localhost/mwiki"; | |
#$wgServer = "http://my.domain.com"; | |
$wgServer = "http://localhost/mwiki"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Database settings | |
$wgDBtype = "mysql"; | |
$wgDBserver = "localhost"; | |
$wgDBname = "mediawiki"; | |
$wgDBuser = "root"; | |
$wgDBpassword = "passForLocal"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment