Quote:
Originally Posted by Rafa-el
Yes, it worked.
|
I'm sorry but are you sure you're running PHP 7.0.x or 7.1.x? I ask because I am looking through the code and for example in the /includes/ directory there is a file called ame_bbcode.php and one line, among many, is:
Code:
$text = preg_replace('/<<<@!([0-9]+)!@>>>/sme', 'ame_unsubstitute(\'\\1\',$ame_subbed)', $text);
The problem being that pre_replace() call is using the "e" modifier. While this would have worked in all versions of PHP 5.x.x, just logging a warning on PHP 5.5.x and 5.6.x, support for the e modifier was totally removed in PHP 7.x so that code could no longer function.
Those were the same kind of lines preventing the older version of this mod from running on PHP 7.x.
Of course maybe I'm missing something and those lines don't actually get triggered or something....