Can someone please exlain to me ’PCRE’ - I’m getting the same issue (although preg_replace() is not mentioned in my error)
Compilation failed: lookbehind assertion is not fixed length at offset 11
Search results pulling up fine, but clicking on a link yields the error from above.
I think that installing componenets of the OS and configuring are a bit out of my depth, but i need to find some answers on this. Thanks.
Update: SOLUTION FOUND! (thanks coroico for the link)
There is an error in the search highlighting plugin.
Inside the modx manager, click on
Elements > manage elements > plugins > Search Highlighting plugin
On line 123 (if you copy to your line-numbered text editor, right near the bottom of the code)
Replace: $output = implode("<body>", $body);
With: $output = implode("<body", $body);
Hope that helps someone else