Hi,
the problem is with your PHP, that doesn't support the multibyte extension.
The function is called here:
function sanitizeURL($url) {
//return utf8_encode(substr(utf8_decode($url), 0, VARCHAR_SIZE));
return mb_substr($url, 0, VARCHAR_SIZE, 'UTF-8');
}
So, you could just edit this file, comment the second line and decomment the first one:
function sanitizeURL($url) {
return utf8_encode(substr(utf8_decode($url), 0, VARCHAR_SIZE));
//return mb_substr($url, 0, VARCHAR_SIZE, 'UTF-8');
}
This should solve. Le me know.
Luigi