Попробовал в isCallerIDChar добавить по образу того что есть диапазоны от А до Я и от а до я в utf-8.common/libfreepbx.javascripts.js
Не прокатило.
Попробовал в isCallerIDChar добавить по образу того что есть диапазоны от А до Я и от а до я в utf-8.common/libfreepbx.javascripts.js
Код: Выделить всё
#rasterisk -x 'database put AMPUSER/3207 cidname "Василий Печкин"'
Код: Выделить всё
#rasterisk -x 'database show AMPUSER/3207/cidname'
/AMPUSER/3207/cidname : Василий Печкин
1 results found.
Код: Выделить всё
*CLI> core show function ICONV
*CLI>
-= Info about function 'ICONV' =-
[Syntax]
ICONV(in-charset,out-charset,string)
[Synopsis]
Converts charsets of strings.
[Description]
Converts string from in-charset into out-charset. For available charsets,
use 'iconv -l' on your shell command line.
Note: due to limitations within the API, ICONV will not currently work with
charsets with embedded NULLs. If found, the string will terminate.
Код: Выделить всё
mysql_query("SET NAMES UTF8") or die("Query failed");
или
$db->query("SET NAMES UTF8");
Код: Выделить всё
[mysqld]
default-character-set=utf8
default-collation=utf8_general_ci
character-set-server=utf8
collation-server=utf8_general_ci
init-connect='SET NAMES utf8'
[client]
default-character-set=utf8