This question may be related to a resolved thread.
I was also getting a fatal error similar to
Fatal error: Typography::require_once() [function.require]: Failed opening required ‘./admin/plugins/pi..php’ (include_path=’.:’) in /var/www/vhosts/projects.somewebsite.org/httpdocs/admin/core/core.typography.php on line 475
After many hours of banging my head against the wall I wiped the blood off and edited the core file thus:
in ‘/system/core/core.typography.php’ on line 472, I’ve altered the line from
if ( ! class_exists($plugin))to…
if ( ! class_exists($plugin) && !empty($plugin) )That sorts it, nasty solution but I was at my wits end.