Ben aşağıda kodu http500 alıyorum, ben yanlış ne olduğundan emin değilim. Ben php yeni duyuyorum. Ben PDF.php sağ dizinde olduğunu kontrol ettikten ve böylece yazı tipleri yok
<?php
define('FPDF_FONTPATH','/home/php/File/PDF/fonts/');
require('/home/php/File/PDF.php');
$pdf=new FPDF('P', 'mm', array(100,150));
$pdf->AddPage();
$pdf->SetFont('times');
$pdf->Cell(40,10,'Hello World!');
$pdf->Output("ruchit.pdf", D);
?>