captdriver icon indicating copy to clipboard operation
captdriver copied to clipboard

LBP3010 "CAPT: no pages in job"

Open ba-batz opened this issue 1 year ago • 3 comments

When trying to print something on my LBP3010 I get this error message: "CAPT: no pages in job"! What should I do, do you need more information?

ba-batz avatar Oct 17 '23 13:10 ba-batz

Got the same problem with LBP2900. Did work before though. Not sure what the issue is yet.

rsteube avatar Oct 25 '23 16:10 rsteube

This message may be the consequence of a cups-filters issue: https://github.com/OpenPrinting/cups-filters/issues/547

socialolive avatar Jan 13 '24 18:01 socialolive

After a bit of debugging, it appears the problem is provoked by the presence of -1 in my PPD file content !

I had the following lines:

*MaxMediaWidth: "-1"
*MaxMediaHeight: "-1"
...
*ParamCustomPageSize Width: 1 points -1 -1
*ParamCustomPageSize Height: 2 points -1 -1

But after a make ppd, those lines have been replaced with:

*MaxMediaWidth: "612"
*MaxMediaHeight: "1008.000061035156"
...
*ParamCustomPageSize Width: 1 points 216 612
*ParamCustomPageSize Height: 2 points 360 1008.000061035156

Note that in my case, this difference is related to the presence or not of the LC_ALL=C environment variable when calling ppdc. And on the Arch Linux AUR package for example, LC_ALL=C is missing.

Hope this could help !

socialolive avatar Jan 15 '24 15:01 socialolive