具有远程主机致命错误的PHPExcel

时间:2013-08-29 13:29:12

标签: php phpexcel

PHPExcel - Excel5可以在XAMPP上运行,但不能在远程主机上运行

  

致命错误:未捕获的异常'异常',消息'不能   打开NACHA.xls进行阅读!文件不存在,或者不存在   可读“。在   /home/runway/public_html/commissions/PHPExcel/Classes/PHPExcel/Shared/OLERead.php:79

    error_reporting(E_ALL);
    ini_set('display_errors', TRUE);
    ini_set('display_startup_errors', TRUE);
    define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />');
    date_default_timezone_set('Europe/London');
    echo date('H:i:s') , " Load from Excel5 template" , EOL;
    $objReader = PHPExcel_IOFactory::createReader('Excel5');
    $objPHPExcel = $objReader->load("NACHA.xls");

  <-----i just didnt include the Mysql fetchRow, connectivity ect here.. 


    $baseRow = 3;
    foreach($data as $r => $dataRow) {
       $row = $baseRow + $r;
        $objPHPExcel->getActiveSheet()->insertNewRowBefore($row,1);
        $objPHPExcel->getActiveSheet()->setCellValue('A'.$row, $r+1)
                      ->setCellValue('B'.$row, $dataRow['EMAIL ADDRESS'])
                      ->setCellValue('C'.$row, $dataRow['AMOUNT']);
     }
$objPHPExcel->getActiveSheet()->removeRow($baseRow-1,1);
echo date('H:i:s') , " Write to Excel5 format" , EOL;
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
$objWriter->save(str_replace('.php', '.xls', __FILE__));
echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', 
pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;

 // Echo memory peak usage
 echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 /   
 1024) , " MB" , EOL;
 // Echo done
echo date('H:i:s') , " Done writing file" , EOL;
echo 'File has been created in ' , getcwd() , EOL;
echo '<br/>';
echo "<a href=http://mcommission.com/commissions/PHPExcel/Tests/NACHA.xls>" . "<b>CONVERT</b></a>";

2 个答案:

答案 0 :(得分:0)

错误是自解释

检查文件是否确实存在。
如果是这样,使用chmod 777授予权限将解决问题。

答案 1 :(得分:0)

检查文件“NACHA.xls”是否确实存在,而不是PHPExcel文件夹 如果是这样,使用chmod 777授予权限将解决问题。