PCRE compiled without UTF support

all! FreeBSD noobie is looking for some help integrating PCRE and Apache with mod_php.

What I have:

  • FreeBSD 8.2-RELEASE-p3
  • Apache / 2.2.22 (FreeBSD, built from ports)
  • PHP 5.3.10 with Suhosin-Patch (cli) (built: Apr 6, 2012 02:58:27 AM) (not from ports)
  • 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 php -i | grep -i pcre tells me that it uses the PCRE version 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 the php application from the command line, thus php < somecode.php .

But when I execute it using apache, I get this error: Compilation failed: this version of PCRE is compiled without UTF support at offset 0

I tried rebuilding apache from ports using --with-pcre=/usr/local/bin , but failed with the message that apache could not find pcre-config script.

What could be wrong?

+6
source share
1 answer

The resolved issue simply restored apache with the system pcre, and not by default. To do the same, we built apache with the --with-pcre option, which should contain the full path to pcre-config , including pcre-config itself. In my case, this is --with-pcre=/usr/local/bin/pcre-config .

Thanks everyone)

+4
source

Source: https://habr.com/ru/post/912547/


All Articles