ربطی به ورژن سیستم عامل و اینا نداره
برو تو این مسیر
libraries/joomla/filter/input.php
با استفاده از notepad یا نسخه ++notepad خطوط زیر رو پیدا کن:
$source = preg_replace('/&#(\d+);/me', "utf8_encode(chr(\\1))", $source); // decimal notation
$source = preg_replace('/&#x([a-f0-9]+);/mei', "utf8_encode(chr(0x\\1))", $source); // hex notation
و با این خطوط جایگزین کن:
$source = preg_replace_callback('/&#x(\d+);/mi', function($m){return utf8_encode(chr('0x'.$m[1]));}, $source); // decimal notation
$source = preg_replace_callback('/&#x([a-f0-9]+);/mi', function($m){return utf8_encode(chr('0x'.$m[1]));}, $source); // hex notation





علاقه مندی ها (Bookmarks)