18 hours ago, Rhobur said:It should work but if it doesn't you could try as described below.
Do this change in the file "src/Core/Util/InternationalizedDomainNameConverter.php".
The constant INTL_IDNA_VARIANT_UTS46 needs to be converted to int type explicitelly by intval() on the line 47.
If you have this line:return $parts[0] . '@' . idn_to_utf8($parts[1], 0, (INTL_IDNA_VARIANT_UTS46));
Change it to this:
return $parts[0] . '@' . idn_to_utf8($parts[1], 0, intval(INTL_IDNA_VARIANT_UTS46));
This worked and now i can log in to my dashboard.
is it permanently solved? or i have to do something ?