Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Normal
This can be easily fixed by changing;[CODE="php"]// *** XF #161234 28/02/2019 ***$emailAddressValidator = new EmailAddressValidator([ 'allow' => Hostname::ALLOW_DNS | Hostname::ALLOW_LOCAL, 'strict' => false]);[/CODE]to[CODE="php"]// *** XF #161234 28/02/2019 ***$emailAddressValidator = new EmailAddressValidator([ 'allow' => Hostname::ALLOW_DNS | Hostname::ALLOW_LOCAL | Hostname::ALLOW_IP, 'strict' => false]);[/CODE]
This can be easily fixed by changing;
[CODE="php"]// *** XF #161234 28/02/2019 ***
$emailAddressValidator = new EmailAddressValidator([
'allow' => Hostname::ALLOW_DNS | Hostname::ALLOW_LOCAL,
'strict' => false
]);[/CODE]
to
'allow' => Hostname::ALLOW_DNS | Hostname::ALLOW_LOCAL | Hostname::ALLOW_IP,
We use essential cookies to make this site work, and optional cookies to enhance your experience.
See further information and configure your preferences