Welcome Guest, Not a member yet? Register   Sign In
phpexcel problem
#6

[eluser]Damjan[/eluser]
Now I've got following error:

Fatal error: Class 'PHPExcel_Writer_Excel2007' not found in C:\Users\Damjan\Dropbox\Projects\www\PhoneNumber\application\libraries\PHPExcel\IOFactory.php on line 141

IOFactory.php:

public static function createWriter(PHPExcel $phpExcel, $writerType = '') {
// Search type
$searchType = 'IWriter';

// Include class
foreach (self::$_searchLocations as $searchLocation) {
if ($searchLocation['type'] == $searchType) {
$className = str_replace('{0}', $writerType, $searchLocation['class']);
$classFile = str_replace('{0}', $writerType, $searchLocation['path']);

$instance = new $className($phpExcel); // line 141
if ($instance !== NULL) {
return $instance;
}
}
}

// Nothing found...
throw new Exception("No $searchType found for type $writerType");
}


Messages In This Thread
phpexcel problem - by El Forum - 06-20-2012, 03:50 AM
phpexcel problem - by El Forum - 06-20-2012, 10:55 AM
phpexcel problem - by El Forum - 06-20-2012, 09:02 PM
phpexcel problem - by El Forum - 06-21-2012, 12:43 AM
phpexcel problem - by El Forum - 06-21-2012, 12:57 AM
phpexcel problem - by El Forum - 06-21-2012, 01:26 AM
phpexcel problem - by El Forum - 06-21-2012, 01:37 AM
phpexcel problem - by El Forum - 06-21-2012, 02:12 AM
phpexcel problem - by El Forum - 06-21-2012, 02:14 AM



Theme © iAndrew 2016 - Forum software by © MyBB