FAQ

Google Analytics (logo)

Where to insert the Google Analytics script?

Put your Google Analytics script directly before the </head> in your page. Amazingly Google only says: ‘To get all the benefits of Universal Analytics for this property, copy and paste this code into every web page that you want to track.’. However, in their support section they are more specific: ‘Paste your snippet (unaltered, in its […]

Where to insert the Google Analytics script? Read More »

How do I block requests from an IP address/range with iptables?

To block incoming requests from a single IP address, you can use: iptables -I INPUT -s {IP-HERE} -j DROP so if you’d want to block incoming requests from IP address 2.4.6.8, you’d use: iptables -I INPUT -s 2.4.6.8 -j DROP Should you want to block an entire range, for example 10.20.30.0-10.20.30.255, you can use: iptables

How do I block requests from an IP address/range with iptables? Read More »

Why can’t I no longer send email from WordPress via SMTP after upgrading to PHP 5.6?

Do you use WordPress plugins like WP Mail SMTP or Easy WP SMTP? And are you no longer to send email via SMTP with these plugins after updating to PHP 5.6 or higher? The problem may be in the SSL-certificate on the mail server. A check with http://www.checktls.com/perl/TestReceiver.pl?FULL will easily confirm/deny this. The recommended fix

Why can’t I no longer send email from WordPress via SMTP after upgrading to PHP 5.6? Read More »

How do I force a group policy to be applied on a Windows client?

When you make a change to a Group Policy Object (GPO), the change takes place on a Windows DC (domain controller). The change is then replicated to all other DC’s in the AD (Active Directory). All Windows computers in the AD check for modifications to GPOs at regular intervals (every 90-120 minutes). If they find

How do I force a group policy to be applied on a Windows client? Read More »

reduction