I have installed tcpdf in the server. I have checked file for existence. In a javascript function I am calling print.php through ajax.
onclick = "savepdf();"
The javascript fuction (after initiating ajax) is:
function savepdf(){
    var html = 'This is a test page.';
    var parameters = "content="+html;
    ajaxRequest.open("POST", 'print.php', true);
    ajaxRequest.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
    ajaxRequest.onreadystatechange = function(){
        if(ajaxRequest.readyState == 4){
            alert('Success');
        }
    };
    ajaxRequest.send(parameters);
}
This is the print.php, which I have copied from its stock example.
<?php
    header("Content-Type: application/octet-stream");
    require_once('/tcpdf/tcpdf.php'); 
    $text = $_POST['content'];
    $pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
    $pdf->SetCreator(PDF_CREATOR);
    $pdf->SetAuthor('SOMEONE');
    $pdf->SetTitle('Report');
    $pdf->SetSubject('Report');
    $pdf->setPrintHeader(false);
    $pdf->setPrintFooter(false);
    $pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
    $pdf->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT);
    $pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
    $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
    $pdf->setFontSubsetting(true);
    $pdf->SetFont('dejavusans', '', 10, '', true);
    $pdf->AddPage();
    $html = $text;
    $pdf->writeHTML($html, true, false, true, false, '');
    $pdf->Output($_SERVER['DOCUMENT_ROOT'] . '/temp/output.pdf', 'F');
    $file = $_SERVER['DOCUMENT_ROOT'] . '/temp/output.pdf';
    header('Content-Disposition: attachment; filename="'.$file.'"');
    header('Content-Length: ' . filesize($file));
    header("Cache-control: private"); //use this to open files directly                     
    readfile($file);
?>
The file is physically saved on the server, but doesn't download. How do I troubleshoot?
 
     
     
    