Quick fix for WordPress SSL Verify error

When your WordPress installation has problems with updating and retrieving files over SSL, because of outdated certificates, you can bypass this.
It`s actually a workaround, not a fix!

Just place the following code in your theme or plugin

// SSL fix
add_filter( 'https_ssl_verify', '__return_false' );
add_filter( 'https_local_ssl_verify', '__return_false' );

Ubuntu Linux Kernel 4.3 installation guide

This short walkthrough describes how to install the Linux Kernel 4.3 on Ubuntu Linux.

This guide should work with the latest version of Ubuntu Linux and most Ubuntu-based distributions including Kubuntu and Mint. The included kernel files have been compiled using the generic Ubuntu configuration.

Installation Guide (GUI)

  1. Download the kernel headers package:

    http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.3-wily/linux-headers-4.3.0-040300_4.3.0-040300.201511020949_all.deb
  2. And the appropriate package for your system
  3. And the accompanying compiled kernel image:
  4. Install the files in the same order as downloaded above. So first install the headers (2 files) and finally the image (1 file).
  5. In the terminal run:

    sudo update-grub
  6. Reboot and select the kernel from the bootloader menu

I will post the latest version of the 4.3 branch and 4.4 release candidates in comments below.

Deprecating WordPress plugins

Starting 1 october 2015, I will not support these WordPress Plugins:

  • Selectivizr
  • Respond.js
  • Lettering.js
  • html5shiv
  • Comic Sans everything
  • Amplify.js
  • Explorer Canvas (excancas)
  • Enhance.js
  • Microformat shiv
  • MatchMedia.js
  • Pointer Events polyfill (PEP)
  • Globalize
  • FitText
  • Has.js
  • IE9 mode
  • eBay Shortcode

Instead I will integrate them into my PowerPack plugin, and will offer support on that instead.

Ubuntu Linux Kernel 4.2 installation guide

This short walkthrough describes how to install the Ubuntu Linux Kernel 4.2 (server and desktop/client) without compiling.

This guide should work with the latest version of Ubuntu Linux and most Ubuntu-based distributions including Mint. The included kernel files have been compiled using the generic Ubuntu configuration. The general packages are available for 32 bits systems (I386+) and 64 bits (AMD64). I will not provide low latency versions or ARMHF this time.

Installation Guide (GUI)

  1. Download the kernel headers package:

    http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.2-unstable/linux-headers-4.2.0-040200_4.2.0-040200.201508301530_all.deb
  2. And the appropriate package for your system
  3. And the accompanying compiled kernel image
  4. Install the files in the same order as downloaded above. So first install the headers (2 files) and finally the image (1 file).
  5. In the terminal run:

    sudo update-grub
  6. Reboot and select the kernel from the bootloader menu

I will post the latest version of the 4.2 branch and 4.3 release candidates in comments below.