I've been using php and htmldoc to convert html files to pdf. Until recently it was working without any problems. However, because of a project requirement I tried to use the script to convert a series of tables with 800 X 600 images. As long as I had less than ten images in the file it worked fine. However, any time I tried an html file with more than ten images nothing happened. No pdf file and no error messages. I tried increasing the max script time and memory usage in the php.ini but that didn't help. I have tried converting the file manually from the command line and it works fine.
The code looks something like this:
$options="options for htmldoc go here";
passthru("/home/dir/htmldoc $options myfile.html");
Any help would be greatly appreciated.
Luis