Handbuch:copyFileBackend.php
Appearance
MediaWiki-Datei: copyFileBackend.php | |
---|---|
Speicherort: | maintenance/ |
Quellcode: | master • 1.42.3 • 1.41.4 • 1.39.10 |
Klassen: | CopyFileBackend |
Details
copyFileBackend.php file is a maintenance script to copy all files in some containers of one backend to another.
Optionen
Option | Beschreibung | Notwendig |
---|---|---|
--src | Backend mit den Quelldateien | Notwendig |
--dst | Backend, wo die Dateien kopiert werden sollen | Notwendig |
--containers | Pipe separated list of containers | Notwendig |
--subdir | Only do items in this child directory | Optional |
--ratefile | File to check periodically for batch size | Optional |
--prestat | Stat the destination files first (try to use listings) | Optional |
--skiphash | Skip SHA-1 sync checks for files | Optional |
--missingonly | Only copy files missing from destination listing | Optional |
--syncviadelete | Delete destination files missing from source listing | Optional |
--utf8only | Skip source files that do not have valid UTF-8 names | Optional |
Verwendung
php maintenance/copyFileBackend.php --src sourceBackend --dst destinationBackend --containers containers [ --subdir| --ratefile| --prestat| --skiphash| --missingonly| --syncviadelete| --utf8only ]
Terminal
$ php maintenance/copyFileBackend.php --src local-backend --dst AmazonS3 --containers local-public Doing container 'local-public'... Copying file(s)... Already have thumb/8/8a/1631330937964.jpeg/1600px-1631330937964.jpeg. Already have thumb/8/8a/1631330937964.jpeg/800px-1631330937964.jpeg. Already have thumb/8/8a/1631330937964.jpeg/1200px-1631330937964.jpeg. Already have thumb/8/8a/1631330937964.jpeg/120px-1631330937964.jpeg. Already have thumb/5/53/Example_Main_Page.png/114px-Example_Main_Page.png. Already have 8/8a/1631330937964.jpeg. Already have README. Already have d/d4/Logo.jpg. Already have e/21/1631330937964.jpeg. Already have 5/53/Asdeer.jpeg. Already have 5/53/Example_Main_Page.png. Already have .htaccess. Copied 12 file(s). Finished container 'local-public'. Done.
To give more than one container, give them as separated by pipe (|) like local-public|local-deleted
Häufige Fehler
- No backend defined with the name '$name'.
This error occurs when the value of --src or --dst does not exist in Handbuch:$wgFileBackends . Check your --src or --dst parameter.