Closed GoogleCodeExporter closed 9 years ago
If you want to read file from the web
find the code in excel_reader2.php
if (! is_readable ( $sFileName )) {
$this->error = 1;
return false;
}
change to
if (! is_readable ( $sFileName )) {
//$this->error = 1;
//return false;
}
if you trouble with large file
first of add second parameter to false
it's ignore font, color etc. data
require_once 'excel_reader2.php';
$data = new Spreadsheet_Excel_Reader('your excel file',false);
if don't work
look at
http://php.net/manual/en/function.set-time-limit.php
Original comment by akkaya.i...@gmail.com
on 10 Oct 2011 at 2:00
Original comment by Tho...@gmail.com
on 10 May 2013 at 7:33
Original issue reported on code.google.com by
suresve...@gmail.com
on 9 Aug 2010 at 12:10