Prince xml を使用してテストするテスト ページを作成しましたが、このコードは機能していないようです。
index.php
require_once("prince.php");
$prince = new Prince('www1.must.edu.ph/tts/prince/Engine/bin/prince.exe');
$prince->setHTML(true);
$html = file_get_contents("reportHeader.html");
$ret = $prince->convert_string_to_file($html,'www1.must.edu.ph/tts/prince/Engine/bin/pink.pdf');
echo $html;
if($ret)
echo "converted";
else
echo "not";
ページにアクセスするたびに、エラーは発生しません.エコーされた $html と 'not' が表示されるだけです..