mPDF不在实时服务器上生成pdf

I have met this issue, I have been working with mPDF very fine. But I had to switch my hosting server and it is no longer generating pdf but displays just the content without an error here is my code to generate the pdf. any help?

<?php  include("../../mpdf60/mpdf.php");
$mpdf=new mPDF('P','A4');   
$mpdf->SetDisplayMode('fullpage');  
// LOAD a stylesheet    
$stylesheet = file_get_contents('../../mpdf60/mpdfstyletables.css');
$mpdf->WriteHTML($stylesheet,1);    // The parameter 1 tells that this is css/style only and no body/html/text  
$report_content=ob_get_contents();  
$mpdf-> WriteHTML($report_content,2);
$mpdf-> Output('Students_Reports.pdf','I');?>

I have tried to display all errors and I fixed them but still it is not generating the pdf :(!