Poles
Poles

Reputation: 3682

is iconv_set_encoding deprecated in php 5.4.25?

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

Answers (1)

Guns
Guns

Reputation: 2728

You should uncomment extension=iconv.so in php.ini. That would enable the function

Upvotes: 1

Related Questions