Hi, thank you for an awesome extension, I love it! :) One question though: when I create a property "image" with data type "Commons media file", I can only select files from Commons in the statements section. I'd like to use images from my own pool exclusively and I'd like to rename "Commons media file" to "Pool media file". How can I achieve this?
My Wikibase.example.php looks like this:
# $wgWBRepoSettings['specialSiteLinkGroups'] = array( 'commons', 'wikidata' ); $wgWBRepoSettings['specialSiteLinkGroups'] = array( 'pool', 'data' );
The "sites" table on the datawiki database has this row (among others):
| 123 | poolwiki | mediawiki | pool | local | en | https | moc.niamod.loop. | a:1:{s:5:"paths";a:2:{s:9:"file_path";s:28:"https://pool.domain.com/w/$1";s:9:"page_path";s:31:"https://pool.domain.com/wiki/$1";}} | 0 | a:0:{} |
And the "sites" table of the poolwiki database has this entry (among others):
| 124 | datawiki | mediawiki | data| local | en | https | moc.niamod.atad. | a:1:{s:5:"paths";a:2:{s:9:"file_path";s:28:"https://data.domain.com/w/$1";s:9:"page_path";s:31:"https://data.domain.com/wiki/$1";}} | 0 | a:0:{} |
LocalSettings.php of datawiki has this line:
$wgWBRepoSettings['localClientDatabases'] = array( 'dewiki', 'enwiki', poolwiki' );
What am I missing here? Any help is more than welcome! Thanks and cheers!