Ga naar hoofdinhoud

WordPress Thing bestandsdownloadmanagerstatistieken

Een dashboard voor bestandsdownloadstatistieken is beschikbaar om de activiteiten van WP File Download te beheren. Naast de Google Analytics gebeurtenis-tracker krijg je ook een tool om de statistieken te exporteren naar een .csv-bestand. Je kunt ook de gedownloade bestanden bijhouden per WordPress Thing gebruikersaccount. Voor meer functies, ga terug naar de hoofdpluginpagina >

Volg WordPress Thing bestandsdownload op categorie of bestanden

Volg WordPress Thing bestandsdownload op categorie of bestanden

In het statistieken-dashboard kun je downloadacties op je website filteren op categorieën of bestanden per periode. Je kunt filteren op: datumbereik, categorie, enkele bestandsselectie en bestands-eCommerce bestellingen (als je WooCommerce gebruikt)

Volg bestandsdownload per WordPress Thing gebruiker

Om deze optie op het downloadstatistiek-dashboard te hebben, moet u de “Track user download”-optie inschakelen in de configuratie. Vervolgens kunt u de downloadstatistiek filteren op gebruiker, om te weten wie wat heeft gedownload.

Volg bestandsdownload per WordPress Thing gebruiker
Voeg snel een Google event download tracker toe

Voeg snel een Google event download tracker toe

Wanneer de Google Analytics download tracking optie is ingeschakeld, dan kun je de download‑gebeurtenissen volgen vanuit Google Analytics. Hierdoor krijg je voordelen van extra statistieken zoals pagin URL, acquisitie‑informatie, doelgroep‑informatie en gedrag

Opschonen van je statistiekendatabase opslag

Afhankelijk van het verkeer op je website en de downloadactiviteit, kan het volume aan statistieken na verloop van tijd enorm worden. Er's een optie beschikbaar om te selecteren hoe lang statistieken op je website worden bewaard, en het's automatisch opgeschoond.

Opschonen van je statistiekendatabase opslag

Download manager statistieken in video

WP File Download Plugin + Add-ons Prijzen

Word lid van onze 60,000+ leden & krijg ondersteuning en nieuwe versie‑updates


WP FILE DOWNLOAD PLUGIN
PLUGIN + 1 JAAR ONDERSTEUNING & UPDATE
$49
1
jaar
  • MEERDOMEIN / MEER SITE
  • 1 JAAR UPDATE
  • 1 JAAR ONDERSTEUNING
  • GEEN TERUGKERENDE BETALING
  • GEEN DATUMBEPERKING
  • SOCIAL LOCKER ADDON
  • WooCommerce-integratie
  • CLOUD ADDON
  • VERGELIJK ALLE FUNCTIES
199$
In plaats van 421$
HAAL DE
WORDPRESS THING BUNDEL

De bundel geeft toegang tot ALLE WordPress Thing plug-ins en kan worden gebruikt op onbeperkte websites. Bovendien heb je volledige toegang tot technische ondersteuning en updates voor elke plug-in gedurende het hele jaar. 
De tijd is nu! Verhoog je efficiëntie en krijg dat concurrentievoordeel. Probeer de bundel.

wordpress thing bundel

Recente getuigenissen & beoordelingen

Gemiddelde beoordeling voor WP File Download, JoomUnited is 4.9 Ster van 5 sterren - gebaseerd op 226 Beoordelingen

FAQ: WordPress Thing File Download Manager Statistieken

Welke statistieken-trackingfuncties biedt WP File Download?

WP File Download bevat een statistieken-dashboard dat bestandsdownloads bijhoudt per categorie, individuele bestanden en datumbereik, waardoor je de downloadactiviteit effectief kunt monitoren.

Kunnen downloads per WordPress Thing gebruikersaccount worden gevolgd?

Ja, het inschakelen van de “Track user download” optie maakt het mogelijk om downloadstatistieken per gebruiker te filteren, zodat je weet wie welke bestanden heeft gedownload.

Ondersteunt WP File Download Google Analytics-integratie?

Ja, het inschakelen van Google Analytics downloadtracking maakt het volgen van download‑gebeurtenissen mogelijk met extra analyses zoals pagin URLs, publieksinformatie en gebruikersgedrag.

Kan ik downloadstatistieken exporteren?

De plugin ondersteunt het exporteren van downloadstatistieken naar CSV‑bestanden, waardoor offline analyse en rapportage mogelijk zijn.

Hoe beheert de plugin de opslag van downloadstatistieken?

Om database‑opblazing te voorkomen, kunnen gebruikers instellen hoe lang downloadstatistieken op de website worden bewaard; oude gegevens worden automatisch opgeschoond.

Duplicate entry 'cc46bdf9d2ec3413199a4ce0a0d95031-nl' for key 'bk24_linguise_urls.hash_translation' (500 Whoops, looks like something went wrong.)

