Quote Originally Posted by mc12345678 View Post
The error message likely was the same as identified by wmorris where (at least) the file YOUR_ADMIN/includes/classes/class.CeonURIMappingInstallationCheck.php line 2173 uses the null coalesce operator of ?? (available first in PHP 7.0) in:
Code:
$path = $old_file_or_dir['file'] ?? $old_file_or_dir['dir'];
was used instead of the pre-PHP 7.0 release:
Code:
$path = isset($old_file_or_dir['file']) ? $old_file_or_dir['file'] : $old_file_or_dir['dir'];
Ok I have a full working version now. It took a bit of working on but I am there with it. It came together with a mixture of the files submitted for download and the files suggested by torvista

I will try and pull it all together and submit an update for download.