Last modified: 2006-12-19 13:10:09 UTC
Special:Uncategorized_pages only shows 1,000 pages, this is a problem on even medium sized wikis. I have proved that it isn't just that it is because the wiki has exactly 1,000 pages as the bug ocurs on meta: http://meta.wikimedia.org/w/ index.php?title=Special:Uncategorizedpages&limit=10000000&offset=0 and the commons http:// commons.wikimedia.org/w/index.php?title=Special:Uncategorizedpages&limit=10000000&offset=0 Good day.
These are all the query pages.
It may be caused by caching, by the way.
It is due to caching, at least on Wikimedia web sites, where this is enabled. The query page caching utilities will cache up to a maximum of 1000 results to save time (these things are cached due to the performance cost, after all) - 1000 results is considered sufficient for people to work on before the next re-cache, in most cases. Not really a bug.
Is this maximum of 1000 changeable in LocalSettings.php (just not listed at http:// www.mediawiki.org/wiki/Manual:Configuration_settings#Cache) or is it something to do with php?
The default cache limit is 1000 as defined in maintenance/updateSpecialPages.php, although individual query pages can override this in includes/QueryPage.php. At this time, none do.
As of r18162, the limit can be customised via $wgQueryCacheLimit.