How can I see more than 500 recent changes in MediaWiki? -
i'd see more 500 recent changes on mediawiki installation (through special:recentchanges
). according this thread limit hardcoded in includes/specials/specialrecentchanges.php
.
i don't want meddle mediawiki core, there way more 500 changes without changing specialrecentchanges.php
?
if way achieve changing specialrecentchanges.php
, suffice increase number , possible side effects?
you can change proposed values parameter $wgrclinklimits, e.g. value $wgrclinklimits = array( 50, 100, 250, 500, 1000, 2000 );
in localsettings.php.
as saw, there hardcoded limit in includes/specials/specialrecentchanges.php; 500 before mediawiki 1.16 , 5000 since (mediawiki 1.16 released in 2010 , no more supported), , not possible display more entries number (without patching mediawiki).
Comments
Post a Comment