Reputation: 3682
I have a magento website. which worked find until my hosting server upgraded its php version to 5.4.25.Now i'm getting this error
Fatal error: Call to undefined function iconv_get_encoding() in /home/dbname/public_html/Magento/mysite/lib/Zend/Validate/Hostname.php on line 520
why i'm getting this error?
Upvotes: 1
Views: 3632
Reputation: 2728
You should uncomment extension=iconv.so
in php.ini. That would enable the function
Upvotes: 1