I keep getting the following error on a line of the funciton below function marketingoutput($top, $pdf){ $z=0; $currentline=$top-$this->standardboxheight; while ($z<$this->zarrayofboxes){ $tempbox2=$this->arrayofboxes[$z]; $tempbox=unserialize($tempbox2); pdf_set_font($pdf, "Arial", 10, "host"); /////////////////////THIS IS WHERE I KEEP GETTIN THE ERROR AT pdf_set_value($pdf, "textrendering", 1); pdf_show_boxed($pdf, $tempbox->title.":", 36, $currentline, 100, $this->standardboxheight, "justify"); pdf_set_font($pdf, "Arial", 8, "host"); pdf_set_value($pdf, "textrendering", 1); pdf_show_boxed($pdf, $tempbox->info, 136, $currentline, 404, $this->standardboxheight, "justify"); $z++; $currentline=$currentline-$this->standardboxheight; } } Fatal error: Internal pdflib error: Resource configuration file 'pdflib.upr' not found in c:\Inetpub\wwwroot/test/marketing/Printing.php on line 88 Anyone have any ideas what to fix on this. This function is just to print out a portion of a report. Ryan -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]