[dokuwiki] Re: Warning: Compilation failed ... when searching

  • From: Andreas Gohr <andi@xxxxxxxxxxxxxx>
  • To: dokuwiki@xxxxxxxxxxxxx
  • Date: Sun, 9 Oct 2005 14:37:32 +0200

On Fri, 07 Oct 2005 12:28:42 +0200
"Wolfgang Reszel" <dev@xxxxxxxxxxx> wrote:

> Hi Adni,
> 
> > Which PHP version do you use?
> 
> It is version 4.2.3

It's a problem with an too old PCRE version of your PHP install. It
doesn't matter as long as you don't search for Asian (Japanese,
Chinese...) words. Can you please try to change this line in
inc/fulltext.php 

if(preg_match_all('/('.IDX_ASIAN.'+)/u',$w,$matches)){

to

if(@preg_match_all('/('.IDX_ASIAN.'+)/u',$w,$matches)){

It should simply suppress the error message.

Andi

Other related posts: