Is the pdf module being loaded on the linux machine ?
What is the error message (if any) that's displayed at the "create handle"
bit ?

Martin


-----Original Message-----
From: Floyd Baker [mailto:[EMAIL PROTECTED]
Sent: Thursday, 26 June 2003 10:32 AM
To: [EMAIL PROTECTED]
Subject: [PHP] pdf routine - good local / bad online



Hi.

I have a routine creating a pdf file.  Here is the script that works
on the win98 dev box.   But when I upload it to the linux online, it
does not work.

It stops at 'create handle'.  Can someone please tell me why?

// GET COMPANY INFO
   while($row = mysql_fetch_array($mysql_result)){
       $name1 = $row['name1'];
       $name2 = $row['name2'];
       $addr1 = $row['addr1'];
       $addr2 = $row['addr2'];
       $city = $row['city'];
       $stat = $row['stat'];
       $zipc = $row['zipc'];
       $phone = $row['phone'];}
    
// START PDF FILE
   unlink('f:/localhost/adobe/' . $cocode . '_info.pdf');  

// create handle for new PDF document
   pdf_delete($pdf);
   $pdf = pdf_new();

// open a file 
   pdf_open_file($pdf, 'f:/localhost/adobe/' . $cocode . '_info.pdf');


I do change the 'f:/localhost' to https://xx.xx.xx,xx when uploaded.

Any thoughts will be greatly appreciated...  TIA

Floyd



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to