Manual:deleteArchivedRevisions.php

From mediawiki.org
This page is a translated version of the page Manual:DeleteArchivedRevisions.php and the translation is 20% complete.
Outdated translations are marked like this.
Versão MediaWiki:
1.11

Detalhes

deleteArchivedRevisions.php file is a maintenance script to delete all the archived (hidden from public view) revisions, by clearing out the archive table. These revisions will no longer be restorable. Deleted pages and archived revisions to a given page are permanently deleted, but the complete history of existing pages will remain.

When a page is 'deleted' by an administrator (Help:Eliminação e recuperação ), records are moved from the 'revision' table to the 'archive' table, although the bulk of the data (page text) remains in the 'text' table. The script deletes all records from the archive table and then invokes purgeOldText.php to purge the text records which no revision links to. This can be useful for reducing the size of the database but it does mean you lose the ability to restore the according revisions.

Prior to MediaWiki 1.16, a helper file deleteArchivedRevisions.inc contained the class that performs the work. This class was merged into deleteArchivedRevisions.php in 1.16.

Atenção Atenção: This script attempts to remove unused entries from the text table, which can cause potential data loss.

Options/Arguments

Opção/Parâmetro Descrição Required?
--delete Does the deletion (otherwise only displays the number of revisions to delete). Optional

Uso

php maintenance/deleteArchivedRevisions.php [ --delete ]

Checking potential deletion

Terminal

Making actual deletion

Terminal

See also