mysqli_sql_exception

HTTP 500 Whoops, looks like something went wrong.

Duplicate entry 'cc46bdf9d2ec3413199a4ce0a0d95031-nl' for key 'bk24_linguise_urls.hash_translation'

Exception

mysqli_sql_exception

Show exception properties
mysqli_sql_exception {#896
  #sqlstate: "23000"
}
  1. foreach ($urls as $translation => $source) {
  2. $elements[] = '("'.mysqli_real_escape_string($this->_database, Request::getInstance()->getLanguage()).'", "'.mysqli_real_escape_string($this->_database, $source).'", "'.mysqli_real_escape_string($this->_database, $translation).'", "'.md5($source).'", "'.md5($translation).'")';
  3. }
  4. $query .= implode(',', $elements);
  5. $query .= ' ON DUPLICATE KEY UPDATE source=VALUES(source), translation=VALUES(translation), hash_source=VALUES(hash_source), hash_translation=VALUES(hash_translation)';
  6. $this->_database->query($query);
  7. }
  8. public function removeUrls($urls)
  9. {
  10. $query = 'DELETE FROM '.mysqli_real_escape_string($this->_database, $this->_database_table_urls).' WHERE (hash_source) IN ';
  1. foreach ($urls as $translation => $source) {
  2. $elements[] = '("'.mysqli_real_escape_string($this->_database, Request::getInstance()->getLanguage()).'", "'.mysqli_real_escape_string($this->_database, $source).'", "'.mysqli_real_escape_string($this->_database, $translation).'", "'.md5($source).'", "'.md5($translation).'")';
  3. }
  4. $query .= implode(',', $elements);
  5. $query .= ' ON DUPLICATE KEY UPDATE source=VALUES(source), translation=VALUES(translation), hash_source=VALUES(hash_source), hash_translation=VALUES(hash_translation)';
  6. $this->_database->query($query);
  7. }
  8. public function removeUrls($urls)
  9. {
  10. $query = 'DELETE FROM '.mysqli_real_escape_string($this->_database, $this->_database_table_urls).' WHERE (hash_source) IN ';
  1. public function saveUrls($urls) {
  2. if (empty($urls)) {
  3. return;
  4. }
  5. return $this->_database->saveUrls($urls);
  6. }
  7. public function removeUrls($urls) {
  8. if (empty($urls)) {
  9. return;
  1. if (isset($result->url_translations)) {
  2. Defer::getInstance()->defer(function() use ($result) {
  3. $new_urls = $result->url_translations;
  4. $new_urls = get_object_vars($new_urls);
  5. Database::getInstance()->saveUrls((array)$new_urls);
  6. });
  7. }
  8. if (isset($result->urls_untranslated)) {
  9. Defer::getInstance()->defer(function() use ($result) {
Translation->Linguise\Script\Core\{closure}()
  1. }
  2. public function finalize()
  3. {
  4. foreach ($this->_actions as $action) {
  5. call_user_func($action['function'], $action['args']);
  6. }
  7. }
  8. }
  1. Helper::prepareDataDir();
  2. // Finalize defer actions on shutdown
  3. // @codeCoverageIgnoreStart
  4. register_shutdown_function(function() {
  5. Defer::getInstance()->finalize();
  6. Database::getInstance()->close();
  7. });
  8. // @codeCoverageIgnoreEnd
  9. }
Processor->Linguise\Script\Core\{closure}()

Stack Trace

mysqli_sql_exception
mysqli_sql_exception:
Duplicate entry 'cc46bdf9d2ec3413199a4ce0a0d95031-nl' for key 'bk24_linguise_urls.hash_translation'

  at /var/www/staging.joomunited.com/public_html/plugins/system/linguise/vendor/linguise/script-php/src/Databases/Mysql.php:170
  at mysqli->query()
     (/var/www/staging.joomunited.com/public_html/plugins/system/linguise/vendor/linguise/script-php/src/Databases/Mysql.php:170)
  at Linguise\Script\Core\Databases\Mysql->saveUrls()
     (/var/www/staging.joomunited.com/public_html/plugins/system/linguise/vendor/linguise/script-php/src/Database.php:232)
  at Linguise\Script\Core\Database->saveUrls()
     (/var/www/staging.joomunited.com/public_html/plugins/system/linguise/vendor/linguise/script-php/src/Translation.php:119)
  at Linguise\Script\Core\Translation->Linguise\Script\Core\{closure}()
  at call_user_func()
     (/var/www/staging.joomunited.com/public_html/plugins/system/linguise/vendor/linguise/script-php/src/Defer.php:42)
  at Linguise\Script\Core\Defer->finalize()
     (/var/www/staging.joomunited.com/public_html/plugins/system/linguise/vendor/linguise/script-php/src/Processor.php:31)
  at Linguise\Script\Core\Processor->Linguise\Script\Core\{closure}()