Handbuch:AttachLatest.php
Outdated translations are marked like this.
MediaWiki Version: | ≥ 1.6 |
MediaWiki-Datei: attachLatest.php | |
---|---|
Speicherort: | maintenance/ |
Quellcode: | master • 1.42.3 • 1.41.4 • 1.39.10 |
Klassen: | AttachLatest |
Details
Die attachLatest.php-Datei ist ein Wartungsskript, welches falsche Werte im page_latest
-Feld in der Datenbank behebt.
Das Programm ist für Seiten mit Spalten page_latest
aus der Tabelle Seite auf 0 gesetzt suchen.
For these pages, it then attaches the latest revision of that page according to the revision timestamp.
The script finally prints out the number of pages, which have been or would be changed.
attachLatest.php does not check, if the revision, which is set as
page_latest
actually exists. If the page_latest
field points to a non-existing revision, attachLatest.php, unless used with the --regenerate-all
parameter, will not fix this.
Optionen/Argumente
Option | Beschreibung | Notwendig? |
---|---|---|
--fix | Um tatsächlich ändern Sie die Datenbank. | Optional |
--regenerate-all | Um dieses Feld für alle Datensätze in der Tabelle Seite zu regenerieren. | Optional |
Wird angezeigt, was wird behoben werden, aber keine Änderungen an der Datenbank durchgeführt werden.
Verwendung
php maintenance/attachLatest.php [ --fix| --regenerate-all ]
Dry run to check pages
Terminal
$ php maintenance/attachLatest.php Looking for pages with page_latest set to 0... Done! Processed 13 pages. This was a dry run; rerun with --fix to update page_latest.
Fixing the pages
Terminal
$ php maintenance/attachLatest.php --fix Looking for pages with page_latest set to 0... Done! Processed 13 pages.