jasonrogena / jasonrogena/php-excel-reader

error in reading .xls file

Open
#168 0 comments 0 reactions 0 assignees View on GitHub
auto-migrated Priority-Medium Type-Defect
Dominant language
PHP
Stars
1
Forks
0
PR merge metrics
No merged PRs in 30d

Description

```

$excel = new Spreadsheet_Excel_Reader();
$excel->read('IWMPSmsData_ReportingDistictReport.xls');
$x=1;
while($x<=$excel->sheets[0]['numRows']) {
echo "\t\n";
$y=1;
while($y<=$excel->sheets[0]['numCols']) {
$cell = isset($excel->sheets[0]['cells'][$x][$y]) ? $excel->sheets[0]['cells'][$x][$y] : '';
echo "\t\t$cell\n";
$y++;
}
echo "\t\n";
$x++;
}

i get an error
The filename IWMPSmsData_ReportingDistictReport.xls is not readable
why

```

Original issue reported on code.google.com by `arisht...@gmail.com` on 15 Mar 2013 at 7:59

Contributor guide

No contributing guide indexed for this repository

Research direction

Start at the Spreadsheet_Excel_Reader::read call shown in the report and verify whether IWMPSmsData_ReportingDistictReport.xls is present and readable in the process's working directory. Reproduce the reported error with that filename, then determine what prevents reading it; done means the cause is identified and the reader handles the file or reports a useful failure.

Written by the indexing model from the issue text.

Assessment

Tech stack
php
Domain
backend
Issue type
Bug
Difficulty
3/5
Estimated time
1-2 days
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
25/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.