This Interests Me

Menu

Skip to content
  • About
  • Tips & Tricks
  • Interesting Articles
  • Code

Blocking POST, TRACE and PUT requests with HAProxy.

A short guide on how to allow or deny certain HTTP methods using HAProxy.

Read More...
This article was posted in SEO / Webmaster, Sysadmin, Tips & Tricks on November 13, 2018.

Prevent unwanted domains from forwarding to Nginx.

A short guide on how to prevent spammy domains from forwarding to your Nginx web server.

Read More...
This article was posted in Nginx, SEO / Webmaster, Sysadmin, Tips & Tricks on November 13, 2018.

PHP: Calculate the ratio between two numbers.

This is a short guide on how to calculate the ratio between two numbers using PHP.

Read More...
This article was posted in Code, PHP Tutorials, SEO / Webmaster, Tips & Tricks on November 3, 2018.

Link existing Facebook page to Facebook app.

A guide on how to link an existing Facebook page to a Facebook app.

Read More...
This article was posted in Facebook, SEO / Webmaster, Tips & Tricks on October 27, 2018.

Using a local WSDL file with PHP SoapClient.

This is a short guide on how to use a local WSDL file with the PHP SoapClient object.

Read More...
This article was posted in Code, PHP Tutorials on October 18, 2018.

Facebook adding “fbclid” parameter to outbound links.

Last week, I noticed that Facebook had started to attach a query parameter called “fbclid” to outbound links.

Read More...
This article was posted in Facebook, SEO / Webmaster on October 14, 2018.

PHP trend / forecast function.

Emulating Excel’s TREND / FORECAST function in PHP.

Read More...
This article was posted in PHP Tutorials, Tips & Tricks on October 12, 2018.

PHP-FPM settings tutorial. max_servers, min_servers, etc.

A guide on selecting the correct www.conf settings for PHP-FPM.

Read More...
This article was posted in PHP Tutorials, Sysadmin, Tips & Tricks on October 12, 2018.

Guide: Upgrading HAProxy from 1.6 to 1.8 on Ubuntu 16.04.4 LTS (Xenial).

This post details the steps that I took to upgrade HAProxy from 1.6 to 1.8 on Ubuntu 16.04.4 LTS (Xenial).

Read More...
This article was posted in SEO / Webmaster, Sysadmin, Tips & Tricks on October 2, 2018.

ngx_slab_alloc() failed: no memory in SSL session shared cache “le_nginx_SSL”

An SSL issue that I ran into the other day.

Read More...
This article was posted in Nginx, SEO / Webmaster, Sysadmin, Tips & Tricks on September 25, 2018.

Incorrect validation certificate for tls-sni-01 challenge.

The other day, I came across a frustrating issue while attempting to renew the Let’s Encrypt SSL certificate on my haproxy load balancer.

Read More...
This article was posted in SEO / Webmaster, Sysadmin, Tips & Tricks on September 20, 2018.

The best Audacity settings for Blue Snowball Microphone.

This is a short Audacity tutorial on how to “clean up” recordings that you’ve made with the Blue Snowball microphone.

Read More...
This article was posted in Tips & Tricks on July 12, 2018.

PHP: Send POST request WITHOUT cURL.

This is a short PHP tutorial on how to send a HTTP POST request without using cURL.

Read More...
This article was posted in Code, PHP Tutorials, SEO / Webmaster on July 11, 2018.

Fixing “Uncaught error: Call to undefined function curl_init”

This is a common error that occurs whenever PHP’s curl extension has not been installed or enabled.

Read More...
This article was posted in Code, PHP Tutorials, SEO / Webmaster, Sysadmin, Tips & Tricks on July 11, 2018.

PHP: Get a list of included PHP files.

This is a PHP tutorial on how to get a list of files that have been included in your script.

Read More...
This article was posted in Code, PHP Tutorials, SEO / Webmaster, Tips & Tricks on June 27, 2018.

Copy a file with PHP.

This is a short tutorial on how to copy files using PHP.

Read More...
This article was posted in Code, PHP Tutorials, Tips & Tricks on June 27, 2018.

Call to undefined function mysql_connect()

If you are encountering this undefined error, then it means that you are trying to use the old mysql_* functions in PHP 7.

Read More...
This article was posted in Code, MySQL, PHP Tutorials, SEO / Webmaster on June 27, 2018.

Secure PHP logout script.

This is a short PHP tutorial on how to create a simple user logout script that guards against CSRF attacks.

Read More...
This article was posted in Code, PHP Tutorials, SEO / Webmaster on June 26, 2018.

The logon process was unable to display security and logon options.

The other day, when my PC became unbearably slow, I decided to press the Ctrl+Alt+Del command.

Read More...
This article was posted in Tips & Tricks on June 26, 2018.

Fixed: spoolsv.exe causing high CPU usage.

