PageViews Counter

Description

There are deffinitely different methods for implementing pageview counters. Considering some external service such as Jetpack or Google Analytics is surely a good option, but there may be scenarios where you may want to handle this just by yourself and have everything more under control.

Since it’s very common to utilize some caching mechanism to improve your site’s performance, implementing counter directly on PHP level wouldn’t work reliably as counter would be barely incremeneted due to the caching. Better solution would be to use WordPress way of triggering AJAX requests and increment pageview counters anytime page is loaded, no matter if served from cache or not.

When we start to think on bigger scale though, we find tradional WP AJAX implementation quite resources heavy as well. This plugin uses slightly more complicated method to increase counters, but it’s very lightweight. In a nuthsell, counters are stored ‘outside’ of WordPress ecosystem into some fast storage such as Memcached or Redis. Then there’s implemented re-occuring cron task on WordPress level, which regularly checks for new counters and store its values as postmeta for each respective post.

Plugin utilizes PhpFastCache library which allows to store data into many types of back-ends. See their documentation for more details. This feature allows you to choose any back-end depending on your hosting provider.

This plugin comes preconfigured with file-based storage, which should work on any hosting environment, but for higher traffic sites you may want to consider in-memory storage such as MemcacheD.

Whole principle and idea is described in following article published on my blog.

Installation

  1. Upload the contents of this .zip file into ‘/wp-content/plugins/pageviews-counter’ on your WordPress installation, or via the ‘Plugins->Add New’ option in the WordPress dashboard.
  2. Activate the plugin via the ‘Plugins’ option in the WordPress dashboard.
  3. Once activated new re-occuring cron task is scheduled, which automatically updates pageview counters for each post published. Plugin comes pre-configured for file-based storage, but you can easily change settings in app/settings.php file.

Reviews

7 de septiembre de 2022
Really happy with this plugin's approach to tracking post views. Lightweight and effective if all you need is a simple counter that's compatible with caching. (We run both Varnish and Cloudflare, still works like a charm.)
Read all 1 review

Contributors & Developers

“PageViews Counter” is open source software. The following people have contributed to this plugin.

Contributors

Translate “PageViews Counter” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

2.0.0 – 21st July 2023

  • Removing dependency on jQuery
  • Making plugin multisite compatible
  • Making cache key more unique allowing to run plugin on single memcached instance and multiple sites for instance

1.1.3 – 26th May 2022

  • Updating tested up to version

1.1.2 – 26th January 2022

  • Updating tested up to version

1.1.1

  • Updating tested up to version

1.1.0

  • Updating PHP libraries

1.0.1

  • Updating tested up to version

1.0.0

  • First stable release of the plugin