Joomla 3.1.5 has a bug with PHP 5.5, but you donβt need to worry to make it work, you just need to change the input.php
file located in libraries/joomla/filter/input.php
Well: Open the input.php file find and replace with your favorite text editor
$source = preg_replace('/&#(\d+);/me', "utf8_encode(chr(\\1))", $source);
from
$source = preg_replace_callback('/&#(\d+);/m', function($m){return utf8_encode(chr($m[1]));}, $source);
and
$source = preg_replace('/&#x([a-f0-9]+);/mei', "utf8_encode(chr(0x\\1))", $source); // hex notation
from
$source = preg_replace_callback('/&#x([a-f0-9]+);/mi', function($m){return utf8_encode(chr('0x'.$m[1]));}, $source);
or for your continent I downloaded the corrected input.php file, you can download it here just replace input.php with the original one, and you are done .. !!
user2533777
source share