"Client error not found" = DOOOOOOOOMMMMMM!!!!!!!

Ok been getting this a lot recently and I think it is to do with my printer setup script. There must be a way to fix it, but for the life of me I can not find the solution.
It usually starts with all printers on the system being paused. You can unpause them, but as soon as you try print they automatically pause again.
You can reset the print system, but when you try readd a printer you get the message of doom "client-error-not-found".
From then on I can not add any printer to the system and the only fix is a wipe and reinstall.
I mentioned above that I use a printer script to install the 10+ printers in the office onto the 80+ machines. All the machines are running 10.5 and upto date.
I have put the script to have a look at, but even if it is causing the problem there should be a way to fix the issue.
#Reset print system.
do shell script "lpstat -p | cut -d' ' -f2 | xargs -I{} lpadmin -x {}" with administrator privileges
#log onto the server and mounts the IT_support folder. If the IT_support folder is already mounted it will skip the mount and move on.
if {"IT_support"} is not in paragraphs of (do shell script "/bin/ls /Volumes") then
mount volume "afp://192.168.1.251/IT_support"
end if
do shell script "cp -frv /Volumes/ITsupport/01_Mac/04Printers/PrinterAutoInstall/drivers/* /Library/printers/PPDs/Contents/Resources/" with administrator privileges
#Add the printers to the system.
#Colour Printers.
#Colour_Printroom Appletalk.
do shell script "lpadmin -p Colour_PrintRoom -L FirstFloorPrintRoom -E -v pap://*/Colour_PrintRoom/LaserWriter -P /Library/printers/PPDs/Contents/Resources/xrx7655.ppd -o printer-is-shared=false" with administrator privileges
#Colour_Kitchen Appletalk.
do shell script "lpadmin -p Colour_Kitchen -L First\\ Floor\\ Kitchen -E -v pap://*/DC3535_DC3535Print/LaserWriter -P /Library/printers/PPDs/Contents/Resources/Xerox\\ DocuColor3535\\ PS -o printer-is-shared=false" with administrator privileges
#BizHub Appletalk.
do shell script "lpadmin -p Colour_BizHub -L Colour_BizHub -E -vpap://*/X3eBizhub45035C-KMPrint/LaserWriter -P /Library/printers/PPDs/Contents/Resources/en.lproj/Fiery\\ X3eTY\\ 35C-KM\\ PS\\ v2.01\\ eu -o printer-is-shared=false" with administrator privileges
#Admin Printers.
#Reception Bonjour.
do shell script "lpadmin -p Reception -L Ground\\ Floor\\ Reception -E -v mdns://Reception%20%2892%3A1b%3A58%29.pdl-datastream.tcp.local./?bidi -P /Library/printers/PPDs/Contents/Resources/Xerox\\ Phaser\\ 4500DT.gz -o printer-is-shared=false" with administrator privileges
#A3_Northside Bonjour.
do shell script "lpadmin -p A3_Northside -L First\\ Floor\\ North\\ Side -E -v mdns://A3Northside._pdl-datastream.tcp.local./?bidi -P /Library/printers/PPDs/Contents/Resources/Xerox\\ Phaser\\ 5500DN.gz -o printer-is-shared=false" with administrator privileges
#A3_Southside Bonjour.
do shell script "lpadmin -p A3_Southside -L First\\ Floor\\ South\\ Side -E -v mdns://A3Southside._pdl-datastream.tcp.local./?bidi -P /Library/printers/PPDs/Contents/Resources/Xerox\\ Phaser\\ 5500DN.gz -o printer-is-shared=false" with administrator privileges
#Studio3_Admin Bonjour.
do shell script "lpadmin -p Studio3_Admin -L First\\ Floor\\ Studio\\ 4 -E -v mdns://Studio3Admin._pdl-datastream.tcp.local./?bidi -P /Library/printers/PPDs/Contents/Resources/Xerox\\ Phaser\\ 4510DT.gz -o printer-is-shared=false" with administrator privileges
#Studio1_Admin Bonjour.
do shell script "lpadmin -p Studio1_Admin -L First\\ Floor\\ Studio\\ 1 -E -v mdns://Studio1Admin%20%2892%3A41%3Af6%29._pdl-datastream.tcp.local./?bidi -P /Library/printers/PPDs/Contents/Resources/Xerox\\ Phaser\\ 4500DT.gz -o printer-is-shared=false" with administrator privileges
#Studio3_A3 Bonjour.
do shell script "lpadmin -p Studio3_A3 -L First\\ Floor\\ Studio\\ 4 -E -v mdns://Studio3A3._printer.tcp.local. -P /Library/printers/PPDs/Contents/Resources/HP\\ LaserJet\\ 5100\\ Series.gz -o printer-is-shared=false" with administrator privileges
#Plotters.
#PlotterDeathstarHP4500ps Bonjour.
do shell script "lpadmin -p PlotterDeathStarHP4500ps -L First\\ Floor\\ Print\\ Room -E -v mdns://PlotterDeathstar_HP4500ps._printer.tcp.local. -P /Library/printers/PPDs/Contents/Resources/HP\\ Designjet\\ 4500\\ PS3.gz -o printer-is-shared=false" with administrator privileges
#PlotterPosterEpson7600 Bonjour.
do shell script "lpadmin -p PlotterPosterEpson7600 -L First\\ Floor\\ Print\\ Room -E -v mdns://PlotterPosterEpson7600.printer.tcp.local. -P /Library/printers/PPDs/Contents/Resources/en.lproj/stp-escp2-7600.5.2.ppd.gz -o printer-is-shared=false" with administrator privileges
#Copy a fresh copy of the printer driver settings back onto the system after the printers have been installed. driver settings are stored in /etc/cups/PPD admin rights required to copy files into this folder
do shell script "cp -fRv /Volumes/ITsupport/01_Mac/04Printers/PrinterAutoInstall/ppd/* /etc/cups/PPD" with administrator privileges
#Copy printer presets on to system.
do shell script "cp -frv /Volumes/ITsupport/01_Mac/04Printers/PrinterAutoInstall/presets/* /Library/Preferences" with administrator privileges
#The following printer is added into the system speratly due to a driver selection issue when adding more than one Xerox Phaser 4510DT. The system seems to apply the correct driver to the first one that is added to the system. The second Xerox Phaser 4510DT does not get the correct driver applied to it.
#Studio2_Admin Bonjour.
do shell script "lpadmin -p Studio2_Admin -L First\\ Floor\\ Studio\\ 2 -E -v mdns://Studio2Admin._pdl-datastream.tcp.local./?bidi -P /Library/printers/PPDs/Contents/Resources/Xerox\\ Phaser\\ 4510DT.gz -o printer-is-shared=false" with administrator privileges
#Copy printer presets on to system.
do shell script "cp -frv /Volumes/ITsupport/01_Mac/04Printers/PrinterAutoInstall/presets/* /Library/Preferences"
do shell script "cp -fRv /Volumes/ITsupport/01_Mac/04_Printers/PrinterAutoInstall/ppd/Studio2Admin.ppd /etc/cups/PPD/" with administrator privileges
#Reset file permissions
do shell script "chmod 664 /Library/Printers/PPDs/Contents/Resources/*" with administrator privileges

