You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried a lot of times to connect my database but it wasn't working. After a bunch of tests, I had an idea on trying to connect without special characters and it worked like a charm.
So, the point was to find which group of special character could be doing that.
Edu Dantas helped me inserting a "print" inside the code and I noticed that MYSQL_PASS= password is not readable if it has the exactly special character #
If your password is something like 1234567890abcd!@$%^&*()_-_+= it will be fine. anything that doesn't have # is gonna work.
If you password is something like #1234..... 12#34.... 1234abc# or anything that has # won't work.
That's it ;)
The text was updated successfully, but these errors were encountered:
Well,
I tried a lot of times to connect my database but it wasn't working. After a bunch of tests, I had an idea on trying to connect without special characters and it worked like a charm.
So, the point was to find which group of special character could be doing that.
Edu Dantas helped me inserting a "print" inside the code and I noticed that
MYSQL_PASS=
password is not readable if it has the exactly special character#
If your password is something like
1234567890abcd!@$%^&*()_-_+=
it will be fine. anything that doesn't have # is gonna work.If you password is something like
#1234
.....12#34
....1234abc#
or anything that has # won't work.That's it ;)
The text was updated successfully, but these errors were encountered: