I'm using PhpExcel library to read xml file. On localhost everything works fine, but on live server when i read xml file with 1800 rows, i get 2500 rows. When file is with 500 rows, works fine...Maybe someone had similar issue? Please help.Thank You in advanceUpdate:\[code\]/** Identify the type of $inputFileName **/$inputFileType = PHPExcel_IOFactory::identify($this->dataFile);if ($inputFileType != 'Excel2003XML' && $inputFileType != 'Excel2007') { $this->error = "Wrong file type";}/** Create a new Reader of the type that has been identified **/$objReader = PHPExcel_IOFactory::createReader($inputFileType);/** Load $inputFileName to a PHPExcel Object **/$objPHPExcel = $objReader->load($this->dataFile);$sheetData = http://stackoverflow.com/questions/12732094/$objPHPExcel->getActiveSheet()->toArray(null,true,true,true);//Regenerate array to remove alphabet from keys$newArray = array();foreach ($sheetData as $outerkey => $outer) { foreach ($outer as $key => $val) { $newArray[$outerkey][] = $val; }}$this->sheetData = $newArray;\[/code\]