FV Gravatar Cache

August 22, 2023

FV Gravatar Cache Plugin

Speeds up your website by making sure the gravatars are stored on your website and not loading from the gravatar server.

There’s one problem with Gravatars. They are very slow to load. Each page with comments on them makes one call per comment to the Gravatar server. While a single call takes only a 100ms, on a page with hundreds of comments, we are talking about major slowdowns. Page loads can take 20 seconds and more.

This plugin solves this problem by:

  • caching gravatars with WordPress cron job..

  • caching gravatars on comment submission

  • maintaining a single copy of the default gravatar instead of downloading it again and again for all the email addresses with no gravatar associtated

Installation guide

Support and more information

Installation

You can use the built in installer and upgrader, or you can install the plugin
manually.

After installing, make sure you visit the plugin settings to make sure the plugin works correctly. You will see a check if the cache directory is writable and you will have to set the gravatar size (plugin also uses autodetection mechanism, which might come handy).

Screenshots

  1. FV Gravatar Cache screen

    FV Gravatar Cache screen

FAQ

Gravatars are not caching properly

Hit the “Empty Cache” button to clear the cache database and clear out the cache directory by hand (you can see the path at the very top of the Settings screen). Then hit the “Run Cron Now” button, it will refresh a couple of gravatars, so you can check the cache directory again, to see if it’s filling up correctly. “Current Cron offset:” will increment, so you can track the progess and see how the cron is running. You can also turn on “Debug mode” and check log.txt afterwards.

Generated (Itenticon, Wavatar and MonsterID) gravatars are not working correctly!

These types of gravatars are not currently supported. Drop us a note and we might add this feature in next release.

I want to have bigger gravatars on author profile pages. Your plugin supports only one gravatar size. Is there any workaround?

You can turn edit your template to turn off the FV Gravatar Cache just when needed, add this code right before that section in your WordPress template php file:

<?php global $FV_Gravatar_Cache; remove_filter( ‘get_avatar’, array( &$FV_Gravatar_Cache, ‘GetAvatar’ ) ); ?>

In case you need the FV Gravatar Cache running later in the template, just bring it back with:

<?php global $FV_Gravatar_Cache; add_filter( ‘get_avatar’, array( &$FV_Gravatar_Cache, ‘GetAvatar’ ) ); ?>

I don’t see the default gravatar on my options page!

If you selected empty gravatar in wp-admin -> Settings -> Discussion, then it’s ok. Otherwise try to resave the options and it should appear.

Changelog

0.4.8

  • Fix for avatar caching for comments without email address (rare cases)

0.4.7

  • Fix for PHP timeout when Gravatar server unreachable during comment posting
  • WordPress 5.4 compatibility checked

0.4.5

  • Security fixes
  • WordPress 5.3 compatibility checked

0.4.3

  • Fix for WP Rocket CDN rewrite

0.4.2

  • Fixing PHP notices

0.4.1

  • added retina alternative for default gravatar
  • fixed retina images srcset
  • retina images downloading enabled by default now

0.4

  • changed images directory to wp-content/uploads/fv-gravatar-cache/
  • added support for retina images
  • added cache purge after update if cache directory is set to default
  • added protocol independent urls
  • added paging for gravatars into settings screen
  • fixed cron offset reset
  • fixed perfomance issues
  • fixed PHP warning
  • fixed security issue for debug log functionality
  • fixed images – adding .png extension as default

0.3.8

  • fix for PHP warnings by Thomas van der Westen

0.3.7

  • Added admin_notice warnings
  • Added a check if the cache directory is empty when the cached data is present in database – to prevent 404 errors for cache gravatars
  • Improving conditions, improving checking of values after submit

0.3.6

  • Fix for PHP warnings
  • Fix for cache disappearing after plugin upgrade (applies to users who didn’t changed the cache directory)

0.3.4

  • Cron job limited to 2 seconds execution time

0.3.3

  • Bugfix for empty gravatar in cache

0.3.2

  • Bug fix for WordPress 3.1 admin bar
  • Bug fix for blank gravatar

0.3.1

  • Better detection of missing/default gravatars

0.3

  • First public release

0.2

  • Added cron support

0.1

  • Works only for logged in users

Details

  • Version: 0.4.8
  • Active installations: 1,000
  • WordPress Version: 2.7
  • Tested up to: 6.3.5

Ratings


5 Stars
4 Stars
3 Stars
2 Stars
1 Stars