Rozšíření:HitCounters

This page is a translated version of the page Extension:HitCounters and the translation is 32% complete.
Outdated translations are marked like this.
Základní informace k tomuto rozšíření MediaWiki
HitCounters
Stav rozšíření: stabilní
Zavádění Databáze , Extrakce dat, MyWiki
Popis Poskytuje funkci zobrazení stránek
Napsal(i) Mark A. Hershberger (MarkAHershbergerdiskuse)
Nejnovější verze 0.4
MediaWiki >= 1.36.0
PHP 7.3.19+
Změny v databázi Ano
Composer mediawiki/hit-counters
Tabulky hit_counter
hit_counter_extension
Licence GNU General Public License 3.0 nebo pozdější
Zdrojový kód
  • $wgDisableCounters
  • $wgHitcounterUpdateFreq
  • $wgEnableAddPageId
  • $wgEnableAddTextLength
hitcounter-exempt
Čtvrtletní stahování 141 (Ranked 44th)
Přeložte rozšíření HitCounters, používá-li lokalizaci z translatewiki.net
Vagrant role hitcounters
Problémy Otevřené úkoly · Nahlásit chybu

The HitCounters extension displays the view count in the page footer and the most viewed pages on a special page called PopularPages. The extension provides page views statistics that were removed in MediaWiki 1.25 .

Obecné informace

Benefits

This extension provides feedback in the form of audience measurement to editors. Knowing the rough size of one's audience as an editor allows editors to identify and improve popular articles. HitCounters' special page PopularPages also allows editors to focus on improving those articles with the highest traffic and helps readers discover a project's most curated content.

HitCounters extension enables determining the wikiFactor, a rough measure of a wiki website's popularity.

HitCounters extension is minimally intrusive concerning data security and privacy concerns. The extension handles metrics on the server side, so aggregated data stays within the site's security boundary. The extension does not inject JavaScript to be executed by the client and does not ask a client to download additional un-audited code from a third party, like GoogleAnalyticsMetrics .

The extension does not track users who visit a page. As such, there's no need for special handling of "Do Not Track" browser requests or Global Privacy Control settings. The extension also does not use third-party services like the GoogleAnalyticsMetrics extension.

The extension has no dependencies that can cause conflicts. Other extensions, like GoogleAnalyticsMetrics, can cause problems during a Composer update. Also see Phabricator P6481.

Rozdíly od základní implementace MediaWiki

Before MediaWiki 1.25, the page views counting functionality was in core MediaWiki. This extension is based on that same code but was deliberately made lighter to speed up processing time. Many lines of superfluous code were removed. Also, the old MediaWiki core code performed numerous database queries on every page hit; these have all been removed. This change may lead to some inaccuracies in the data.

The core differences that wiki administrators need to know are:

  • The hit counts are stored in the cache.
  • The visible hit count at the bottom of each page is updated only once daily. (Pages with a hit count of less than 100 are updated once per minute.)
  • That hit is ignored if you refresh your browser on a wiki page.

Co se počítá jako zobrazení

According to tests conducted by several MediaWiki operators, a view is counted if a page is accessed (action=view), as well as action=render and when accessing a page revision.

A view is not counted with the other actions, such as action=raw, action=edit, and action=info.

Migration

If you are migrating from a version of MediaWiki 1.25 and earlier to a newer version, you must ensure to follow the advice and documentation outlined in this version of the documentation.

Instalace

  • Stáhněte soubor/y a vložte je do adresáře pojmenovaného HitCounters ve vaší složce extensions/.
    Vývojáři a přispěvatelé kódu by si místo toho měli nainstalovat rozšíření from Git pomocí:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/HitCounters
  • Na konec vašeho souboru LocalSettings.php přidejte následující kód:
    wfLoadExtension( 'HitCounters' );
    
  • Spusťte aktualizační skript, který automaticky provede všechny nezbytné databázové změny, jaké rozšíření vyžaduje.
  • Configure as required.
  •   Dokončeno – Přejděte na stránku Special:Version vaší wiki a zkontrolujte, zda bylo rozšíření úspěšně nainstalováno.


Instalace Vagrant:

  • Pokud používáte Vagrant , instalujte s těmito parametry vagrant roles enable hitcounters --provision

  Poznámka:

Konfigurace

  • $wgDisableCounters
    When set to true, it disables the notice in the pages footer saying "Stránka byla zobrazena 256krát." as well as the special page "PopularPages". The default value is false.
  • $wgHitcounterUpdateFreq
    Sets how often page counters should be updated. The default value is 1.
  • $wgGroupPermissions['sysop']['hitcounter-exempt'] = true;
    Exclude user group page views from counting.
  • $wgEnableAddPageId
    When set to true, it adds the PageId to the special page "PopularPages". The default value is false.
  • $wgEnableAddTextLength
    When set to true, it adds the TextLength to the special page "PopularPages". The default value is false.

Fork

There is a fork of this extension that offers custom settings to the user:

See also