Jump to content

Manual:makeTestEdits.php

From mediawiki.org
Revision as of 09:57, 30 March 2022 by Jayprakash12345 (talk | contribs) (Marked this version for translation)
MediaWiki version:
1.27

Details

makeTestEdits.php maintenance script allows a developer to made random edits for testing. This is a very helpful feature for those who run test wiki and want to create some random pages to testing a new version or patch.

Options/Arguments

Option Description Required? Default value
--user Valid username of an existing user on wiki Required
--count Number of edits to be made Required
--namespace Namespace number in which edits need to be made Optional 0 (Main namespace)

Usage

php maintenance/makeTestEdits.php --user UserName --count EditCounts [--namespace NamespaceNumer]


Making 20 edits with username Foo

Terminal
Tip 1: Spaces inside a username must be replaced with underscores ( _ ) or use double quotation like "Foo Bar"

Common error

No such user exists.

This indicates that the username is not a valid username of an existing user on wiki. If the username contains spaces, see Tip 1 above.

See also