6

みんな!PCRE と Apache の mod_php との統合について助けを求めている FreeBSD 初心者。

私が持っているもの:

  • FreeBSD 8.2-RELEASE-p3
  • Apache/2.2.22 (ポートから構築された FreeBSD)
  • PHP 5.3.10 with Suhosin-Patch (cli) (ビルド: 2012 年 4 月 6 日 02:58:27) (ポートからではない)
  • PCRE バージョン 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彼は以下のバージョンの 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アプリケーションを実行しようとすると、すべて正常に動作しますphp < somecode.php.

しかし、Apache 経由で実行すると、次のエラーが表示されます。Compilation failed: this version of PCRE is compiled without UTF support at offset 0

でポートから apache を再構築しようとしました--with-pcre=/usr/local/binが、apache が pcre-config スクリプトを見つけられないというメッセージで失敗しました。

何が間違っている可能性がありますか?

4

1 に答える 1

4

デフォルトの代わりにシステム pcre を使用して apache を再構築するだけで問題が解決されました。同じことを行うには、オプションを使用して apache をビルドします。これには、 pcre-config 自体を--with-pcre含めるためのフル パスが含まれている必要があります。pcre-config私の場合は--with-pcre=/usr/local/bin/pcre-config.

ありがとうございます)

于 2012-04-11T20:39:12.347 に答える