Page MenuHomePhabricator

no way for user to dump all categories
Closed, DeclinedPublic

Description

In an effort to print out all my Special:Categories without limits,
I inch up 444, 555 ...
$ GET http://localhost/mediawiki/index.php?title=Special:Categories\&limit=777
500 Server closed connection without sending any data back

Well gosh, at least say "asking for too many", don't just slam the door.

OK, forced to do
$ i=0; while test $i -le 2000
do w3m -dump http://localhost/mediawiki/index.php/Special:Categories?limit=500\&offset=$i
: $((i+=500)); done|perl -nwe 'print if /^\s*\d+\./'


Version: 1.7.x
Severity: minor
OS: Linux
Platform: PC

Details

Reference
bz8053

Event Timeline

bzimport raised the priority of this task from to Low.Nov 21 2014, 9:30 PM
bzimport added a project: MediaWiki-Parser.
bzimport set Reference to bz8053.
bzimport added a subscriber: Unknown Object (MLST).

Works fine here and on Wikipedia. Confirm you're sending the URL
correctly and aren't hitting local errors of some sort.