mpdf cann't load on real host at $mpdf = new \Mpdf\Mpdf();

nitiphone2021

New member
According to i upload my mpdf to my real host on internet and try to print pdf out but i got fail at code below:

I dont't know why this code $mpdf = new \Mpdf\Mpdf(); cann't work it's print out only "01"
Code:
echo "0";
require_once __DIR__ . '/vendor/autoload.php';
echo "1";
$mpdf = new \Mpdf\Mpdf();
echo "2";
$mpdf->WriteHTML('Hello World');

$mpdf->Output('filename.pdf');
 
You need to turn on errors so you can see what's actually failing. The first section in my article will show you how to do that. That will point you in the right direction, or allow you to show us some more information and let us help you.
 
Back
Top