Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Return to complete the Final Steps.

Common Errors

Error:

Code Block
languagephp
Array
(
    [email] => Array
        (
            [format] => Please enter a valid email address.
        )

)

Solution:

It's likely your WHMCS install is missing email address, or that the domain in some email addresses is invalid (No MX name resolution). To get around this, you can edit /vendors/minphp/input/src/Input.php and find the isEmail method. Replace the method with the following:

Code Block
languagephp
public static function isEmail($str, $check_record = true)
{
	return true;
}

This will stop Blesta from performing any input validation on email addresses. Be sure to revert the change after the import has completed.