To use legacy (Windows XP-7) FireWire drivers on Windows 8, 8.1 and 10, you have to install KB2907191 and manually select to use these drivers for your product. This driver is installed in c:\program files (x86)\1394 OHCI Compliant Host Controller (Legacy)
Windows 10 KB3122947 error 0x80070643 fix
To fix error 0x80070643 of the Windows 10 build 1151 KB3122947, run the following command as administrator:
dism /online /add-package /packagepath:C:\Windows\SoftwareDistribution\Download\c4a1b8896ce9fbfea96c1ee6890d52a5\windows10.0-kb3122947-x64.cab
My WordPress plugins and PHP 7.0
My WordPress plugins are tested and compatible with PHP 7.0
If you do find any bug, please let me know using the contact form.
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)
- 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 - And the appropriate package for your system
- AMD64: http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.3-wily/linux-headers-4.3.0-040300-generic_4.3.0-040300.201511020949_amd64.deb
- ARM-HF: http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.3-wily/linux-headers-4.3.0-040300-generic_4.3.0-040300.201511020949_armhf.deb
- I386: http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.3-wily/linux-headers-4.3.0-040300-generic_4.3.0-040300.201511020949_i386.deb
- PowerPC: http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.3-wily/linux-headers-4.3.0-040300-generic_4.3.0-040300.201511020949_ppc64el.deb
- And the accompanying compiled kernel image:
- AMD64: http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.3-wily/linux-image-4.3.0-040300-generic_4.3.0-040300.201511020949_amd64.deb
- ARM-HF: http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.3-wily/linux-image-4.3.0-040300-generic_4.3.0-040300.201511020949_armhf.deb
- I386: http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.3-wily/linux-image-4.3.0-040300-generic_4.3.0-040300.201511020949_i386.deb
- PowerPC: http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.3-wily/linux-image-4.3.0-040300-generic_4.3.0-040300.201511020949_ppc64el.deb
- Install the files in the same order as downloaded above. So first install the headers (2 files) and finally the image (1 file).
- In the terminal run:
sudo update-grub - 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.