this can be done by adding a condition to Article.php:
includes / Article.php: 2861: function viewUpdates ():
if( !$wgDisableCounters && !$wgUser->isAllowed('bot') && $this->getID() ) {
add:
&& strpos($_SERVER['HTTP_USER_AGENT'], 'gsa-crawler') === false
where gsa-finder is part of gsa UA by default ...
Another way is to set up forms authentication in the GSA and log into wikimedia as a user in the bot group.
source
share