This instruction can be followed when you have problem with print jobs just seats in print queue and does not want to print or print after few hours. This problem has happened before with Whittard and Furniture court kingaroy customer site. Printing from windows is fine but when control try to print, it just seats in print queue and either takes long time to print or does not print at all. It happens to those print queue which does not use overlay and other stuff.

Try these options below before using the script solution.

Script Solution:

1. Copy the script below and put it in /etc/cups/interface. Give the same name for script as you use for print queue. Make sure it is executable.

#!/bin/bash

TEMP=/tmp/report_HO.$$ input=$TEMP.in output=$TEMP.out

if [ ! -z "$6" ]; then

else

fi

cat $infile > $input

filetype=/usr/bin/file $input

if [ "echo $filetype | grep PostScript" ]; then

else

fi

# For some reason, this printer insists on the PJL headers echo " ESC%-12345X@PJL JOB" echo @PJL SET HOLD=OFF echo @PJL ENTER LANGUAGE =PCL

# Print PCL data cat $output

# For some reason, this printer insists on the PJL footer echo "ESC%-12345X"

#rm -f $output

Print_jobs_hangs_or_stays_in_Print_Queue (last edited 2013-09-18 06:09:34 by localhost)