Manual:populateFilearchiveSha1.php
Appearance
This feature was removed completely in version MediaWiki 1.43. |
| MediaWiki versions: | 1.21 – 1.43 |
| MediaWiki file: populateFilearchiveSha1.php | |
|---|---|
| Location: | maintenance/ |
| Source code: | master • 1.44.2 • 1.43.5 • 1.39.15 |
| Classes: | PopulateFilearchiveSha1 |
Details
[edit]populateFilearchiveSha1.php file is a maintenance script to populate the fa_sha1 field from fa_storage_key.
The fa_sha1 field in the filearchive database table is used to store sha1 hash of file content, encoded in base 36.
This field stores pure sha1 whereas fa_storage_key stores sha1 with extension of file.
This script runs by default when you run update.php.
Options/Arguments
[edit]This script does not take any options or arguments.
Usage
[edit]php maintenance/run.php populateFilearchiveSha1
Terminal
$ php maintenance/run.php populateFilearchiveSha1 Populating fa_sha1 field from fa_storage_key Done 2 files in 0.7 seconds
Whenever the script runs, it makes a note in the database and will not run again. If you want to run the script again, run the command with the --force option.
In MediaWiki version 1.39.15 and earlier, you must invoke maintenance scripts using
php maintenance/scriptName.php instead of php maintenance/run.php scriptName.