Version release history of PhpTrackIT

PhpTrackIT version and development history, saved in an easy overviewed table:

Version history of the PhpTrackIT

Ver. date
Version


(App.Core)

Description

2020-03-31
Plugin

Updated the "Log Returning human UVV" plugin:


♦ Made a complete Refactoring of the code and introduced more methods / algorithms giving six different returning visitors analysis. Also added more analytic metrics. Makes it possible to benchmark and validate which method is best suited for this, which is the TriSense that makes a complex three-dimensional analysis.
Although more complex analysis is the code now much more simple, compact and efficient, and at the same time more easy to read what it does!
Whas a time consuming plugin to code / refactoring, due to very complex mathods of analysis.
2020-03-28
New Plugin

Created a new plugin module:


Timing for webpage Interactive at client.
Gives timing analytics for when the web page is first interactive at the client, from requested.
As two data tables sorted on Time Webpage Interactive and on Timestamp, and as analytic data as:
Percent of webpages Interactive timing < 3.0 second: 96.24 (%)
Percent of webpages Interactive timing < 2.0 second: 90.77 (%)
Max Interactive timing of webbpages for the period: 16113 (ms)
Min Interactive timing of webbpages for the period: 98 (ms)
Mean value of Interactive timing of webbpages for the period: 992 (ms)
Median value of Interactive timing of webbpages for the period: 726 (ms)
The 95th percentile of Interactive timing of webbpages for the period: 2596 (ms)
Standard deviation of Interactive timing of webbpages for the period: 987 (ms)

2020-03-17
Plugin

Updated the Summary, Visit statistics plugin:


♦ Updated with a new data table: "Analytics human visitors: Navigator Objects & Connection, Latest 30 days".
Data Table
Table: Analytics human visitors: Navigator Objects & Connection
2020-03-12
0.9.4.2beta

Updated core function (experimental):


♦ Refined the UVV (Unique Virtual Visitor) algoritm for slightly higher accuracy.
♦ Introduced performance and timing analytic data logging, for data of the loading progress of the web page.
♦ Introduced navigator connection data logging, for client side downlink speed, downlink type, deviceMemory and maxTouchPoints.
♦ Introduced navigator object for logging of No. of logical processors, DoNotTrack, JAVA enabled & Cookies enabled.
- All this data is usefull as input for the future development of the web site.
2020-03-09
0.9.4.1beta

Updated the PhpTrackIT presentation software:


♦ Minor updates for logging of timing analytic statistics.
2019-07-15
Config

Updated the Config file:


♦ Changed the default SessionTimeWindow from 3hr to 30min, which is more of a de facto standard used among web analytics software.
Gives a more comparable web analytic statistics.

Based on this today 30day statistics for 3hr SessionTimeWindow:
Human repeated visits statistics:
- Webpageviews with repeated visits: 579 (total human pageviews 3606)
- Sum, collected repeated visits: 864 (saved redundant log posts)
- Webpageviews with repeated visits within 30min: 498
- Sum, collected repeated visits within 30min: 645 (saved redundant log posts)
- Max repeated visits: 18 (repeated visits)
- Avarage repeated visits: 2.5 (repeated visits)
- Max repeated time: 10772 (sec), 02:59:32
- Avarage repeated time: 1000 (sec), 00:16:40
Robot repeated visits statistics:
- Webpageviews with repeated visits: 135 (total robot pageviews 3323)
- Sum, collected repeated visits: 188 (saved redundant log posts)
- Webpageviews with repeated visits within 30min: 69
- Sum, collected repeated visits within 30min: 43 (saved redundant log posts)
- Max repeated visits: 12 (repeated visits)
- Avarage repeated visits: 2.4 (repeated visits)
- Max repeated time: 10549 (sec), 02:55:49
- Avarage repeated time: 3100 (sec), 00:51:40
Human visitors log module statistics:
∑JSimgE / (∑JSimgE + ∑JSimg) x 100 = 4.08%
∑Missed axm || jim of total = 0.25%
∑AJAX (Beacon not supported) of total = 3.10%
Visit Statistics
2019-05-28
0.8.4.1beta

