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'];
Bookmarks