Jump to content

Edit History

afsalthai

afsalthai

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 ?

afsalthai

afsalthai

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. 

with an error

Notice on line 101 in file /home2/icaunxmy/public_html/vendor/symfony/symfony/src/Symfony/Component/HttpFoundation/Session/Storage/Handler/StrictSessionHandler.php
[8] SessionHandler::gc(): ps_files_cleanup_dir: opendir(/var/cpanel/php/sessions/ea-php73) failed: Permission denied (13)

×
×
  • Create New...