Updated core function:


♦ Have delayed the tracking-img load even further to until the load event plus a time delay of 1.5 times the onload-time (loadEventEnd) for the web page:
Uses the Event:
document.addEventListener( ´load´, (event) => {...} );
And the setTimeout() Method.
This even further delay makes it possible to track both Navigation Timings and "Page Fully loaded" via Resource Timing, and some statistics about the caching of the web page and all the resources. When this timing tracking is implemented, I will evaluate the needed time delay to track 95% of the "Page Fully loaded" events. The remaining 5% will be tracked via the unload-event, which also will track the first client interaction, client actions, client time on the web page and the maximum scroll position of the web page.
Meanwhile I get statistics of how this even further delay interacts with the client use of the web pages.
This still prioritizes the visitor´s experience of the Web page and secure correct browser window viewport size and outside size analytic metrics to be saved, by letting the <meta name="viewport" content="width=device-width, height=device-height" /> have time to resolve to correct values.
2019-07-03: Only 3.5% av all visitors cancels the web page visit before this further delayed tracking-img event is triggered (during the latest 30 days), so it looks fine. And many of these cancels are due to operational problems my web hosting has had during these 30 days. Statistics after more than 30 days of implementation.
2019-07-12: Have optimized some JavaScript programming details further in this code part for better browser compatibility.
2019-04-27
0.8.4.0beta

Updated core function:


♦ Have delayed the tracking-img load further to until the load event:
Uses the Event:
document.addEventListener( ´load´, (event) => {...} );
This prioritizes the visitor´s experience of the Web page and secure correct browser window viewport size and outside size analytic metrics to be saved, by letting the <meta name="viewport" content="width=device-width, height=device-height" /> have time to resolve to correct values.
To not risk the late img-load to save its analytic metrics, if the client at slow connections unload the webpage before fully loaded, is also a second img-load method introduced by document.addEventListener( 'visibilitychange', (event) => {if( document.visibilityState === ´hidden´ || document.visibilityState === ´unloaded´) {...}} );, active if the first img-load is not already executed.
It´s a rare case but it have already shown up such analytic metrics from this second method 8 times (0.4% of page visits). (phptrackitlogLib)
This works extremly stable even at harsh situations (which 3 days of temporary problem at my web hosting shows) and improves the logging of analytic metrics.
The navigator.sendBeacon() method is still the main client side tracking event.
These are used as two redundant methods for the client side analytic metrics.
Made the asynchronous AJAX code up to date, which is used as a redundant method when sendBeacon is not supported.

In the future PhpTrackIT there should be (1. & 2. is the above):
1. Save its analytic metrics within the <head> section. √
2. Save its analytic metrics after web page is loaded. √
3. Save its analytic metrics at the unload of the web page.
To be able to catch analytic metrics that are available in the three different phases of the lifetime of the web page, and at the same time lower the visible load-time.
2019-03-31
Plugin

Updated the About plugin:


♦ Updated some of the text describing the PhpTrackIT, with a little more focus on the privacy aspect.
2019-03-04
0.8.3.9beta

Updated core files:


♦ Have secured some files against direct access:
The files handling the tracking logging shall only be accessed from the tracking script embedded in the web page code. They have now got a protection against direct access, which displays an information note on the screen and gives the 403 Forbidden HTTP response status code. Nothing happened before and the most critical file was already well protected by cryptographical methods. But now are all files well protected and behaves well with a little info note and error codes.
(phptrackitasyncprocess || phptrackitlogLib || phptrackitlogprocessAJAX || phptrackitlogprocessJSimg)
2019-02-21
0.8.3.9beta

Updated core function:


♦ Have delayed the tracking-img load to after the DOM Loaded & Parsed event:
Uses the Event:
document.addEventListener( ´DOMContentLoaded´, (event) => {...} );
This prioritizes the visitor´s experience of the Web page, but still makes the tracking as soon as possible befor the load event. (phptrackitlogLib)
The navigator.sendBeacon() method is still the main client side tracking event.
These are used as two redundant methods for the client side analytic metrics.
2018-11-28
Plugin

