We have some pretty simple CF8 code, to merge individual PDFs into a single 
document:

<cfdirectory action="list"
        directory="#Application.PdfDir#"
        filter="#Attributes.RunId#*.pdf"
        sort="asc"
        name="pdfList"
/>

<cfif pdfList.RecordCount >
        <cfpdf action="merge" 
destination="#Application.PdfDir#\merged_#Attributes.RunId#.pdf" 
overwrite="yes">
                <cfloop query="pdfList">
                        <cfpdfparam source="#Application.PdfDir#\#name#" >
                </cfloop>
        </cfpdf>
</cfif>

This code has been working fine for months, until last night, when it has 
started giving the message: "could not find %%EOF"


Anyone have any idea what might be causing this, and how to fix it?


Thanks,

Peter 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329887
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to