Compilation failed: disallowed Unicode code point

Главные вкладки

Аватар пользователя alexbest alexbest 11 ноября 2012 в 20:46

Здравствуйте,

Позавчера на сайтах (как на версии drupal 6, так и на drupal 7) возникла ошибка:

Warning: preg_match() [function.preg-match]: Compilation failed: disallowed Unicode code point (>= 0xd800 && <= 0xdfff) at offset 1811 в функции ctools_cleanstring() (строка 157 в файле /www/..../www/htdocs/sites/all/modules/ctools/includes/cleanstring.inc).

Кто-нибудь знает как это вылечить?

Комментарии

Аватар пользователя fits fits 14 ноября 2012 в 19:51

кто-нибудь знает решение ???

warning: preg_match() [function.preg-match]: Compilation failed: disallowed Unicode code point (>= 0xd800 && <= 0xdfff) at offset 1811 in /home/a.fedorets/data/www/parkdrive.kh.ua/modules/acquia/pathauto/pathauto.inc on line 196.

Аватар пользователя fits fits 14 ноября 2012 в 19:51

кто-нибудь знает решение ???

warning: preg_match() [function.preg-match]: Compilation failed: disallowed Unicode code point (>= 0xd800 && <= 0xdfff) at offset 1811 in /home/a.fedorets/data/www/parkdrive.kh.ua/modules/acquia/pathauto/pathauto.inc on line 196.

Аватар пользователя alexbest alexbest 23 декабря 2012 в 10:27

Всем спасибо!
Помогло простое замещение:
'\x{a80b}\x{a823}-\x{a82b}\x{d800}-\x{f8ff}\x{fb1e}\x{fb29}\x{fd3e}\x{fd3f}'.
на
'\x{a80b}\x{a823}-\x{a82b}\x{e000}-\x{f8ff}\x{fb1e}\x{fb29}\x{fd3e}\x{fd3f}'.

Аватар пользователя korolt korolt 17 февраля 2013 в 7:58

S555mile
Вот здесь
пишут:

warning: preg_match() [function.preg-match]: Compilation failed: disallowed Unicode code point (>= 0xd800 && <= 0xdfff) at offset 1811 in /sites/all/modules/ctools/includes/cleanstring.inc on line 157.
Solution:
http://drupal.org/node/1446372#comment-5646080
1.
\modules\search\search.module
\sites\all\modules\ctools\includes\cleanstring.inc
\x{d800}-\x{f8ff}
change to
\x{e000}-\x{f8ff}
2.
clear cache (Настройки->Производительность)

Аватар пользователя janeWPG janeWPG 10 июля 2014 в 16:36

"alexbest" wrote:
Помогло простое замещение:
'\x{a80b}\x{a823}-\x{a82b}\x{d800}-\x{f8ff}\x{fb1e}\x{fb29}\x{fd3e}\x{fd3f}'.
на
'\x{a80b}\x{a823}-\x{a82b}\x{e000}-\x{f8ff}\x{fb1e}\x{fb29}\x{fd3e}\x{fd3f}'.


Спасибо!