+ Warning: preg_match(): Compilation failed: this version of PCRE is compiled without UTF support admin 2015.09.02 Warning: preg_match(): Compilation failed: this version of PCRE is compiled without UTF support PHP 5.4 버전 운용 과정중에 워드프레스에서 위와 같이 에레메세지가 발생하는 경우가 있다PCRE는 제대로 설치가 되었는데 왜 에러가 날까 PHP 컴파일 과정중에 옵션을 다르게 줘야 된다 기존 옵션 : –with-pcre-regex=/usr 변경옵션 : –with-pcre 위 옵션을 주고 다시 컴파일 실행하면 에레메시지가 발생되지 않는다 그리고 PCRE가 UTF8 을 지원하는지 확인하는 명령어 pcretest -C Read More..