Updated two plugins:


♦ Have added Screen Aspect Ratio:
To the plugins Client_Screen_Resolution and Client_Scrn_Browser_Stat.
The ScreenAspectRatio() function is placed in the common Functions file.
2018-11-14
0.8.3.8beta

Updated core function:


♦ Updated the functioncore file.
The visit logging was blocked when SSL (https://) was introduced on the website 2018-10-29. Logging is fully functional again today.

The AsynchronousBackgroundProcess uses the asynchronous php function stream_socket_client() for http:// connections:
$fp = stream_socket_client ("tcp://domain.se:80", $errno, $errstr, ini_get ("default_socket_timeout"), STREAM_CLIENT_ASYNC_CONNECT | STREAM_CLIENT_CONNECT);

For SSL / https:// is now this used:
$fp = stream_socket_client ("ssl://domain.se:443", $errno, $errstr, ini_get ("default_socket_timeout"), STREAM_CLIENT_ASYNC_CONNECT | STREAM_CLIENT_CONNECT);

It was both the protocol that should change from tcp:// to ssl:// and the port from 80 to 443 for the SSL socket connections.

I also created a slightly more efficient queuing method for the data file write in the functioncore file, for the "write raw data to file to verify this function is active", which shall be implemented to the AsynchronousBackgroundProcess later on.
2018-11-07
0.9.3.7beta

Updated the PhpTrackIT presentation software:


♦ Have set all the security headers for the website:
Referrer-Policy, X-XSS-Protection, X-Frame-Options, X-Content-Type-Options, Content-Security-Policy, Feature-Policy & Strict-Transport-Security.
And verified them at Security Headers:
Security Report Summary: Class A security
2018-08-03
0.8.3.7beta

Updated core function:


♦ Updated the phptrackitasyncprocess & PhpTrackIT.
Introduced logging of max statistics of visit sessions, for 30 day, 7 day and 24 hour statistics.
Fixed that all error messages, like 404 and 403 error code, also sends the corresponding http_response_code() to the client. Now even for a faulty query string for the plugin, with not useful parameters.
2018-07-16
0.8.3.6beta

Updated core function:


♦ Updated the phptrackitlogLib.
Changed to the navigator.sendBeacon() method for the asynchronous transfer of the small amount of client analytics data over HTTP to the web server. Used asynchronous AJAX before.
Keeps asynchronous AJAX as a fallback method for cases where the webbrowser don´t support sendBeacon or the browser couldn´t make a sendBeacon transfer and return false.
SendBeacon works smoother and surprisingly a little faster than the before AJAX calls, probably due to less JavaScript code involved. And the sendBeacon interferes much less with the loading of the web page, thats what it´s designed fore. Which shows up in the statistics!
After 7 months of use: The SendBeacon() is also an asynchronous tracking method that is a bit more reliable than asynchronous AJAX, which is another advantage.
2018-06-19
0.8.3.5beta

Updated core function:


♦ Updated the phptrackitasyncprocess.
Made a secure_fwrite function replacing all fwrite, and added the global FILETIME constant for the time to try to access the data files, and increased it to 15s (5s).
Also introduced the ignore_user_abort(true) on all php-files involved in background data logging.
About secure fwrite: User Contributed Note 9 on fwrite().
Still loosing some not logged data when viewing large photos in a fast sequence, 25% missed for the latest 24hr before this change 13:05 and in average 5% for the latest 30 days (before introducing the ignore_user_abort(true)!). Seems to have solve this now when not extreme fast viewing of photos, but have to see some more time first!

2018-07-11. Now the missed logged viewed photos data seems to have stabilized around 1% (2 of 164 viewed photos latest 30 days). It´s much better but not fully OK. I have some ideas to look into the AJAX log process to see if I have to add background processing to it also. It´s hard to debugg time critical background processing but shall test to temporarly block the processing of th 24hr log file to catch all the raw logged data in it (on my off-line development server). At provocative extremely fast viewing of photos is still the missed logged viewed photos data much higher, which I aim to solve fully in the future.
This is a good performance test of the PhpTrackIT visit data logger! Normally there is no way of detecting missed logged visits data, but at viewing the full size photos there is included a counter of consecutive viewed photos, which indirectly indicates missed logged data that is used in the detection here.
2018-03-30
0.8.3.4beta

Updated core function:


♦ Updated the phptrackitasyncprocess.
Removed the influence on timing of the getrusage(), which gives a not suitable timing that sometimes blocked the rewrite of the log files due to too long script execusion time, and thus blocked the log file processing.
Introduced the $_SERVER["REQUEST_TIME_FLOAT"] instead, to capture the full real time used by script execution, to look if there is enough execution time left to safetly rewrite the log files.
Now only rewrites the 30d logfile when processing has changed it.
2018-03-28
Plugin

Updated the ServerTime_PageScript_async plugin:


♦ New: Percent of webpages used server execution time < 1.0s.
♦ Fixed a bug of how many webpages was time analyzed.
2018-03-27
0.8.3.3beta

Updated core function:


♦ Updated the phptrackitlogCookie.
Introduced a PhpTrackIT session cookie to handle logging of visit sessions. Makes the statistic analysis simpler and faster.
Secured the cookies with the httponly = true.
2018-02-22
0.8.3.2beta

Updated the PhpTrackIT presentation software:


♦ Updated the PhpTrackIT.php.
Introduced the 404 Not Found error code when not found a requested Plugin module, and updated the error message with this error code text. Search engine robots will thus be aware of deleted or changed plugin modules. And hackish type visits will be aware of not found their malicious plugin module requests.
Secured the phpinfo from be viewed without login.
2018-02-21
0.7.3.2beta

Updated core function:


♦ Updated the phptrackitlogLib.
Introduced the 404 Not Found error code when detecting a Hackish style access attempt in the software firewall. Thus will these visitors know they did´t found any web page via their often malicious query strings or other attack vectors.
2018-02-10
0.7.3.1beta

Updated core function:


♦ Updated the functioncore & phptrackitlogLib.
Some more Referer and Requested URL footprint as HackishStyle.
Has limited the length of the Referer (300 char) and the Requested URL (200 char), and also restrained the length for some hackish spamming content for them. Thus filtering unneeded hackish spam data, which takes to much log file space to save.
Removed Referar as, to save space in log files:
# HTTP_X_FORWARDED_FOR, HTTP_LOCAL_ADDR, HTTP_REMOTE_ADDR
2018-02-10
New Plugin

Created a new plugin module:


Statistics_Requested_URL_Referer_Length.
Gives statistics of the length of the logged Referers and Requested URLs, in data and diagram of its distribution.
Example of data for one site:
Lenght Requested URL, Max: 1115 || Min: 1 || Mean: 42.2 || Median: 32
Lenght Referer, Max: 890 || Min: 12 || Mean: 52.8 || Median: 52
2018-01-09
Plugin

Updated the About plugin:


♦ Updated some outdated links.
2013-02-10
0.7.3.0beta

A completely new logging engine (logging kernel):


The logging engine is completely rewritten from ground with new functionalities. With this new version is all data logging done as parallel asynchronous background processes, based on the php stream_socket_client() function. Thereby is the server time of the real time visit data logging, delaying the display of the web page, as minmized as possible! This gives fast loading web pages!
And fast loading web pages are very important for SEO!

The structure of the code is also highly improved, where each data logging part now is made by its own separate functional block, thus making future adding of new data logging blocks and functionalities much easier, as well as improving existing ones.

All the functional processing of the collected visit data have been made much more streamlined in the new data logging core code by devided into clean functional modules, which makes all the data logging more server time efficient in total.

A lot of efforts have been made in the new data logging core, to reduce all readings and writings from / to the hard disk data files on the server, which lowers the load on the server.

Efforts have also been made to further minimize the risk of losing any even small portion of the collected visit data during the data logging process into the data files, which slightly increases the accuracy of the web analytic visitor statistics.

This new data logging process, done as all pure php parallel asynchronous background processes, also open up for making the post processing and precompilation of the visit data in connection with each visit data logging, whether it be a human or robot visits.
Earlier the data processing was performed only after each human visits (due to the asynchronous Ajax / JavaScript was not executed by the most robot visitors), which could lead to a lot of visits data was queued up waiting for processing during periods of only robot visits. This could lead to such a large amount of data queued up, that those maximum server time for a php file´s execution was exceeded and there were problems in the data logging processing.
This is all solved now by this new version of the data logging kernel, doing all the data processing asynchronous in the background directly via the php stream_socket_client() function!

The new code is additional enhanced by Refactoring in several steps to secure a good quality of the code and an easy future maintainability.

This new data logging kernel has been run in parallel with the old one (version 0.6.2.2beta) on the same website during several months as a benchmark test.
The results are very clear that the new data logging kernel is significantly more economical on server time, distinguishes human visits from robots a little more efficiently, processes the robot visits data more effectively by removing redundant robot visit data, which reduces the number of logged robot data entries significantly (= more true robot visit web analytic statistics), and in total collects a little more visit data details.

It was a long demanding work to do, with long periods of pauses due to my lack of stamina but also for thinking and letting thoughts mature, but finally it´s here!

Reference: Article about background processing in php.
2012-07-10
0.7.2.2beta

Implemented Responsive Web Design (RWD):


Updated the PhpTrackIT presentation software to adapt to the resolution of the browser window, to display well all the way down to small screens of smart mobile phones / smartphones.

The Responsive Web Design (RWD) of the PhpTrackIT uses a combined fluid liquid layout, adaptive design and functional design, with six adaptive layout steps for the width and three for the height of the browser window.
The responive web design is by that both horizontally responsive and vertically responsive.

The Responsive Web Design (RWD) is implemented by the use of CSS media-queries and JavaScript, redundant to each other to give a wide browser support. The JavaScript also don´t load resources not used in the layout steps in smaller browser windows, to save both bandwith and device memory.
2011-06-15
0.6.2.2beta

Updated logging engine (logging kernel):


Added logging of running 30 day value of returning UVV visits / UVV visit sessions, UVV Pageviews, Unique UVV visitors, Visit sessions and Pageviews. (Works OK from 2011-06-16, 12:00.)
Now displays the number of returning visits of the UVV as a running value of the latest 30 days.
2011-06-10
0.6.2.1beta

Updated the PhpTrackIT presentation software:


Changed the layout kernel of PhpTrackIT program to work OK independent of client screen resolution i.e. now displays nice even on mobile units! Tested on my Nokia 5230 Symbian with 640x360 screen resolution and it works OK. Has also introduced a button to Hide / Show the left vertical menu row, to display better on low screen resolution devices as mobiles and tablets.

Allthough the large impact on the layout independency of the screen resolution, was it fairly small changes to code for me because of the structured and CSS based layout kernel.
2011-03-03
New Plugin

One new plugin module:


♦ Graph Searched Strings - This plugin displays statistics about the Search Strings used in Search Engines giving visit hits, found in the referrer. The Search Engines used for each Search String are listed together with its data.
2011-02-13
0.5.2.1beta

Updated the PhpTrackIT presentation software:


Introduces the new inovative and intuitive ClickTrackIT data filter method, which makes it easy to explore almost infinite aspects of your visitors tracks on the website, only limited by the amount of logged data! A bit of a new paradigm in interactive data filtering.
Filtering parameters are added step by step by clicks on icons or text buttons, displayed in connection with each displayed data field.

ClickTrackIT gives a fast intuitive learning curve in filtering data.
The ClickTrackIT GUI makes it very easy for third party developers to include this intuitive filtering in their plugin modules, including the support for own labeled ClickTrackIT buttons.
The implementation of the ClickTrackIT function was made by surprisingly few rows of code, all in line with the mindset of the PhpTrackIT´s development by the:
Keywords: Lean, Clean, Simple, Inuitive, Smart and Proactive.
2011-02-01
New Plugin

One new plugin module:


♦ Graph - Search Engines used - This plugin displays all Search Engines, the corresponding web sites and frequency of visits fed by them. Includes live links to the found Search Engines.
2011-01-22
0.4.2.2beta

Updated logging engine (logging kernel):


Some enhancement in the fingerprint method of classifying VisitorType into Human or Robot ones.
2011-01-09
0.4.2.1beta

Updated the PhpTrackIT presentation software:


Implemented the functions for the ability to be able to turn over the pages, when log posts numbers to display are more than the value for displayed log posts per pageview.
2011-01-08
New Plugin

One new plugin module:


♦ Map - GeoIP Human World - This plugin plots the geolocated positions of human visitors on a World Map.
2011-01-02
New Plugin

One new plugin module:


♦ Log Returning human UVV - This plugin shows the returning human visitors and the number of webpage visits by them.
2010-12-28
0.3.2.1beta

Updated logging engine (logging kernel):


Included logging of client browser window size and via cookie of returning visits of website (time limit defining a returning visit: sessiontimewindow, default as 3hr).
Some enhancement in searching out log post data for visualizing different types of visits.
2010-12-07
New Plugin

One new plugin module:


♦ Server Time of Page Script - This plugin shows the measured real time the php-script of a webpage takes to execute on the server side, at each visit to the website.
I.e the respond time from the webpage request came to the server until the server has executed all php-script for the webpage and delivers the html code of the webpage.
2010-05-06
New Plugin

One new plugin module:


♦ Summary - a system plugin, only showing up in the system menu.
And by that the PhpTrackIT core program was updated with a system menu item to this new Summary plugin, to support it.
2010-03-23
0.2.2.0beta

New logging engine (logging kernel):


A brand new complete rewritten logging engine with an enhanced, more complex and more powerfull ability to distinguish in analyse and presentation between human visits and robot visits.
The new logging engine also logs more aspects and data about each visits, like time used for logging (primary and secondary logging), ping time, the URL hash (bookmark) and what JavaScript / CSS are loaded like AJAX, JS preload of image, external JS file and CSS.
The GeoIP Countries, Regions and Cities of the visits are now evaluated at the logging time and stored in the data file post, thus making later analyses and presentation faster.

The new logging engine is more optimized, has a clearer internal function and by that runs leaner using less server time.
The new logging engine has a more modern approach using AJAX and other JavaScript calls as key components in the logging.
The new code is also enhanced by Refactoring in several steps to secure a good quality of the code and easy future maintainability.
The PhpTrackIT presentation software is also slightly modified to adapt to the new data file format.
During a month test time in parallel operation with the old one, gave comparisons about 5% more logged human visits for the new logging engine, some earlier visits faulty logged as human ones now logged as robot visits and vice versa, along with slightly more over all logged visits.

This new logging engine development was more work demanded than foreseen, due to the somewhat fuzzy behaviour of the Internet, demanding a lot of filtering and analyses to avoid faulty redundant data posts and to more accurate distinguish the human visits from the robot ones.
2010-01-21
New Plugin

One new plugin module:


♦ VersionHistory - a system plugin i.e. not showing up in menu.
And by that the plugin "About" was updated with a link to this new VersionHistory plugin and the PhpTrackIT for supporting this new system plugin.
2009-12-05
New Plugins

Four new plugin modules:


♦ Graph - GeoIP Human Countries
♦ Graph - GeoIP Human Regions
♦ Graph - GeoIP Human Cities
♦ Graph - GeoIP Robot Countries
2009-04-18
0.1.1.1beta

The PhpTrackIT takes over all logging on website!


The PhpTrackIT presentation software and logging engine are now that refined, making them capable of taking over all visit logging and statistic presentation for my website.
2009-04-05
0.1.1.1beta

The PhpTrackIT presentation software goes live!


At last the PhpTrackIT presentation software is ready to go live on my webpages and be official available for my visitors.
The logging database has data saved since 2008-01-02 by the logging engine, hence is there some visit statistics to display.
2009-02-17
0.1.1.1beta

An update of the logging engine.


Updated due to a programming fault / bug, which made the 30day logging data file to drop all its content every 3 to 6 month.
It is very hard to verify that seldom problem, but hopfully is it solved by now.
Introduses a classifying "VisitType" in each visit data post, which makes it easer, faster and more processor lean to present different statistic aspects of all visits.
Visits are now classified into: "Human", "Robot", "ReferSpam" and "HackishStyle".
2008-01-02
0.1.1.0beta

The first version "official" used on my websites.


Just now is only the logging engine and the small visit statistic summary pane at the bottom of the webpages in use.
2005
0.1.0.1

The very first beginning of coding the PhpTrackIT.


I have used an other free Php visit counter script installed at my webpages 2005-01-24 and during the following monthes enhanced and modified slitly by me. This was the very best free one I could find on the Internet, after a lot of investigation and searching. And it was very good, but didn´t nevertheless perform the task fully to my satisfaction.
From the free Php visit counter experiences was som new ideas and wishes borned and I begun slowly sketching on a wish list and mind map for a new visit logging software.
The free one consumed a lot of processor power, didn´t distinguish in analyse and presentation between human visitors and indexing robots and it was so focused on the individual visits, where I was more interested in trends and aspects of numerous visits. Neither could it track the screen resolution of the client (visitor) or the hash (bookmark) part of the URL.

In the PhpTrackIT version number are the two first numbers the version of the PhpTrackIT presentation software and the last two numbers the version of the logging engine (logging kernel) working unvisible in the background, logging all tracks of visitors.

PhpTrackIT Core Plugin: VersionHistory, Version 1.0, 2010
Copyright © 2010 Bosse at AutonomTech.se.

Visa BesöksStatistik:
BesöksStatistik

Loggat av: PhpTrackIT 0.9.4.1beta
(max 1 besök loggas per 0.5 hr per unik besökare¹ och webbsida)

Hela webbplatsen:
- Webbsidor¹ senaste 30 dygnen: 5754 av personer² & 3489 av robotar²
- Webbsidor¹ senaste 24hr: 137 av personer² & 186 av robotar²

- Unika besökare¹ senaste 24hr: 111 personer², 51 robotar²
- Webbsidor per unik besökare senaste 24hr: 1.2/person², 3.6/robot²

- Unika besökare¹ senaste 30 dygnen: 3777 personer², 1081 robotar²
- Webbsidor per unik besökare senaste 30 dygnen: 1.5/person², 3.2/robot²

- Snitt senaste 30 dygnen (webbsidor/24hr): 192 av personer² & 116 av robotar²
- Snitt senaste 30 dygnen (unika besökare/24hr): 125.9 personer² & 36.0 robotar²
- Robotar utgör 37.7% av besöken senaste 30 dygnen

- Max webbsidor/24hr: 478 av personer, 2020-07-28
- Max unika besökare/24hr: 311 personer, 2021-05-27
- Max webbsidor/30dygn: 9523 av personer, 2020-08-03
- Max unika besökare/30dygn: 4804 personer, 2020-08-03
  Max statistik loggad sedan: 2017-12-31

- Server time uses for PhpTrackIT logging:
- Primary log: 27.6 ms (log time part affecting webpage load time)
- Secondary log: XXX ms (asynchronous log time not affecting webpage load time)
- Ping time (Server-Browser-Server Internet round-trip time, via Php/Ajax): XXX ms
- ServertimeThis: 0.3 (ms), inclusive Includetime: 0.1 (ms)

¹ Enligt en anonym unik virtuell besökare algoritm (UVV, Unique Virtual Visitor).
² Enligt en robot-igenkännande algorithm som effektivt skiljer på robot- och person-besök.

 

Contact about the viewed logged statistic tracks, see at site: https://frittliv.autonomtech.se

PhpTrackIT, version: 0.9.4.1beta  
Copyright © 2005-2023 Bosse at www.autonomtech.se
 
 
 
PhpTrackIT Logo
Plugin:
VersionHistory
Home
 Webpage, Server time: 29 ms, of that Plugin: 0 ms ||