everyone! FreeBSD noobie looking for some help with integration of PCRE and Apache with mod_php.
What I have:
PCRE version 8.30 2012-02-04
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
tells me, he uses version of PCRE below:
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
And everything works fine, when I try to run my php application from command line, in such way php < somecode.php
.
But when I execute it via apache, I receive this error: Compilation failed: this version of PCRE is compiled without UTF support at offset 0
I've tried to rebuild apache from ports with --with-pcre=/usr/local/bin
, but its failed with message that apache couldn't find pcre-config script.
What's could be wrong?
Resolved problem just rebuilt apache with system pcre instead of default. To do the same, built your apache with --with-pcre
option, which should contain the full path to pcre-config
including pcre-config itself. In my case it's --with-pcre=/usr/local/bin/pcre-config
.
Thanks to all)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With