I'm trying to setup Echo within a wiki family. I'm almost done but I can't find detailed information about $wgMainStash
and $wgMainWANCache
and how to share them between the wikis.
What I have done at the moment:
1. In LocalSettings.php for each wiki I've added next lines:
$wgSharedDB = 'tCommons'; $wgSharedTables[] = 'ipblocks'; $wgSharedTables[] = 'user_groups'; $wgSharedTables[] = 'interwiki'; $wgSharedTables[] = 'user_properties'; ## Extension:Echo wfLoadExtension( 'Echo' ); $wgEchoSharedTrackingDB = 'tCommons'; $wgEchoUseJobQueue = true; $wgEchoCrossWikiNotifications = true; $wgEchoUseCrossWikiBetaFeature = true; $wgDefaultUserOptions['echo-cross-wiki-notifications'] = true;
2. In the terminal:
sudo mysql -u'root' -p tCommons < /var/www/mediawiki/extensions/Echo/db_patches/echo_unread_wikis.sql sudo php /var/www/mediawiki/maintenance/update.php --conf /var/www/each-wiki/LocalSettings.php
At this stage, I receive cross-wiki notifications, but they are empty - as it shown here.
Could someone help me, please?