1

After installing my cakephp site. i got this message in yellow background.

PCRE has not been compiled with Unicode support.
Recompile PCRE with Unicode support by adding --enable-unicode-properties when configuring

I dont know what this means. Plz anybody explain, what this means?

i am using cakephp version 1.3.7

praveenmon
  • 141
  • 2
  • 15

1 Answers1

2

It means what it says, the PCRE extension was built without Unicode support, which may lead to a number of bugs. You should recompile the extension, or use a different server/package/installation that includes a properly compiled PCRE library. This may be a question appropriate for http://serverfault.com.

deceze
  • 510,633
  • 85
  • 743
  • 889
  • This happens a lot on Red Hat and CentOS since the version that comes from their respective package managers were compiled with this misconfiguration. – jmking Mar 11 '11 at 17:00