ERROR 1
Message: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead Line 82 Location: D:\xampp\htdocs\mysite\plugins\system\admintools\autoloader.php
Code Snippet
// Change from camel cased (e.g. FeatureFoobar) into a lowercase array (e.g. 'feature','foobar')
$class = preg_replace('/(\s)+/', '_', $class);
---AND---
ERROR 2 (Not sure if this came from Admin Tools or Akeeba Backup)
Message: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead Line 78 Location: D:\xampp\htdocs\mysite\libraries\fof\autoloader\fof.php
Code Snippet
// Change from camel cased (e.g. ViewHtml) into a lowercase array (e.g. 'view','html')
$class = preg_replace('/(\s)+/', '_', $class);