WordPress
Last updated:
Optimize(d) WordPress hosting (9+ practical tips)
9+ Practical tips to optimize WordPress hosting – or for any other PHP web application for that matter. Learn optimizing your WordPress hosting
Deploying and maintaining Web Applications requires a delicate balance of performance, security, and scalability. This category dives into the middle layer of the stack, focusing on how applications interact with the web server, the database, and the end-user. From configuring specialized headers and SSL / TLS certificates to troubleshooting application-specific bottlenecks, these guides help you move beyond default installations.
Whether you are managing self-hosted tools, SaaS integrations, or custom-built platforms, you will find technical advice on environment hardening and performance optimization. The goal is to provide the architectural insights necessary to ensure your web services remain fast, secure, and resilient under load.
WordPress
Last updated:
9+ Practical tips to optimize WordPress hosting – or for any other PHP web application for that matter. Learn optimizing your WordPress hosting
WordPress
Last updated:
Move WordPress to HTTPS correctly. Learn the Site Health switch, database search and replace, IIS/Apache redirects, HSTS hardening, and OpenSSL verification.
WordPress
Last updated:
Schedule WordPress database optimization with WP-Cron.
WordPress
Last updated:
The WordPress WP-Super-Cache cache plugin doesn’t minify HTML cache files, which I find a disadvantage. Knowing minify libraries, I went looking for an existing solution (why reinvent the wheel?), and found one: WPSCMin. Read on …
Web applications
Last updated:
How to fix upgrades to Magento 2.0 in PHP 5.6 and higher: PHP 7+.
Web applications
Last updated:
Optimize PHP OPcache configuration and make it perform even better. After realpath_cache_size, the OPcache cache mechanism is the next important step to fine-tune. With just a few tweaks you tune OPcache to perform much better
WordPress
Last updated:
A web.config file for WordPress on Windows Server IIS. Are you having trouble with your web.config? Here is mine 🙂
Web applications
Last updated:
A change in PHP’s default_charset php.ini setting causes HTML output to break if you try to set a different charset in your HTML head. It also might break functions like htmlentities() and htmlspecialchars().
WordPress
Last updated:
With thousands spam reactions, disabling (and removing) WordPress comments is often the only way to go. Here is how to disable WordPress comments in both the WordPress Dashboard interface and in your MySQL / MariaDB database.
Web applications
Last updated:
How to set up a global Geolocation DNS load balancing Varnish Cache Content Delivery Network with Bind9, geo-ip database, Varnish Cache and DigtalOcean. DIY High-Availability for your website!
Web applications
Last updated:
Learn how to optimize PHP performance by checking and setting PHP realpath_cache_size. The realpath_cache_size size represents the total number of bytes in the path strings stored, plus the size of the data associated with the cache entry
Web applications
Last updated:
Use a PHP redirect script to redirect old PHP URLs to new ones. This examples uses a 301 Moved Permanently redirect, perfect for SEO.
WordPress
Last updated:
How to display commas in WordPress tags? And why have commas in WP taxonomies?
Web applications
Last updated:
Exploit PHP’s mail() function for remote code execution. Apparently, if you are able to control the 5th parameter of the mail() function ($options), you have the opportunity to execute arbitrary commands.
Web applications
Last updated:
Outdated but fun: PHP 7 with OPcache in IIS Express for Microsoft WebMatrix 3: create your DevOps with Microsoft WebMatrix and IIS Express
WordPress
Last updated:
Learn how to override wp-mail() and send secure email using authenticated SMTP and StartTLS from WordPress.
WordPress
Last updated:
How to identify, block, mitigate and leverage xmlrpc.php scans, brute-force, and user enumeration attacks on WordPress sites… Secure WordPress xmlprc.php interface and reduce service disruption.
Web applications
Last updated:
Learn how to speed-up Joomla performance on Windows Server IIS using these 8 simple, but important, tips. Add caching, gzip compression, set your sessions & optimize MySQL database functions.
WordPress
Last updated:
The autoload feature loads and caches all autoloaded options, if available, or all options. The default option is to autoload, and over time when the wp_options table grows, this degrades performance. Today I noticed a slow MySQL query coming from a WordPress database (WordPress wp_options table). This made me investigate and to optimize the WordPress wp_options table “autoload” feature.
Web applications
Last updated:
PHP script to make your MySQL database smaller, leaner and faster by optimizing all tables with mysqli multi_query().