每个人! FreeBSD noobie正在寻求一些关于将PCRE和Apache与mod_php集成的帮助。
是)我有的:
Compiled with
8-bit support only
UTF-8 support
Unicode properties support
No just-in-time compiler support
Newline sequence is LF
\R matches all Unicode newlines
Internal link size = 2
POSIX malloc threshold = 10
Default match limit = 10000000
Default recursion depth limit = 10000000
Match recursion uses stack
php -i | grep -i pcre
告诉我,他使用以下PCRE版本:Configure Command => './configure' '--with-layout=GNU'
'--localstatedir=/var' '--with-config-file-scan-dir=/usr/local/etc/php'
'--disable-all' '--enable-libxml' '--enable-mysqlnd'
'--with-libxml-dir=/usr/local' '--with-pcre-regex=/usr/local/lib'
'--with-zlib-dir=/usr' '--program-prefix=' '--with-apxs2=/usr/local/sbin/apxs'
'--with-regex=php' '--with-zend-vm=CALL'
'--enable-zend-multibyte' '--prefix=/usr/local'
'--mandir=/usr/local/man' '--infodir=/usr/local/info/'
'--build=i386-portbld-freebsd8.2'
pcre
PCRE (Perl Compatible Regular Expressions) Support => enabled
PCRE Library Version => 8.30 2012-02-04
pcre.backtrack_limit => 1000000 => 1000000
pcre.recursion_limit => 100000 => 100000
当我尝试以
php < somecode.php
这样的方式从命令行运行php应用程序时,一切正常。但是当我通过apache执行它时,我收到此错误:
Compilation failed: this version of PCRE is compiled without UTF support at offset 0
我试图用
--with-pcre=/usr/local/bin
从端口重建apache,但是它失败,并提示apache找不到pcre-config脚本。怎么可能出问题了?
最佳答案
解决的问题只是使用系统pcre而不是默认值重建了apache。为此,请使用--with-pcre
选项构建您的Apache,该选项应包含pcre-config
的完整路径,包括pcre-config本身。就我而言,它是--with-pcre=/usr/local/bin/pcre-config
。
谢谢大家)
关于php - PCRE在没有UTF支持的情况下进行编译,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10037336/