A complex document can cause long rendering times and/or high memory
usage. Either of these can cause the script to error out before
completion if your server has low limits on script execution time or
memory usage. Errors returned by your script would indicate if either
of these are the problem. If you're not seeing any errors your php.ini
may have display_errors set to 0.
You can modify max_execution_time, memory_limit, and display_errors
using ini_set() <
http://www.php.net/ini-set>.
If upping the execution time limit and memory limit does not work then
your problem may be in the HTML. If you have TIDY installed you might
consider running your code through it before passing the HTML document
to DOMPDF. The HTML generated by Word can be pretty messy. I do this
on a site where I'm using fcke and it helps. Plus, it's easier to scan
the HTML for errors if need be.
Without knowing what errors are thrown or the HTML you're using
there's not much help we can provide specific to your problem.
Brian