У меня есть проблема, когда я могу запросить более 4000 строк, проблема, которую я уже детализировал, здесь. Проблема заключается в том, что во время генерации строк, как это занимает некоторое время, я получаю ошибку «Не найдена страница». Что я могу сделать, чтобы преодолеть это?
$totalHeight1 = ceil($pdf->getStringHeight( 20,$eventMessage,$reseth = false, $autopadding = true,$cellpadding = '', $border = 1));
$totalHeight2 = ceil($pdf->getStringHeight( 15,$eventLocation,$reseth = false, $autopadding = true,$cellpadding = '', $border = 1));
if($totalHeight1>$totalHeight2)
$totalHeight = $totalHeight1;
else
$totalHeight = $totalHeight2;
$pdf->Cell(10, $totalHeight, $count, 1, 0, 'L', 0, '', 0);
$pdf->Cell(15, $totalHeight, $row['latitude'], 1, 0, 'L', 0, '', 0);
$pdf->Cell(16, $totalHeight, $row['longitude'], 1, 0, 'L', 0, '', 0);
$pdf->Cell(25, $totalHeight, $row['dateTimer'], 1, 0, 'L', 0, '', 0);
$pdf->Cell(25, $totalHeight, $row['dataInsertDateTime'], 1, 0, 'L', 0, '', 0);
$pdf->MultiCell(20, $totalHeight, $eventMessage, 1, 'L', 0, 0, '', '', true);
$pdf->Cell(15, $totalHeight, $eventSource, 1, 0, 'L', 0, '', 0);
$pdf->MultiCell(15, $totalHeight, $eventLocation, 1, 'L', 0, 0, '', '', true);
$pdf->Cell(15, $totalHeight, $row['stat'], 1, 0, 'L', 0, '', 0);
$pdf->Cell(10, $totalHeight, $row['speed'], 1, 1, 'L', 0, '', 0);