cancel
Showing results for 
Search instead for 
Did you mean: 

configurating addresses in customer account dashboard

configurating addresses in customer account dashboard

I am using magento version 1.9.2.4 and I cannot seem to change the store email addresses to the specific email addresses I have created under my domain. I am unsure of whether this is because my domain ends in .tech or for another reason. My belief is that it might have something to do with the .tech domain getting bounced back by some validation rule because it works with my personal email and emails on different domains , but not ending in .tech. It always tells me "Invalid email address" Is there any fix for this?

1 REPLY 1

Re: configurating addresses in customer account dashboard

Hi

It is probably because the Zend email validation library is not uptodate with all the new generic Top Level Domain extension (gTLDs)  that are being released.

Copy
/lib/Zend/Validate/Hostname.php
to
/app/code/local/Zend/Validate/Hostname.php

Navigate to line 539 and comment out the following lines of code. This is where the domain name is checked against an array of validTlds.

if (!in_array($this->_tld, $this->_validTlds)) {
    // $this->_error(self::UNKNOWN_TLD);
    // $status = false;
    // break;
}