Staff, please, write here problem solving method
we are not stupid, we can do it by self
This is a discussion on linkbacks language encoding trouble within the Bug Reporting forums, part of the vBSEO Google/Yahoo Sitemap category; Staff, please, write here problem solving method we are not stupid, we can do it by self...
Staff, please, write here problem solving method
we are not stupid, we can do it by self
Hi Andrs
ticket was created
Thanks.
Please try to modify functions_vbseo_misc.php file:
find:
if(strtolower($charset_from) != strtolower($charset_to))
replace with:
if(($charset_from && ($charset_from == $charset_to)) || !$charset_to)
Oleg Ignatiuk / Crawlability Inc.
Security bulletin - Patch Level for all supported versions released
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Oleg
now troubles in automated "get names from site link" in posts
i was try to change in 2 places, now i was restore original text
//if(($charset_from && ($charset_from == $charset_to)) || !$charset_to)
if(strtolower($charset_from) != strtolower($charset_to)) //1
$ptitle2 = iconv($charset_from, $charset_to, $ptitle);
}else
if (function_exists('mb_detect_encoding') && VBSEO_RECODE_TITLES)
{
if (!$charset_from)
$charset_from = mb_detect_encoding($ptitle);
$compat = !function_exists('mb_list_encodings') ||
!($listencodings = mb_list_encodings()) ||
(in_array($charset, $listencodings)
||in_array(strtoupper($charset_from), $listencodings));
//if(($charset_from && ($charset_from == $charset_to)) || !$charset_to)
if(strtolower($charset_from) != strtolower($charset_to)) //2
Hello,
do you have "iconv" or "mbstring" enabled in PHP ?
Oleg Ignatiuk / Crawlability Inc.
Security bulletin - Patch Level for all supported versions released
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
iconv support enabled iconv implementation libiconv iconv library version 1.14
Directive Local Value Master Value iconv.input_encoding ISO-8859-1 ISO-8859-1 iconv.internal_encoding ISO-8859-1 ISO-8859-1 iconv.output_encoding ISO-8859-1 ISO-8859-1
mbstring
Multibyte Support enabled Multibyte string engine libmbfl HTTP input encoding translation disabled
is this correct? i dont know how i can verify this, trying phpinfo
Please open a ticket with ftp/admincp access an example URLs to check this.
Oleg Ignatiuk / Crawlability Inc.
Security bulletin - Patch Level for all supported versions released
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
2nikosb & Oleg
please publish solve of this problem here
very difficult to work with this truoble :(
Ηe did only once.
I have tried many times and can not reproduce the problem.
not work! please help Добро пожаловать на сайт ADS-B RADAR ! | ADS-B/Mode-S Radarspotters Team
![]()
Our forums charset doesn't match the charset from the target site and couldn't be automatically converted.
It's possible that in your case iconv() function didn't work, you can try to modify functions_vbseo_misc.php file, find:
if (function_exists('iconv') && $charset_from && VBSEO_RECODE_TITLES)
replace with:
if (function_exists('iconv2') && $charset_from && VBSEO_RECODE_TITLES)
Oleg Ignatiuk / Crawlability Inc.
Security bulletin - Patch Level for all supported versions released
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
try to only
and with if(($charset_from && ($charset_from == $charset_to)) || !$charset_to)if (function_exists('iconv') && $charset_from && VBSEO_RECODE_TITLES)
replace with:
if (function_exists('iconv2') && $charset_from && VBSEO_RECODE_TITLES)
also not working in posts and in linkbacks...
for your information
i was solve same problem in fuzzy seo with this $out=mb_convert_encoding($input, "cp1251", "auto");