Internal Changes to Managed WordPress Hosting

The saying often goes, “you can have security or convenience” meaning that secure things are not going to be easy to use and having things easy sacrifices security. That is very true when it comes to hosting. Technology is ever-changing and along the way some growing pains occur. This is the case with the current relationship between PHP 7 and […]



wplift asks: How many plugins is too many? The answer may surprise you!

We could not have written a better clickbait-y headline. There is a common myth that having a lot of plugins on your site can slow it down. wplift looks at this myth and explains why this is not always true. The article is very thorough, covering several concerns about plugins: Plugin impact – does the plugin change one little […]


Custom Plugins vs. your theme’s functions.php file

It is standard practice for us to create custom plugins for our clients’ WordPress sites. We go the custom route (rather than plopping them into the functions.php file) for 3 reasons: Portability – you can change themes and not lose the custom functionality – plus you can switch to a default theme to debug problems and not break everything […]


BIG WordPress Vulnerability Patched in 4.7.2

The release of WordPress 4.7.2 fixed 3 issues which were made known a fourth critical issue with the WordPress REST API which could result in an unauthorized privilege escalation (in normal-people terms: “somebody could post to your site who did not have permission to do so”). The guys at WP Tavern have an in-depth article on the vulnerability. As […]


Chat arrives in Kerio Connect!

A long-requested feature has arrived in Kerio – integrated instant messaging within the webmail interface! Kerio Connect has long had an instant messaging feature which can be accessed using third party software such as Apple’s Messages, Adium, Pidgin and Trillian but chat has never been part of the webmail interface until now. And it’s seamless:   We were […]


Remove New Relic JavaScript from WordPress AMP Pages

Having problems with New Relic scripts invalidating your WordPress AMP pages? Add this to your functions.php file: /** Disable New Relic Scripts in AMP Pages */ function disable_newrelic_for_amp_pages() { if ( function_exists( ‘is_amp_endpoint’ ) && is_amp_endpoint() ) { if (extension_loaded(‘newrelic’)) { newrelic_disable_autorum( true ); } } } add_action(‘init’, ‘disable_newrelic_for_amp_pages’); We put this into a plugin […]




WordPress 4.x random crashes on nginx/PHP-FPM with SSH2

Hat tip to the Ubuntu bugs mailing list for pointing us in the right direction in solving this problem. Like any good WordPress host we are using SSH keys to provide secure FTP communications for installing/updating our WordPress sites.  Recently we noticed a perplexing issue where WordPress 4.x would crash when accessing the Settings screen or trying to delete a plugin. […]