Which version of php are you using?
As Fabien said, dompdf does not change the error reporting level or use
mktime.
One possibility is that including dompdf causes line 589 of
sign_up_form.php to be called, and it is not called if dompdf is not
included. Removing the mktime() call would be the best solution. You can
also test the error_reporting level just before this line.
We would need to see some code to be able to offer any more help.
Best regards
John Bell
=========
On 16/9/12 16:56, Luke Stachowicz wrote:
> Thanks for the response. I understand what you're saying; however, if
> I comment out the dompdf include, the page works fine. Then if I
> change the name of the dompdf file to "ompdf" in the include
> misspelled on purpose, the page works fine but I get a warning that
> the file can't be found.
>
> This leads me to still think something included in the DOMPDF file is
> causing the (mktime) error I listed before.
>
> I'm not really sure how to overcome this error and use the DOMPDF....
>
> Thanks again.
>
> On Fri, Sep 14, 2012 at 2:17 AM, Fabien M�nager