Hardened WordPress Redis Zero Touch setup on Windows Server/IIS with phpredis, narrow ACLs, enrollment checks, and validation scripts.
Amixa Redis Zero Touch for WordPress on Windows Server IIS – setup, phpredis and validation scripts
Read article
Amixa Technical Blog
Hardened WordPress Redis Zero Touch setup on Windows Server/IIS with phpredis, narrow ACLs, enrollment checks, and validation scripts.
Easy fix for the PHP error “PHP Deprecated: preg_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated” This was the existing code that was in a WordPress plugin: $D8 = preg_replace(“\57\x5c\163\x2b\x2f\123”, “\40”, $D8); This is the fixed code, which no longer throws the depreciated error: $D8 = preg_replace(“\57\x5c\163\x2b\x2f\123”, “\40”, (string) $D8); If…
Note: This presumes you already have a working REDIS server inside your LAN. If you don’t, please see my coming post on how to set up a REDIS virtual machine on HYPER-V. You will need to install the php REDIS extension. I am using IIS 10 and Windows Server 2022, so I went to…