Fix WordPress Site URL
You change the site url in WordPress and then cannot get the site to load at all. Revert it in the database. 123456789101112mysql -u *YOURDBUSERNAME* -p > *YOURPASSWORD* show databases; …
You change the site url in WordPress and then cannot get the site to load at all. Revert it in the database. 123456789101112mysql -u *YOURDBUSERNAME* -p > *YOURPASSWORD* show databases; …
1234567891011121314151617181920212223242526272829303132333435363738394041424344# =========================================================================== # This script pulls a list of all domain joined servers and prints the # last connected time. The server is in red if this time is older …
Search for any column in any table that has a specific value where the column is a specific data type 12345678910111213DECLARE @SearchGUID UNIQUEIDENTIFIER = ‘BF3CBDB9-39A9-487D-8754-FC4120E4D993’; DECLARE @SQL NVARCHAR(MAX) = ”; …
From Powershell 1Remove-Item -LiteralPath ‘folder’ -Force -Recurse
The HSTS header can be added to AWS ELB applications through the Application Load Balancer. 1. Locate the Application Load Balancer in AWS Control Panel 2. Find the HTTPS listener …
How to manually test to see if HSTS is enabled on a web server 12~$ curl -s -D- https://owasp.org | grep -i strict-transport-security: Strict-Transport-Security: max-age=31536000 https://owasp.org/www-project-web-security-testing-guide/latest/4-Web_Application_Security_Testing/02-Configuration_and_Deployment_Management_Testing/07-Test_HTTP_Strict_Transport_Security
Test public IP dig +short myip.opendns.com @resolver1.opendns.com Test TCP Connection curl http://10.5.1.188:27017
https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/migrating-latest-types.html 1). Update the AWS PV drivers manually https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Upgrading_PV_drivers.html#aws-pv-upgrade 2). Update the ENA driver (Part 2 of the top link) 3). Update the config tools in step 4 I did …
Windows 11 Pro Control Panel – Programs and Features – Turn Windows Features On or Off Enable Hyper-V (not visible on Home edition, also not sure I needed this) Enable …
MongoDB does not start after a reboot, sudo tail -10 /var/log/mongodb/mongod.log indicates 1Failed to unlink socket file /tmp/mongodb-27017.sock Operation not permitted To resolve the issue, run commands 123sudo rm -f …