- Joined
- Mar 15, 2023
- Messages
- 93
- Points
- 43
Reputation:
Anyone know? @BattleKing @ENXF NET
BattleKing
Spirit of darkness
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P Member
Collaborate
Registered
- Joined
- May 24, 2020
- Messages
- 3,529
- Points
- 523
Reputation:
- By BattleKing
Anyone know? @BattleKing @ENXF NET
The second one is the API key for ipqualityscore.com to check the e-mail .
So there are two email checks, one from MailCheck.ai, which checks only the domain and one from ipqualityscore.com, which checks complete email address.
↑View previous replies…
ilonaI ve just checked the code and so far as I see, there is still an issue in there, but I cannot prove it, because not able to create an account in that page.
The following code might need to be changed in src\addons\Justin\EmailCheck\XF\Entity\User.php from:
to:
Maybe someone could confirm this.
does not make any sense, because if it is set and not null then i will return an error message, but it should be the other way round. Even the above suggestion would be better.
BattleKing
Spirit of darkness
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P Member
Collaborate
Registered
- Joined
- May 24, 2020
- Messages
- 3,529
- Points
- 523
Reputation:
- By BattleKing
exactly those errors get when i create new account
„Ooops something went wrong… try later”
The following code might need to be changed in src\addons\Justin\EmailCheck\XF\Entity\User.php from:
PHP:
if($result !== null){
if (isset($result['valid'])) {
$this->error(\XF::phrase('please_enter_valid_email'), 'email');
return false;
} elseif($result['disposable'] == "true") {
$this->error(\XF::phrase('please_enter_valid_email'), 'email');
return false;
}
}
to:
PHP:
if($result !== null){
if (isset($result['success']) && $result['success'] == "false" ) {
$this->error($result['message']);
return false;
} elseif($result['disposable'] == "true") {
$this->error(\XF::phrase('please_enter_valid_email'), 'email');
return false;
}
}
Maybe someone could confirm this.
PHP:
if (isset($result['valid'])) {