We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The password field in the initial configuration site does not use special characters correctly.
In this particular case its "+" (plus) which can not be used - haven't tested any other special characters yet.
Passwords without special characters can be used properly.
First assumption was:
<meta charset='UTF-8'>
but this didn't help in my case.
I don't have enough knowledge for testing where the translation of a password could end in a failure.
thank you very much for your project btw!
The text was updated successfully, but these errors were encountered:
the issue seems to lay in the encoding.
the fix is to use percent-encoding (https://en.wikipedia.org/wiki/Percent-encoding) for special characters.
In my case i was using a "+" (plus) in the password.
To set your password via CLI use the percent-encoding, as an example set_sta yourRemoteSTA !somePassword2024%2B
set_sta yourRemoteSTA !somePassword2024%2B
important is %2B has replaced the + (plus).
Sorry, something went wrong.
No branches or pull requests
The password field in the initial configuration site does not use special characters correctly.
In this particular case its "+" (plus) which can not be used - haven't tested any other special characters yet.
Passwords without special characters can be used properly.
First assumption was:
<meta charset='UTF-8'>
but this didn't help in my case.
I don't have enough knowledge for testing where the translation of a password could end in a failure.
thank you very much for your project btw!
The text was updated successfully, but these errors were encountered: