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 […]
WordFence: 5 Security Questions For Your Hosting Company
The folks at WordFence have a new blog post that caught our attention titled 5 Security Questions For Your Hosting Company. We read it with interest and can would like to take this opportunity to answer all of their questions: The first question is a multi-part question so we are going to break it down […]
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 […]
Comments: WordPress vs. Jetpack vs. Disqus
We are often asked which system is the best to use to handle comments on a blog or site and the answer is always, “it depends on your needs.” Ben Pines over at Pojo recently published a very thorough article comparing the native WordPress comments with Jetpack with Disqus, easily the three top commenting systems for […]
May 2016: We have changed some things!
Hello! We have changed a few things around here and are going to be making some big announcements in the coming weeks. We have been incredibly busy lately but wanted to get the new site out the door so can be adding to it while it’s live rather than waiting for it to be perfectly […]
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. […]