Manual:cleanupInvalidDbKeys.php

From mediawiki.org
MediaWiki version:
1.29

Details[edit]

cleanupInvalidDbKeys.php is a maintenance script that cleans up the title fields in various tables to remove entries that will be rejected by the constructor of TitleValue. This constructor throws an exception when invalid data is encountered, which will not normally occur on regular page views, but can happen on query special pages.

The script targets titles matching the regular expression /^_|[ \r\n\t]|_$/. Because any foreign key relationships involving these titles will already be broken, the titles are corrected to a valid version or the rows are deleted entirely, depending on the table.

Options[edit]

Option Description Required
--fix Actually clean up invalid titles. If this parameter is not specified, the script will report invalid titles but not clean them up. Optional
--table The table(s) to process. This option can be specified more than once (e.g. -t category -t watchlist). If not specified, all available tables will be processed.
Available tables are: page, redirect, archive, logging, protected_titles, category, recentchanges, watchlist, pagelinks, templatelinks, categorylinks
Optional

Usage[edit]

php maintenance/cleanupInvalidDbKeys.php [ --fix| --table ]
Terminal
Terminal

See also[edit]