Dear All,
I have a problem where I can query more then 4000 lines the problem I already drill down is here. The problem is during the generation of the lines some how it takes some time then I get a not found page error. What can I do to over come this?
$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);