From 1a4b790104b22f1384e59e3a729f3abf99dcad7f Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Sun, 21 May 2023 15:38:01 -0400 Subject: [PATCH] Updated Troubleshooting (markdown) --- Troubleshooting.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Troubleshooting.md b/Troubleshooting.md index 92a397b..f4ebfca 100644 --- a/Troubleshooting.md +++ b/Troubleshooting.md @@ -91,6 +91,8 @@ Below is a chart of special characters and the value you should set them: | Character | URL Encoded | Description | ----------- | -------- | ----------- +| **[** | **%5B** | The `[` character can cause confusion with ipv6 strings when parsing. You should use the encoded value of this if it exists in locations such as your password. +| **]** | **%5D** | The `]` character can cause confusion with ipv6 strings when parsing. You should use the encoded value of this if it exists in locations such as your password. | **%** | **%25** | The percent sign itself is the starting value for defining the %XX character sets. | **&** | **%26** | The ampersand sign is how a URL knows to stop reading the current variable and move onto the next. If this existed within a password or username, it would only read 'up' to this character. You'll need to escape it if you make use of it. | **#** | **%23** | The hash tag and/or pound symbol as it's sometime referred to as can be used in URLs as anchors.