Orange flashing light after changing module on 5400R zl2

Plug in the old module again then follow process below –  Issue the ‘no module x’ command, where x is the letter of the slot (A through L).The following warning will be displayed:This command will shut down the specified modules and remove all configuration settings for those modules and their ports. Any management traffic for Read more about Orange flashing light after changing module on 5400R zl2[…]

How to set up WordPress behind a secure reverse proxy using NGINX

After getting your SSL-certificate and have enabled HTTPS redirection in NGINX, WordPress will not work due to mixed content (HTTP and HTTPS) – you won’t be able to login. In order to fix this you first have to add this at the very start of your wp-config.php. define(‘FORCE_SSL_ADMIN’, true); if ($_SERVER[‘HTTP_X_FORWARDED_PROTO’] == ‘https’) $_SERVER[‘HTTPS’]=’on’; Then Read more about How to set up WordPress behind a secure reverse proxy using NGINX[…]

GPO to enable Windows Defender periodic scanning

Create a new GPO, edit Goto Computer configuration – preferences – windows settings – Registry. Add the following keys [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Defender] “DisableAntiSpyware”=dword:00000000 “DisableAntiVirus”=dword:00000000 “PassiveMode”=dword:00000002 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WdBoot] “Group”=”Early-Launch” “Start”=dword:00000000 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WdFilter] “Start”=dword:00000000 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WinDefend] “Start”=dword:00000002 Periodic scanning will be enabled alongside your current AV after a reboot.

WordPress – Fixing Another Update in Process Error

To quickly get rid of ‘another update in process’ message, you need to delete the core_updater.lock option from your WordPress database.  The easiest solution: Fix Another Update in Process Error Using a Plugin First thing you need to do is install and activate the Fix Another Update In Progress plugin. Upon activation, you need to visit Settings Read more about WordPress – Fixing Another Update in Process Error[…]