Well, I succeeded in solving the problem by myself ...
The problem was a local .cupsrc file containing some apparently wrong settings. Removing this file solved the problem ...

Similar Messages

  • Can't delete printer - client-error-not-found

    After messing around with the installation of a cups based network printer (via a local Suse server) I came across some strange problems with my printer setup utility. Currently, I can neither delete nor add a printer from the list for the current user. When trying to delete a previously installed network printer I get an error message that the printer could not be removed (client-error-not-found). When trying to add a new printer I won't get an error message, but the printer is not being added to the list anyhow.
    I already tried to reset the printing system both with the printer setup utility and with the Printer Setup Repair Tool from Fixamac, both without success.
    I have to note that for user root everything works fine!
    Any suggestions?
    Wolfgang
    MacBook Pro   Mac OS X (10.4.8)  

    Well, I succeeded in solving the problem by myself ...
    The problem was a local .cupsrc file containing some apparently wrong settings. Removing this file solved the problem ...

  • Provider com.sun.xml.rpc.client.ServiceFactoryImpl not found

    I'm working on a Java Aplication and when I run the Application with Jdeveloper 11 I get this error
    javax.xml.rpc.ServiceException: Provider com.sun.xml.rpc.client.ServiceFactoryImpl not found
    When I run the Application with Jdeveloper 10.1.3 and it's works fine.
    What is the cause?
    thanks

    You may wish to compare the jar files referenced in both versions of JDeveloper, I did a quick Google search and found the following page which lists the .jar files that contain this class:
    http://javacio.us/search?q=com%2Fsun%2Fxml%2Frpc%2Fclient%2FServiceFactoryImpl+more%3Ajar_files&inline=true
    Hope this helps,
    Sean

  • I cannot log into facebook. I get the following message: 404 Error - Not Found The resource you have requested could not be found on the server. There are many possible reasons for this. Either the file does not exist, there is an error in your request,

    I am not able to go to the facebook site. www.facebook.com is not working. I get the following error message. 404 Error - Not Found
    The resource you have requested could not be found on the server. There are many possible reasons for this. Either the file does not exist, there is an error in your request, or the file is not accessible in the requested directory. Please verify that:
    * You have used the proper case; requests ARE case-sensitive!
    * You have entered the URL correctly. (i.e. proper directory/filename)
    * You used the FULL URL. (i.e. proper file type: .html, .gif , .jpg, etc.)
    * You use a tilde (~) before user directories. (i.e. www.furcen.org/~jurann/ )
    * The user/file still exists on this server.
    I also get redirected to "Busca Google" when typing www.facebook.com in the address bar.
    == URL of affected sites ==
    http://facebook.com; buscagoogle.com

    I have the same problem and it does not have to do with firefox. Do you have any idea how to fix it through?

  • Error: Not Found Error: Out of Memory

    Hello,
    I'm trying to use a few photoshop files in Final Cut Pro 7.0.3 and I can't seem to shake these error messages.
    I've never had trouble using Photoshop files in the past but these ones are being uncooporative.
    I've imported the .psd file and edited it into the sequence.  The sequence setting match the clip settings.  Then I've added the "Page Peel" Transition to the edit point.  Immediately the canvas goes red and says something like "close and open window to restore preview."  After this I try to play the sequence and it says "Error: Not Found."  After closing and reopening the sequence my attempts to play back my work result in the error "Error: Not Found" followed immediately by "Out of Memory."
    I opened activity monitor to try and see if I was running out of ram space and I've got loads left.  I also have plenty of room on the hard disk I'm working from.
    Any thoughts?
    Thanks,
    Ryan

    Check your PSD documents, make sure they are RGB 8 Bits/Channel.
    MtD

  • WCF Error: The remote server returned an error: Not Found

    I have a windows phone8 app that utilizes a azure WCF service. I added the Servicereference to my project,when i call the service method it executes fine but getting the following error after executing:
    System.ServiceModel.CommunicationException: The remote server returned an error: Not Found
    Here's the code where my error's occuring (the error occurs on the 2nd line of code within the method(the line that contains "_result =
    public string EndSendMessage(System.IAsyncResult result) {
                    object[] _args = new object[0];
                    string _result = ((string)(base.EndInvoke("SendMessage", _args, result)));
                    return _result;
    Any idea why this is happening?
    Thanks.

    Hi Narendramacha,
    It may be have more than one possibility reasons. Did you try the service URL in the phone/emulator Internet Explorer to be sure the url is accessible ? About this error, I found some solutions , please refer to :
    1.maxStringContentLength: http://stackoverflow.com/a/5185678
    2.FireWall: http://stackoverflow.com/a/15594388
    Please try it. Any results, please let me know.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Tasklist ERROR: Not Found

    Hey all,
    So I have a Windows 2008 server (32 Bit) and I'm trying to run Tasklist from the command prompt.  When I do so, I recieve the "ERROR: Not Found" error.  If I run it with the "?" flag then I do get the help file.  I have done some searching
    but haven't found any solutions that work.
    I just finished running a check disk, which was the last option that I saw.  I also restored the files from a different server that is working but it still isn't.  I have reviewed my eventlogs but don't see any that might be associated with this
    issue. 
    I just don't know where to go from here.  Any suggestions??
    Thanks...

    Hi,
    > So I have a Windows 2008 server (32 Bit) and I'm trying to run Tasklist from the command prompt. When I
    > do so, I recieve the "ERROR: Not Found" error
    Which user context did you run command prompt, administrator or normal users? Have you tried to run it with elevated command prompt?
    Since you run Windows 2008 Server, you can find tasklist.exe in location “%windir%\system32\tasklist.exe”
    Run command prompt with elevated privilege, and change command execute path to “%windir%\system32\”, then run tasklist.exe and check the result.
    Also please check whether you can run “taskkill.exe” command?
    Test that and give us feedback for further troubleshooting.
    For more information please refer to following MS articles:
    Tasklist
    http://technet.microsoft.com/en-us/library/bb491010.aspx
    Cannot Use Tasklist.exe Error: Not Found
    http://social.technet.microsoft.com/Forums/en-US/winservergen/thread/5da0e28e-24fb-4223-a548-372623f9b723
    Hope this helps!
    TechNet Subscriber Support
    If you are
    TechNet Subscription user and have any feedback on our support quality, please send your feedback
    here.
    Lawrence
    TechNet Community Support

  • Error Not Found(404)

    Hi All,
    I Have created a setup package for mobile 2005 device.I am able to download DB2e but when i click on the application link i m getting the following error messgae.
    Error Not Found(404)
    Original request:/zapp/start
    Not Found Request:/zapp/start
    Does anyone has idea why its happening.Please suggest
    Thanks
    Regards
    Devendra Phate

    Hi Devendra,
    It looks like that you have deployed the DB2e as an application. You shoud deploy is as an add-on. Undeploy and proceed as described in the OSS note 889257 for how to install and deploy DB2e
    Link (https://websmp208.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=0000889257&nlang=E)
    Regards
    Jacob Wesenberg

  • CUPS error: client-error-not-authorized

    Hello,
    some days ago I followed the wiki and installed a printer (HP Laserjet 1020) that uses the driver foo2zjs (from AUR). It didn't print anything in the beginning, but after blacklisting usblp module it printed a Test Page. Believing that everything was working fine, I unfortunately did not try to print any other document to check it.
    Now, trying to print a document for the first time, the printer simply prints nothing, and the log file shows this error message: client-error-not-authorized.
    There's no network here and the printer is connected directly to the computer. Both the regular and root users are included in the lp group. The hostname from /etc/hosts is localhost.
    Here is a copy of cupsd.conf in case it may be helpful:
    /etc/cups/cupsd.conf
    # "$Id: cupsd.conf.in 9407 2010-12-09 21:24:51Z mike $"
    # Sample configuration file for the CUPS scheduler. See "man cupsd.conf" for a
    # complete description of this file.
    # Log general information in error_log - change "warn" to "debug"
    # for troubleshooting...
    LogLevel warn
    # Administrator user group...
    SystemGroup sys root
    # Only listen for connections from the local machine.
    Listen localhost:631
    Listen /var/run/cups/cups.sock
    # Show shared printers on the local network.
    Browsing On
    BrowseOrder allow,deny
    BrowseAllow all
    BrowseLocalProtocols CUPS dnssd
    # Default authentication type, when authentication is required...
    DefaultAuthType Basic
    # Web interface setting...
    WebInterface Yes
    # Restrict access to the server...
    <Location />
    Order allow,deny
    Allow localhost
    Allow all
    </Location>
    # Restrict access to the admin pages...
    <Location /admin>
    Order allow,deny
    Allow localhost
    Allow all
    </Location>
    # Restrict access to configuration files...
    <Location /admin/conf>
    AuthType Default
    Require user @SYSTEM
    Order allow,deny
    Allow localhost
    </Location>
    # Set the default printer/job policies...
    <Policy default>
    # Job/subscription privacy...
    JobPrivateAccess default
    JobPrivateValues default
    SubscriptionPrivateAccess default
    SubscriptionPrivateValues default
    # Job-related operations must be done by the owner or an administrator...
    <Limit Create-Job Print-Job Print-URI Validate-Job>
    Order deny,allow
    </Limit>
    <Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
    Require user @OWNER @SYSTEM
    Order deny,allow
    </Limit>
    # All administration operations require an administrator to authenticate...
    <Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default CUPS-Get-Devices>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
    </Limit>
    # All printer operations require a printer operator to authenticate...
    <Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
    </Limit>
    # Only the owner or an administrator can cancel or authenticate a job...
    <Limit Cancel-Job CUPS-Authenticate-Job>
    Require user @OWNER @SYSTEM
    Order deny,allow
    </Limit>
    <Limit All>
    Order deny,allow
    </Limit>
    </Policy>
    # Set the authenticated printer/job policies...
    <Policy authenticated>
    # Job/subscription privacy...
    JobPrivateAccess default
    JobPrivateValues default
    SubscriptionPrivateAccess default
    SubscriptionPrivateValues default
    # Job-related operations must be done by the owner or an administrator...
    <Limit Create-Job Print-Job Print-URI Validate-Job>
    AuthType Default
    Order deny,allow
    </Limit>
    <Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
    AuthType Default
    Require user @OWNER @SYSTEM
    Order deny,allow
    </Limit>
    # All administration operations require an administrator to authenticate...
    <Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
    </Limit>
    # All printer operations require a printer operator to authenticate...
    <Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
    </Limit>
    # Only the owner or an administrator can cancel or authenticate a job...
    <Limit Cancel-Job CUPS-Authenticate-Job>
    AuthType Default
    Require user @OWNER @SYSTEM
    Order deny,allow
    </Limit>
    <Limit All>
    Order deny,allow
    </Limit>
    </Policy>
    # End of "$Id: cupsd.conf.in 9407 2010-12-09 21:24:51Z mike $".
    The only change that I made to the file was *allowing* some things (trying to fix it), but nothing happened.
    And here is the CUPS error log after trying to print many times:
    localhost:631/admin/log/error_log
    E [23/Feb/2012:00:58:33 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:00:58:41 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:00:58:51 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:11:45 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:13:17 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:17:32 -0200] Returning IPP client-error-not-authorized for Create-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:17:41 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:17:51 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:18:00 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:21:57 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:22:22 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:23:04 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:23:04 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:23:13 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:23:28 -0200] Returning IPP client-error-not-authorized for Create-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:23:31 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:28:14 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:33:44 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    If you need any more details please ask!
    Any help would be very useful!
    Thanks!

    Hello,
    some days ago I followed the wiki and installed a printer (HP Laserjet 1020) that uses the driver foo2zjs (from AUR). It didn't print anything in the beginning, but after blacklisting usblp module it printed a Test Page. Believing that everything was working fine, I unfortunately did not try to print any other document to check it.
    Now, trying to print a document for the first time, the printer simply prints nothing, and the log file shows this error message: client-error-not-authorized.
    There's no network here and the printer is connected directly to the computer. Both the regular and root users are included in the lp group. The hostname from /etc/hosts is localhost.
    Here is a copy of cupsd.conf in case it may be helpful:
    /etc/cups/cupsd.conf
    # "$Id: cupsd.conf.in 9407 2010-12-09 21:24:51Z mike $"
    # Sample configuration file for the CUPS scheduler. See "man cupsd.conf" for a
    # complete description of this file.
    # Log general information in error_log - change "warn" to "debug"
    # for troubleshooting...
    LogLevel warn
    # Administrator user group...
    SystemGroup sys root
    # Only listen for connections from the local machine.
    Listen localhost:631
    Listen /var/run/cups/cups.sock
    # Show shared printers on the local network.
    Browsing On
    BrowseOrder allow,deny
    BrowseAllow all
    BrowseLocalProtocols CUPS dnssd
    # Default authentication type, when authentication is required...
    DefaultAuthType Basic
    # Web interface setting...
    WebInterface Yes
    # Restrict access to the server...
    <Location />
    Order allow,deny
    Allow localhost
    Allow all
    </Location>
    # Restrict access to the admin pages...
    <Location /admin>
    Order allow,deny
    Allow localhost
    Allow all
    </Location>
    # Restrict access to configuration files...
    <Location /admin/conf>
    AuthType Default
    Require user @SYSTEM
    Order allow,deny
    Allow localhost
    </Location>
    # Set the default printer/job policies...
    <Policy default>
    # Job/subscription privacy...
    JobPrivateAccess default
    JobPrivateValues default
    SubscriptionPrivateAccess default
    SubscriptionPrivateValues default
    # Job-related operations must be done by the owner or an administrator...
    <Limit Create-Job Print-Job Print-URI Validate-Job>
    Order deny,allow
    </Limit>
    <Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
    Require user @OWNER @SYSTEM
    Order deny,allow
    </Limit>
    # All administration operations require an administrator to authenticate...
    <Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default CUPS-Get-Devices>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
    </Limit>
    # All printer operations require a printer operator to authenticate...
    <Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
    </Limit>
    # Only the owner or an administrator can cancel or authenticate a job...
    <Limit Cancel-Job CUPS-Authenticate-Job>
    Require user @OWNER @SYSTEM
    Order deny,allow
    </Limit>
    <Limit All>
    Order deny,allow
    </Limit>
    </Policy>
    # Set the authenticated printer/job policies...
    <Policy authenticated>
    # Job/subscription privacy...
    JobPrivateAccess default
    JobPrivateValues default
    SubscriptionPrivateAccess default
    SubscriptionPrivateValues default
    # Job-related operations must be done by the owner or an administrator...
    <Limit Create-Job Print-Job Print-URI Validate-Job>
    AuthType Default
    Order deny,allow
    </Limit>
    <Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
    AuthType Default
    Require user @OWNER @SYSTEM
    Order deny,allow
    </Limit>
    # All administration operations require an administrator to authenticate...
    <Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
    </Limit>
    # All printer operations require a printer operator to authenticate...
    <Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
    </Limit>
    # Only the owner or an administrator can cancel or authenticate a job...
    <Limit Cancel-Job CUPS-Authenticate-Job>
    AuthType Default
    Require user @OWNER @SYSTEM
    Order deny,allow
    </Limit>
    <Limit All>
    Order deny,allow
    </Limit>
    </Policy>
    # End of "$Id: cupsd.conf.in 9407 2010-12-09 21:24:51Z mike $".
    The only change that I made to the file was *allowing* some things (trying to fix it), but nothing happened.
    And here is the CUPS error log after trying to print many times:
    localhost:631/admin/log/error_log
    E [23/Feb/2012:00:58:33 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:00:58:41 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:00:58:51 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:11:45 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:13:17 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:17:32 -0200] Returning IPP client-error-not-authorized for Create-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:17:41 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:17:51 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:18:00 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:21:57 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:22:22 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:23:04 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:23:04 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:23:13 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:23:28 -0200] Returning IPP client-error-not-authorized for Create-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:23:31 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:28:14 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    E [23/Feb/2012:01:33:44 -0200] Returning IPP client-error-not-authorized for Print-Job (ipp://localhost:631/printers/HP_LaserJet_1020) from localhost
    If you need any more details please ask!
    Any help would be very useful!
    Thanks!

  • HP 5650 Desk jet + OS 10.5: "Client-Error-Not-Possible"

    I can no longer print on my hp desk jet 5650. The printer hangs up and displays the message "client-error-not-possible." (An older desk jet 950 works fine.)
    If I open up the hp printer utility and test the printer it works fine. However, it won't work with any other application. There aren't any updated print drivers for this hp, and I think the problem is probably with one of the Apple updates to OS 10.5.
    Does anyone have a solution?

    Hello gc:
    Try a couple of things (my HP printer works fine, but it is a different model).
    Download the OS X 10.5.7 combo update and apply it.
    Delete the offending printer and then reinstall it.
    On a parallel track, contact HP tech support. I have had good success in the past and there may be a workaround or something else they can suggest.
    Barry

  • [SOLVED] rEFInd -- Error: Not Found while loading vmlinuz-linux

    System Info:
    3.14.1-1-ARCH
    refind-efi-0.7.8-1
    Problem: rEFInd does not boot arch linux.
    When booting the machine, rEFInd's gui selection menu presents options for windows or linux.
    Upon selecting linux, the following is displayed:
    rEFInd - Booting OS
    Starting vmlinuz-linux
    Using load options 'ro root=UUID=bd6b3352-1b79-4c70-a061-21ff87ff0772 initrd=\boot\initramfs-linux.img'
    Invalid loader file!
    Error: Not Found while loading vmlinuz-linux
    * Hit any key to continue *
    Below are the outputs of blkid, lsblk -f, the structure of /boot and cats of /boot/efi/EFI/refind/refind.conf and /boot/refind_linux.conf
    blkid
    /dev/sda1: UUID="2014-05-01-05-20-54-00" LABEL="ARCH_201405" TYPE="iso9660" PTUUID="1535e446" PTTYPE="dos" PARTUUID="1535e446-01"
    /dev/sda2: SEC_TYPE="msdos" LABEL="ARCHISO_EFI" UUID="96ED-5DA9" TYPE="vfat" PARTUUID="1535e446-02"
    /dev/sdb1: LABEL="Recovery" UUID="E63202B832028E2D" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="e3729f62-9c32-4ac9-a9dd-56a9c073e7e5"
    /dev/sdb2: UUID="9C03-552D" TYPE="vfat" PARTLABEL="EFI system partition" PARTUUID="9bcdb083-82e9-49e6-b03d-fd376585d633"
    /dev/sdb4: UUID="B2161962161928BD" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="6de10de9-3322-486c-8108-bf14f5a7bcb6"
    /dev/sdb5: UUID="bd6b3352-1b79-4c70-a061-21ff87ff0772" TYPE="ext4" PARTLABEL="root" PARTUUID="699115b1-1413-42b3-9fd7-a80a8a51b6fa"
    /dev/sdb6: UUID="e71e6a25-913a-4932-9fc9-81942a5dab2e" TYPE="ext4" PARTLABEL="home" PARTUUID="1fc33e24-4c26-459c-a80a-9440e1f4e683"
    /dev/loop0: TYPE="squashfs"
    /dev/loop1: UUID="f07bfb26-3377-487a-a022-efd840614a0d" TYPE="ext4"
    /dev/loop2: UUID="f07bfb26-3377-487a-a022-efd840614a0d" TYPE="ext4"
    /dev/mapper/arch_root-image: UUID="f07bfb26-3377-487a-a022-efd840614a0d" TYPE="ext4"
    /dev/sdb3: PARTLABEL="Microsoft reserved partition" PARTUUID="fa94c812-e1ff-4603-ba97-be7f155f12c8"
    lsblk -f
    NAME FSTYPE LABEL UUID MOUNTPOINT
    sdb
    ├─sdb1
    ├─sdb2 /boot/efi
    ├─sdb3
    ├─sdb4
    ├─sdb5 /
    └─sdb6 /home
    sdc
    ├─sdc1
    └─sdc2
    loop0
    loop1
    └─arch_root-image /etc/resolv.conf
    loop2
    └─arch_root-image /etc/resolv.conf
    Structure of /boot
    *note: /boot is really the original microsoft efi system partition (in my case, /dev/sda2) that I mounted to /boot/efi and whose structure is shown below:
    /boot
    ├── efi
    │ ├── EFI
    │ │ ├── Boot
    │ │ │ └── bootx64.efi
    │ │ ├── Microsoft
    │ │ │ └── Boot
    │ │ │ ├── BCD
    │ │ │ ├── BCD.LOG
    │ │ │ ├── BCD.LOG1
    │ │ │ ├── BCD.LOG2
    │ │ │ ├── bg-BG
    │ │ │ │ ├── bootmgfw.efi.mui
    │ │ │ │ └── bootmgr.efi.mui
    │ │ │ ├── bootmgfw.efi
    │ │ │ ├── bootmgr.efi
    │ │ │ ├── BOOTSTAT.DAT
    │ │ │ ├── boot.stl
    │ │ │ ├── en-US
    │ │ │ │ ├── bootmgfw.efi.mui
    │ │ │ │ ├── bootmgr.efi.mui
    │ │ │ │ └── memtest.efi.mui
    │ │ │ ├── Fonts
    │ │ │ │ ├── {{FONTS REMOVED FOR BREVITY}}
    │ │ │ ├── Resources
    │ │ │ │ ├── bootres.dll
    │ │ │ │ └── en-US
    │ │ │ │ └── bootres.dll.mui
    │ │ ├── refind
    │ │ │ ├── drivers_x64
    │ │ │ │ └── ext4_x64.efi
    │ │ │ ├── icons
    │ │ │ │ ├── {{ICONS REMOVED FOR BREVITY}}
    │ │ │ ├── keys
    │ │ │ │ ├── altlinux.cer
    │ │ │ │ ├── canonical-uefi-ca.der
    │ │ │ │ ├── fedora-ca.cer
    │ │ │ │ ├── openSUSE-UEFI-CA-Certificate.cer
    │ │ │ │ ├── refind.cer
    │ │ │ │ └── SLES-UEFI-CA-Certificate.cer
    │ │ │ ├── refind.conf <=================== http://ix.io/cFy
    │ │ │ └── refind_x64.efi
    │ │ └── tools
    │ ├── initramfs-linux-fallback.img
    │ ├── initramfs-linux.img
    │ └── vmlinuz-linux
    └── refind_linux.conf <===================== http://ix.io/cFw
    49 directories, 190 files
    Excerpt of /boot/efi/EFI/refind/refind.conf
    (full file available here: http://ix.io/cFy)
    menuentry Linux {
    icon EFI/refind/icons/os_arch.icns
    volume "EFI system partition"
    loader /boot/vmlinuz-linux
    initrd /boot/initramfs-linux.img
    options "ro root=UUID=bd6b3352-1b79-4c70-a061-21ff87ff0772"
    cat /boot/refind_linux.conf
    "Boot with standard options" "ro root=UUID=bd6b3352-1b79-4c70-a061-21ff87ff0772 "
    "Boot to single-user mode" "ro root=UUID=bd6b3352-1b79-4c70-a061-21ff87ff0772 single"
    "Boot with minimal options" "ro root=UUID=bd6b3352-1b79-4c70-a061-21ff87ff0772"
    Last edited by dk0r (2014-05-28 01:36:16)

    A couple of things that are important:
    refind_linux.conf should be in the same directory as vmlinuz-linux and the initrd so it should be in /boot/ since that is where your kernel is.
    In your refind.conf stanza you have the line volume "EFI system partition" which tells rEFInd that the loader is in that partition whereas the kernel and initrd files seem to be in /boot/ which is not the EFI System Partition. Hence the volume line needs to specify the filesystem where /boot is which in your case appears to be /dev/sdb5 so the volume line in that case should be volume "root" since root is the filesystem label for sdb5? Note that if you update to rEFInd version 0.8.0 or later then you can use the partuuid value to specify the volume but in the version you are using that token for the volume was not yet implemented.
    In the stanza you quoted there was no terminating } but maybe you just didn't copy it to your post.
    Making these changes may let the system boot to the arch kernel.
    Last edited by mcloaked (2014-05-27 20:21:16)

  • Mac Client Certificate not found

    Hey all, i'm trying to install the ConfigMgr client on a mac system. The site is 2012 SP1 RTM however since there is no release yet of the mac client i'm using the mac client install from the SP1 beta install folder (Suggested by Microsoft)
    I followed the instructions on how to install clients on mac computer from technet. Everything from the install and the enrollment seems to complete fine no errors. After the enrollment when I open System Preferences > Configuration Manager it says "Certificate
    not found" If i check the ccmclient log file on the mac it shows the following errors
    Failed to Parse MgmtAuthority ServerList
    Failed to get server list
    Failed to GetProperty Mode from Configuration Provider : 80070490
    Requested certificates not available in store
    Certificate not found in store. Bailing out!
    Failed to validate certificate
    The certificate shows up under system in the keychain, the only strange thing is it shows for name the user who enrolled in the certificate. I figured it should have showed the system name. The root ca is also there. Any help would be appreciated, thanks

    Okay so figured this out, and i'll post in case this happens to someone else. The certificate will always show under the keychain with a name of whoever the user was that did the enrollment. So if you used Joe Smith, then the certificate will be called
    Joe Smith. In my case the account I used to enroll had a active directory display name of two words such as "Joe Smith" Because of this space in between, configuration manager client kept listing the certificate as "Joe". I was then realized that indeed just
    like the error said the certificate could not be found because its looking for Joe and the the certificate says Joe Smith. The fix was instead do the enrollment with a normal account with no spacing in the name. This may be a bug or Microsoft may not recommend
    creating AD accounts with display names with spaces.

  • Operation could not be completed. client error not possible.

    I have a mac mini running OS10.5.8. All of a sudden I can not print with my HP1315v all in one printer. I can print a test but that is all. I get this message. "Operation could not be completed, Client error no possible". I re-installed the HP software but that didn't help. I ran a permissions repair with Disk Untilities but that didn't correct the problem. Any help would be appreciated. :-) Dave

    I can't help, because I'm getting the same ERROR suddenly with my Samsung ML-2010 laser printer. NOTHING will print and the "Status" of the print job(s) all show "Stopped". It's driving me nuts!
    For some bizarre reason, I can still print to my other printer, a HP laserjet 2550L. It does not see to be affected in the least.
    Anyone got any ideas for a remedy?

  • Error not found in import

    mudclient.java:1: Package jagex.client not found in import.
    import jagex.client.*;
    ^
    mudclient.java:2: Class jagex.f not found in import.
    import jagex.f;
    ^
    mudclient.java:3: Class jagex.o not found in import.
    import jagex.o;
    ^
    mudclient.java:12: Superclass e of class mudclient not found.
    public class mudclient extends e
    ^
    4 errors

    hmmm... looks like your classpath is not set correctly. What do you enter when compiling your program?

  • IFolder Client error: Not enough space on the iFolder server

    iFolder client gets the following error:
    iFolder synchronization cannot complete because you don't have enough space on the server.
    Free space on the server = 464 MB (total space available 3000 MB)
    Space needed to complete synchronization = 2536 MB.
    Please free up space in your iolder and click OK.
    Click Cancel to cancel to sync.
    iFolder client log looks like this:
    13.3.2011 23:40:46 Synchronizing with server...
    13.3.2011 23:40:48 Synchronization failed
    The volume size is 36 GB and it has free space 20% = 7 GB.
    So there is enough space to the iFolder sync.
    iFolder host is NetWare 6.5.8 server and iFolder version is 2.1.8
    The same iFolder is synced from two (2) PC's, a desktop (XP SP3) and notebook (W7 SP1 32bit). Both have been working for long time.
    The problems are seen on notebook using Windows 7. The Windows 7 (32-bit) OS has updated with SP1 on Saturday (May 12th.2011). After the update iFolder worked but on Sunday evening the errors started.
    iFolder client (2.1.8) has removed and reinstalled. First the client seemed to work OK, but after the sync of last file, the error reoccured again.
    iFolder sync partially works: files and folders created on desktop PC are synced to notebook.
    But files created on notebook are not synced to desktop.
    Any tips how to repair or troubleshoot?
    Kind Regards, Harri

    On 14/03/2011 06:36, hkarr wrote:
    > iFolder client gets the following error:
    >
    > iFolder synchronization cannot complete because you don't have enough
    > space on the server.
    >
    > Free space on the server = 464 MB (total space available 3000 MB)
    > Space needed to complete synchronization = 2536 MB.
    >
    > Please free up space in your iolder and click OK.
    464 MB is less than 2536 MB so error message is correct.
    > Click Cancel to cancel to sync.
    >
    >
    > iFolder client log looks like this:
    > 13.3.2011 23:40:46 Synchronizing with server...
    > 13.3.2011 23:40:48 Synchronization failed
    >
    >
    > The volume size is 36 GB and it has free space 20% = 7 GB.
    > So there is enough space to the iFolder sync.
    Is there perhaps a volume or directory quota in place that would affect
    the sync?
    > iFolder host is NetWare 6.5.8 server and iFolder version is 2.1.8
    >
    > The same iFolder is synced from two (2) PC's, a desktop (XP SP3) and
    > notebook (W7 SP1 32bit). Both have been working for long time.
    >
    > The problems are seen on notebook using Windows 7. The Windows 7
    > (32-bit) OS has updated with SP1 on Saturday (May 12th.2011). After the
    > update iFolder worked but on Sunday evening the errors started.
    >
    > iFolder client (2.1.8) has removed and reinstalled. First the client
    > seemed to work OK, but after the sync of last file, the error reoccured
    > again.
    >
    > iFolder sync partially works: files and folders created on desktop PC
    > are synced to notebook.
    > But files created on notebook are not synced to desktop.
    >
    > Any tips how to repair or troubleshoot?
    Noting your follow-up reply re uninstall of Windows 7 SP1 I'll flag that
    the iFolder 2.0 client is not supported on Windows 7 - it would have
    been released before Windows 7 and certainly not updated for it (OES
    Linux introduced iFolder 3).
    HTH.
    Simon
    Novell Knowledge Partner (NKP)
    Do you work with Novell technologies at a university, college or school?
    If so, your campus could benefit from joining the Novell Technology
    Transfer Partner (TTP) program. See novell.com/ttp for more details.

Maybe you are looking for

  • Annoying Acrobat reader icon in dock - how to block from appearing ?

    Hi, I am sorry the solution must be very simple, but I googled it for a long time and could not find an answer. Everytime I open a PDF document, the red Acrobat icon appears in the dock. I usually use Dockless to prevent some applications to appear i

  • JSF 1.2 on a J2EE 1.4 server ?

    Is there anyone out there who is running a JSF 1.2 webapp on a J2EE 1.4 server ? If so , what did you need to do ?

  • Business Objects License keys

    Hello gurus, I have installed Business Objects product suite using temperory Keys, Now i want to validate them. I asked basis person to request keys. he came up with three sets of keys. I applied them in CMC . But none of the keys are working for Xce

  • Corruption  SYS user

    Hello experts I am reading SAP Database Admin with Oracle by Michael Hoding, Andre Faustmann, Gunnar Kelein, Ronny Zimmermann. In chapter 9 System Operation and Monitoring section 9.2.1.1 Complete Analysis it states: Check at least the objects of the

  • DNG images appearing blue

    When I open my .dng images, they appear fine in Camera Raw Plug-in, however once I click Open Image, my image turns bluish in Photoshop I downloaded a sample DNG image from the net to test and here is what I see This is how the image appears in Camer