Index: trunk/extensions/ArchiveLinks/INSTALL |
— | — | @@ -0,0 +1,22 @@ |
| 2 | +To install add the following to LocalSettings.php
|
| 3 | +
|
| 4 | + require_once( './extensions/ArchiveLinks/ArchiveLinks.php' );
|
| 5 | +
|
| 6 | +Configuration settings are in the array $wgArchiveLinksConfig, which is currently defined in ArchiveLinks.php for testing purposes.
|
| 7 | +
|
| 8 | + $wgArchiveLinksConfig = array (
|
| 9 | + 'archive_service' => 'wikiwix',
|
| 10 | + 'use_multiple_archives' => false,
|
| 11 | + 'run_spider_in_loop' => false,
|
| 12 | + );
|
| 13 | +
|
| 14 | +archive_service has the following options:
|
| 15 | +
|
| 16 | +*wikiwix (this is wikiwix.org's archive)
|
| 17 | +*internet_archive (this is archive.org's wayback machine)
|
| 18 | +*webcitation (this is webcitation.org's service)
|
| 19 | +*local (this is the local filestore, currently not working)
|
| 20 | +
|
| 21 | +use_multiple_archives must be false for the time being.
|
| 22 | +
|
| 23 | +run_spider_in_loop should be false for the time being.
|