I have the following code which I run on localhost and works perfectly:
$objWriter = new PHPExcel_Writer_Excel2007($excel);
header('Content-type: application/vnd.ms-excel');
header('Content-Disposition: attachment; filename="'.$excel_file.'"');
$objWriter->save('php://output');
The same code uploaded on another host returns a 404 "File Not Found" error.
Any ideea why?
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet; a mime type ofapplication/vnd.ms-excelidentifies a BIFF format (xls) file, created by the Excel5 Writerpage not found