Media Wiki Troubleshooting: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 36: Line 36:
$wgDebugDumpSql  = true;
$wgDebugDumpSql  = true;
</syntaxhighlight>
</syntaxhighlight>
=PHP Info=
Add a file called <code>info.php</code> in <code>/var/www/mediawiki-*</code>, with the following content, and serve it through the web server:
<pre>
<?php phpinfo() ?>
</pre>


=Log Locations=
=Log Locations=

Revision as of 18:54, 29 December 2023

External

Internal

Debugging

PHP Errors

Add the following to the second line from the top (right below the <?php) of LocalSettings.php:

error_reporting( -1 );
ini_set( 'display_errors', 1 );
$wgDebugToolbar = true;
$wgShowExceptionDetails = true;
$wgDevelopmentWarnings = true;
$wgShowDebug = true;

This will configure MediaWiki to show the errors in page.

Also add in index.php:

error_reporting( -1 );
ini_set( 'display_startup_errors', 1 );
ini_set( 'display_errors', 1 );

SQL Errors

Add in LocalSettings.php:

$wgShowSQLErrors = true;
$wgDebugDumpSql  = true;

Log Locations