In this guide, we will show you what to do if the spoolsv.exe process on your Windows PC is causing high CPU usage.

Read More...
This article was posted in Tips & Tricks on June 26, 2018.

PHP: Detect if operating system is Windows.

This is a PHP tutorial on how to check if the operating system is Windows.

Read More...
This article was posted in Code, PHP Tutorials, SEO / Webmaster, Tips & Tricks on June 25, 2018.

Infinite loops with PHP.

This is a short guide on how to create an infinite loop using PHP.

Read More...
This article was posted in Code, PHP Tutorials, Tips & Tricks on June 25, 2018.

Linux: Delete files older than 30 days.

This is a short guide on how to use the Linux find utility to remove old files.

Read More...
This article was posted in SEO / Webmaster, Sysadmin, Tips & Tricks on June 25, 2018.

Autoloading PHP classes that use namespaces

This is a basic tutorial on autoloading PHP classes that use namespaces.

Read More...
This article was posted in Code, PHP Tutorials on June 24, 2018.

Tutorial: Subtracting numbers using PHP.

This is a beginners tutorial on how to do basic subtraction in PHP. The aim of this tutorial is to help developers who are completely new to the language.

Read More...
This article was posted in Code, PHP Tutorials on June 21, 2018.

Send JavaScript object via Ajax to PHP script.

This is a short guide on how to send a JavaScript object to a PHP script using an Ajax request.

Read More...
This article was posted in Code, JavaScript, PHP Tutorials on June 21, 2018.

JSON.stringify returning empty string / object.

The other day, I came across an issue where the JSON.stringify method failed to convert one of my objects into a JSON string.

Read More...
This article was posted in Code, JavaScript on June 21, 2018.

MySQL: INT(11) vs TINYINT(1) – What do the numbers in brackets mean?

When it comes to columns such as INT (11) and TINYINT (3), the number in brackets isn’t actually that important.

Read More...
This article was posted in MySQL, SEO / Webmaster, Sysadmin, Tips & Tricks on June 19, 2018.

Force HTTPS with HAProxy.

This is a short tutorial on how to force HTTPS / SSL with the HAProxy load balancer.

Read More...
This article was posted in SEO / Webmaster, Sysadmin, Tips & Tricks on June 19, 2018.

Releasing session locks in PHP.

A short and simple guide to releasing session locks in PHP.

Read More...
This article was posted in Code, PHP Tutorials on June 19, 2018.

SSL with HAProxy and PHP: Forwarding HTTPS header.

A short guide on how to forward HTTPS headers with HAProxy so that PHP knows what protocol is being used.

Read More...
This article was posted in Code, PHP Tutorials, SEO / Webmaster, Sysadmin on June 16, 2018.

How to kill Ivy.

A short article that discusses the different methods that are often used to kill English Ivy.

Read More...
This article was posted in DIY, Gardening, Tips & Tricks on June 5, 2018.

PHP SoapClient: Failed to load external entity.

Unfortunately, PHP’s SoapClient isn’t great at importing multiple XSD files.

Read More...
This article was posted in PHP Tutorials on May 30, 2018.

JavaScript Date: One week ago.

This is a short tutorial on how to create a JavaScript date that is “7 days ago” or “30 days ago”.

Read More...
This article was posted in Code, JavaScript on May 23, 2018.

Vauxhall Limp Mode: Losing Acceleration (P2282)

For the past couple of months, my Vauxhall Insignia has been going into limp mode because of a tear in the Turbo Intercooler Pipe.

Read More...
This article was posted in Cars, Tips & Tricks on May 18, 2018.

Post navigation

← Older posts
Newer posts →

Search

Recent Articles

  • Why the police withhold evidence from the public.
  • Dr. Peter Hackett isn’t a good LISK suspect.
  • Gilgo Case: LISK and the burner phones.
  • HTTPS is invalid and might prevent it from being indexed.
  • Louise Bundy: Ted Bundy’s mother.
  • Johnnie Culpepper Bundy: Ted Bundy’s stepfather.
  • Bebo nostalgia: Old screenshots and images.
  • Shannan Gilbert was not a LISK victim

Categories

  • Cars
  • Code
  • DIY
  • Facebook
  • Fantasy Football
  • Football
  • Gaming
  • Gardening
  • Instagram
  • Interesting Articles
  • Ireland
  • JavaScript
  • Linux
  • MySQL
  • Nginx
  • Nostalgia
  • Opinion
  • PHP Tutorials
  • Politics
  • Resident Evil 2 Remake
  • SEO / Webmaster
  • Serial Killers
  • Slang
  • Snapchat
  • Stocks
  • Sysadmin
  • The Sopranos
  • TikTok
  • Tips & Tricks
  • Uncategorized

Toolbox
Privacy Policy

© 2013-2025 ThisInterestsMe.com