• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

cfprint drops pages

New Here ,
Feb 28, 2013 Feb 28, 2013

Copy link to clipboard

Copied

We are using cfprint to print pdf files to our network printers.

Some of our pdfs only print 8 pages and the others print all 14 or so pages.

They all print fine from acrobat reader.

This happens with all our networked printers.

Current Environment:

CF9 Enterprise

Win2008 R2

Any thoughts?

Thanks,

Ernie

Views

1.0K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Feb 28, 2013 Feb 28, 2013

Copy link to clipboard

Copied

Have you found any errors in the logs?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Mar 01, 2013 Mar 01, 2013

Copy link to clipboard

Copied

No errors are reported in the log files.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Mar 01, 2013 Mar 01, 2013

Copy link to clipboard

Copied

Kindly let me know following:-

  1. What attributes, you are using for this CFM page?
  2. Is this behavior occuring with either all pdf files or any specific pdf files?
  3. Post short running sample code so that i will also test this issue in my environment and will update you for same.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Mar 01, 2013 Mar 01, 2013

Copy link to clipboard

Copied

Just page 9 of this pdf file will not print.

If i print all the pages it stops at the end of the 8th page.

If i print just the 9th page the job does not even get sent to the printer.

<!-- Set printing defaults -->
<cfset attrib=StructNew()>
<cfset attrib["paper"]="Tray 3">
<cfset attrib["sides"]="two-sided-long-edge">

<cfset attrib["orientation"]="portrait">
<cfset attrib["finishings"]="staple-top-left">

<cfset attrib["color"]="no">
<cfset attrib["pages"]="#url.pages#">

<cfset attrib["jobName"]="Ernie#url.f#_#url.pages#">

Printing page <cfoutput>#url.pages#</cfoutput><br>

<cfflush>

<cfprint
     printer="HP Universal Printing PS"
     source="temp\#url.f#.pdf"
     copies="1"
     type="PDF"
     attributestruct="#attrib#">

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Mar 01, 2013 Mar 01, 2013

Copy link to clipboard

Copied

LATEST

Bad formatting from copy and paste from CF Studio 5

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation