こんにちは、私のウェブサイトに mybb をインストールしました。dompdf もインストールし、独自のディレクトリで動作します。つまり、"DOM"ディレクトリにインストールしました。これで、この単純なコードを使用して簡単に一般的な pdf を作成し、"DOM"ディレクトリに保存できます。
<?php
require_once "dompdf_config.inc.php";
//$file = "www/test/css_at_font_face.html";
$file="msf.html";
$dompdf = new DOMPDF();
$dompdf->load_html_file($file);
$dompdf->render();
$dompdf->stream("sample.pdf");
?>
ディレクターの外にある他のファイルにアクセスしようとすると、DOMつまり
load_html_file($ファイル); $dompdf->render(); $dompdf->stream("sample.pdf");
?> エラーが表示されるRemote file requested, but DOMPDF_ENABLE_REMOTE is false