Problema na exportação Exportação CrossRef no OJS 2.4.8

Estou tentando exportar os aritgos para serem publicados no CrossRef e quando chamo a funcionalidade exportar artigos aparece a seguinte mensagem de erro:

Fatal error: Class ‘PubObjectCache’ not found in C:\xampp\htdocs\saj_ojs\plugins\importexport\crossref\classes\DOIExportPlugin.inc.php on line 54

Um detalhe estou usando a versão completa 2.4.8, a mesma disponibilizada pela PKP. O erro apresentado faz menção a instância $this->_cache = new PubObjectCache();

class DOIExportPlugin extends ImportExportPlugin {

//
// Protected Properties
//
/** @var PubObjectCache */
var $_cache;

function &getCache() {
	if (!is_a($this->_cache, 'PubObjectCache')) {
		// Instantiate the cache.
		if (!class_exists('PubObjectCache')) { // Bug #7848
			$this->import('classes.PubObjectCache');
		}
		$this->_cache = new PubObjectCache();
	}
	return $this->_cache;

Lembando que estou usando a versão 2.4.8 completa sem atualizações.