Skip to content

Instantly share code, notes, and snippets.

@suneo3476
Created July 11, 2015 05:43
Show Gist options
  • Save suneo3476/ba6583e53507dca9d845 to your computer and use it in GitHub Desktop.
Save suneo3476/ba6583e53507dca9d845 to your computer and use it in GitHub Desktop.
Mediawikiがデプロイ先で500エラーを起こす時に真っ先に確認すること ref: http://qiita.com/suneo3476/items/43704f0f58e194c2883f
#$wgScriptPath = "http://my.domain.com";
$wgScriptPath = "http://localhost/mwiki";
#$wgServer = "http://my.domain.com";
$wgServer = "http://localhost/mwiki";
## 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