Updated Troubleshooting (markdown)

Chris Caron
2023-05-21 15:38:01 -04:00
parent f4ed3d2d9a
commit 1a4b790104

@ -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.