PDF Form becomes static when served via Apache \ Ubuntu
Do I need some special headers to tell the browser its a dynamic pdf?
It seems like a server side permissions issue but the pdf is loaded and I see the form, but I cannot click into any of the form fields so just not sure where its getting hung up and removing the ability to fill out the form.
Here is my code in CF that works just fine when served thru windows iis.
<cffile action="readbinary" file="#request.leadroot#/leadmanagement.pdf" variable="newpdf"><cfpdfform source="newpdf" action="populate"><cfpdfsubform name="form1">
<cfpdfformparam name="action" value="New"><cfpdfformparam name="opendate" value="#dateformat(now(),'mm/dd/yyyy')#"><cfpdfformparam name="owner" value="#session.username#"><cfpdfformparam name="submittercontact" value="#session.userfullname# | #session.useremail# | #session.userphone#"></cfpdfformparam></cfpdfformparam></cfpdfformparam></cfpdfformparam> </cfpdfsubform></cfpdfform></cffile>