Quote:
Originally Posted by sdfaheem
I installed the new version, yahoo is working good but gmail isn't. The error i am getting in gmail inviter is:
|
Its because your webhost doesn’t give you the support of iconv() PHP function.
About this function on php.net :
Quote:
You will need nothing if the system you are using is one of the recent POSIX-compliant systems because standard C libraries that are supplied in them must provide iconv facility. Otherwise, you have to get the ? libiconv library installed in your system.
|
To check if iconv() is available on your hosting, copy below code in 1 php file and execute it :
Code:
<?php
$exists_iconv_get_encoding =
function_exists('iconv_get_encoding');
$exists_iconv = function_exists('iconv');
if ($exists_iconv_get_encoding == TRUE) {
echo "iconv_get_encoding is declared<br>";
} else {
echo "iconv_get_encoding is not declared<br>";
}
if ($exists_iconv == TRUE) {
echo "iconv is declared<br>";
} else {
echo "iconv is not declared<br>";
}
$test_string = "this is an ascii-only test string";
echo "test_string is: $test_string<br>";
$encoding = iconv_get_encoding($test_string);
echo "encoding is: $encoding<br>";
$result = iconv($encoding,'UTF-8',$test_string);
echo "result is: $result<br>";
?>
Also copy below code in another php file, execute it and please post results here :
Code:
<?php
var_dump(get_extension_funcs("iconv"));
?>
The reason i used it because its a very common library and now a days almost all hosting providers have it installed.