Verifier Error: DatabasePlatform doesn't support NativeSequence.

I am using an Oracle database. When verifying one of our jar files, we get the following error message.
      FAILED TESTS :
      Test Name : tests.persistence.DefaultProviderVerification
      Test Assertion : Test validity of EJB 3.0 persistence unit. This test tests validity using a portable persistence provider. Please refer to EJB 3.0 Persistence API Specification for further information.
      Test Description : For [ C:\Sun\AppServer\domains\domain1\applications\j2ee-modules\newWebIceface#WEB-INF/lib/ARMS_EJB.jar#newARMS_EJBPU ]
Exception [TOPLINK-7144] (Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (12/06/2007))): oracle.toplink.essentials.exceptions.ValidationException
Exception Description: ARMSSCHDTL_SCHEDSERVICE_SEQ: platform DatabasePlatform doesn't support NativeSequence.Is there any configuration file where we can specify the sequences are supported?
Thanks in advance for any help.

You could also try setting your database platform to Oracle in your persistence.xml, "toplink.target-database"="Oracle".
-- James : [http://www.eclipselink.org|http://www.eclipselink.org]

Similar Messages

  • Windows 8.1 and IE11 - Critical Error: Object doesn't support property or method 'addEventListener'

    Our SharePoint 2010 sites don't work very well in Windows 8.1/IE11!!
    When opening list items or forms etc we get Critical Error : Object doesn't support property or method 'addEventListener'. It looks like it's possibly linked to InfoPath forms. Given that a large chunk of our users will probably be upgrading
    to Windows 8.1 as we speak this is slightly worrying!
    Has anyone else noticed this, or is it something to do with our deployment?  We're running SP2010 SP2 with latest CU.

    In older versions of IE, attachEvent is
    used to attach an event handler for some event on some element. But as per the update , starting with IE11, attachEvent is
    deprecated and you should use addEventListener instead.
    IE has included support for addEventListener from
    IE9 and above only. So if you still need to support IE8, I suggest you use some cross-browser library like jQuery to bind event handlers instead of vanilla javascript.
    As you're already using jQuery, you can bind events like below
    $('#yourElement').on('click', function(){
    // do something when you click on yourElement

  • JavaScript runtime error: Object doesn't support property or method 'Load'

    I'm pretty new to SharePoint 2013 apps and CSOM. I have written a simple SharePoint-hosted App in Visual Studio 2013 which attempts to display the current user's user profile picture using CSOM and JavaScript. Here is the code in my App.js file:
    $(document).ready(function () {
        var context = SP.ClientContext.get_current();
        var peopleManager = new SP.UserProfiles.PeopleManager(context);
        var userProperties = peopleManager.getMyProperties();
        context.Load(userProperties);
        context.executeQueryAsync(function (){
            if (properties) {
                var pic = userProperties.get_pictureUrl();
                $('#userProfileImage').attr("src", pic);
    I am getting error "JavaScript runtime error: Object doesn't support property or method 'Load'" on line "context.Load(userProperties);"
    I have SP.UserProfiles.js referenced, which is why this command executes successfully: var peopleManager = new SP.UserProfiles.PeopleManager(context); Is it my context object or userProperties object that is causing this error, and why? Thanks
    in advance for your help.
    Frank Foreman

    Hi,
      This method is case Sensitive, try this context.load(userProperties);

  • AIA CRMOD Build error - antfetch doesn't support the "antfile" attribute

    Hi.
    I am trying to build the CRMOD PIP under Linux, and I am getting the following ANT error:
    antfetch doesn't support the "antfile" attribute
    The build actually completes without any errors being posted on the screen, but the log file of the job, has this message within it, as well as a BUILD failure emanating from within the AIAInstallDriver.xml file.
    Does anyone know how to get around this issue ? The verision of ANT that we are using, is from the Weblogic Server envrionment.
    Thanks.

    I seriously hope that they don't expect us to use nightly builds of Netbeans 7.1 when the official final version of JavaFX 2.0 is released because of this issue.
    Their should be an update to Netbeans 7.0.1 upon JavaFX 2.0 final release. C'mon Oracle! You can do better than that!

  • CRMOD PIP Build Error - antfetch doesn't support the antfile attribute

    Hi.
    I am trying to build the CRMOD PIP under Linux, and I am getting the following ANT error:
    antfetch doesn't support the "antfile" attribute
    The build actually completes without any errors being posted on the screen, but the log file of the job, has this message within it, as well as a BUILD failure emanating from within the AIAInstallDriver.xml file.
    Does anyone know how to get around this issue ? The verision of ANT that we are using, is from the Weblogic Server envrionment.
    Thanks.

    I seriously hope that they don't expect us to use nightly builds of Netbeans 7.1 when the official final version of JavaFX 2.0 is released because of this issue.
    Their should be an update to Netbeans 7.0.1 upon JavaFX 2.0 final release. C'mon Oracle! You can do better than that!

  • JsRender error Object doesn't support property or method 'render'

    I have used jsRender.js in a content editor on a webpart page.
    Whenever I am using the following line inside document.ready(), it gives error.
    $( "#SearchResults" ).html(
    $( "#resultTemplate" ).render( results )
    Error: Object doesn't support property or method 'render'.
    Basically on a button click, this is getting called to display the results.
    I have checked, the jsRender.js file getting loaded properly.
    Can anyone help in this issue.

    Hi All,
    Using the developer tool, when I am running the render method on $( "#resultTemplate" ) element, it's again giving the same error.
    I have properly referred the jQuery and jsRender file using the seperate </script> tag. Also identified that on page load, these files are getting properly loaded.
    Here is the following code I am using, where I am calling the search function in last line (originally on button click):
    <script src="/sites/Tools/siteassets/jquery/js/jquery-1.7.2.min.js" type="text/javascript"></script>
    <script src="/sites/Tools/SiteAssets/FormExtension/jsrender.js" type="text/javascript"></script>
    $(document).ready(function(){
    var searchCount = 0;
    function search(term) {
    // Show loading animation
    $(".loadingAnim").show();
    $("#searchResults").html("");
    var curCtx = new SP.ClientContext.get_current();
    var searchCAML = "";
    var searchToBeAppended = "";
    var searchTerms = term.split(" ");
    // remove empty elements/blanks
    searchTerms = $.grep(searchTerms,function(n){
    return(n);
    if(searchTerms.length > 1){
    searchCAML += "<And>";
    $.each(searchTerms, function(i, t){
    if(i == 0 || i == 0 && searchTerms.length == 2){
    searchCAML += "<Contains><FieldRef Name='search' /><Value Type='Text'><![CDATA["+xmlencode($.trim(t))+"]]></Value></Contains>";
    }else if(i == 0 && searchTerms.length > 2){
    searchCAML += "<Contains><FieldRef Name='search' /><Value Type='Text'><![CDATA["+xmlencode($.trim(t))+"]]></Value></Contains>";
    }else if(i == 1 && searchTerms.length == 2){
    searchCAML += "<Contains><FieldRef Name='search' /><Value Type='Text'><![CDATA["+xmlencode($.trim(t))+"]]></Value></Contains></And>";
    }else if(i == searchTerms.length-1){
    searchCAML += "<Contains><FieldRef Name='search' /><Value Type='Text'><![CDATA["+xmlencode($.trim(t))+"]]></Value></Contains>";
    }else{
    searchCAML += "<And><Contains><FieldRef Name='search' /><Value Type='Text'><![CDATA["+xmlencode($.trim(t))+"]]></Value></Contains>";
    searchToBeAppended += "</And>";
    if(searchTerms.length > 2){
    searchToBeAppended += "</And>";
    // Append necessary colsing tags
    searchCAML += searchToBeAppended;
    //reset searchToBeAppended
    searchToBeAppended = "";
    if(searchTerms.length > 1){
    searchCAML += "<And>";
    $.each(searchTerms, function(i, t){
    if(i == 0 || i == 0 && searchTerms.length == 2){
    searchCAML += "<Contains><FieldRef Name='ContentRemark' /><Value Type='Note'><![CDATA["+xmlencode($.trim(t))+"]]></Value></Contains>";
    }else if(i == 0 && searchTerms.length > 2){
    searchCAML += "<Contains><FieldRef Name='ContentRemark' /><Value Type='Note'><![CDATA["+xmlencode($.trim(t))+"]]></Value></Contains>";
    }else if(i == 1 && searchTerms.length == 2){
    searchCAML += "<Contains><FieldRef Name='ContentRemark' /><Value Type='Note'><![CDATA["+xmlencode($.trim(t))+"]]></Value></Contains></And>";
    }else if(i == searchTerms.length-1){
    searchCAML += "<Contains><FieldRef Name='ContentRemark' /><Value Type='Note'><![CDATA["+xmlencode($.trim(t))+"]]></Value></Contains>";
    }else{
    searchCAML += "<And><Contains><FieldRef Name='ContentRemark' /><Value Type='Note'><![CDATA["+xmlencode($.trim(t))+"]]></Value></Contains>";
    searchToBeAppended += "</And>";
    if(searchTerms.length > 2){
    searchToBeAppended += "</And>";
    // Append necessary colsing tags
    searchCAML += searchToBeAppended;
    if(searchCAML != ""){
    searchCAML = "<View><Query><Where><Or>"+ searchCAML +"</Or></Where></Query><RowLimit Paged='FALSE'>500</RowLimit></View>";
    }else{
    searchCAML = "<View><RowLimit Paged='FALSE'>500</RowLimit></View>";
    /* Load Equipments*/
    listEqui = curCtx.get_web().get_lists().getByTitle('Dossiers');
    var queryResults = new SP.CamlQuery();
    queryResults.set_viewXml(searchCAML);
    listItemsResults = listEqui.getItems(queryResults);
    curCtx.load(listItemsResults , 'Include(ID, Title, Group, Created, Responsible, Client, Autor, Party1, Party2, search )');
    curCtx.executeQueryAsync(getListItemsSuccess, getListItemsFailure);
    function getListItemsSuccess(sender, args) {
    var term = $("#searchTerm").attr("value");
    var results = new Array();
    var listEnumerator = listItemsResults.getEnumerator();
    while (listEnumerator.moveNext()) {
    var element = {
    ID: listEnumerator.get_current().get_item("ID")
    , Title: listEnumerator.get_current().get_item("Title")
    , Group: listEnumerator.get_current().get_item("Group")
    , Created: listEnumerator.get_current().get_item("Created")
    , Responsible: listEnumerator.get_current().get_item("Responsible")
    , Client: listEnumerator.get_current().get_item("Client")
    , Party1: listEnumerator.get_current().get_item("Party1")
    , Party2: listEnumerator.get_current().get_item("Party2")
    , Autor: listEnumerator.get_current().get_item("Autor")
    , term: term
    results.push(element);
    $("#searchResCount").text( results.length + " dossiers found");
    $( "#SearchResults" ).html(
    $( "#resultTemplate" ).render( results )
    AddHoverStyle();
    $(".loadingAnim").delay(1000).fadeOut();
    function getListItemsFailure(sender, args) {
    SP.UI.Notify.addNotification('Failed to get list items. \nError: ' + args.get_message() + '\nStackTrace: ' + args.get_stackTrace(), false);
    $(".loadingAnim").delay(1000).fadeOut();
    //Calling search function.
    search("cl")
    Kindly let me know if something is wrong here.

  • Ehlpdhtm.js script error - Object doesn't support property or method 'Activate'

    RH 9.0.2.271
    Windows 7 64-bit
    This "Object doesn't support property or method 'Activate' ehlpdhtm.js error all of a sudden started popping up when I view any of the chms I build from my file system.
    I initially through it was a 64-bit problem because if I view the chm from my file system I get the script error. But if I copy it to a 32-bit PC or run it from within RH (after it's compiled for example) or a 32-bit version of our software, it runs fine. (However, one of my co-workers tried it on her 64-bit machine and didn't receive any error.) In any case, it seems to be happening on my machine only.
    Anyway, it's not on every topic, but on every one that calls the ehlpdhtm.js script with this line of code, it appears to be happening:
    <script src="ehlpdhtm.js" type="text/javascript" language="JavaScript1.2"></script>
    I don't think hhactivex.dll plays with this js at all, but just in case, I unregistred and re-registered that dll to no effect. I also tried explicitly adding in ehlpdhtm.js as a baggage file. Again, to no effect.
    What could have changed on my system to make this start happening? And any ideas on how to fix it?

    Well here's some more info I found out. If I unregister the 64-bit hhactivex.dll the script error  goes away. Of course my Glossary tab is grayed out as shown below, so that's not really an option:
    Reregistering the 64-bit hhactivex.dll again shows the script errors. Plus, if I then go to my glossary it's completely empty as shown here:
    If I copy this help down into a 32-bit machine everything works: the glossary has glossary terms, there's no script errors.
    In short, I don't know what's going on, but the script error I'm getting is somehow related to having the 64-bit dll registered.

  • Adobe Reader installation error: "object doesn't support property or method 'text'"

    I'm trying to install Adobe Reader and I have the following error after launching the installer:
    "object doesn't support property or method 'text'"
    My OS is Win7 Ultimate 64b (using AVG antivirus), but I encounter the same error on other systems too:
    Win7 Ultimate 32b (AVG Antivirus)
    Win7 Enterprise 64b (McAfee Antivirus)
    No matter which button I click, the installer hangs:
    I googled this error, but couldn't find any solution.
    Any ideas?
    Thanks!

    This error mostly occurs if your language is not set to English (on the Adobe.com website).  This has been reported to Adobe a million times, but they don't seem to have any intererest in fixing it.

  • In 2008 R2, I get Object doesn't support property or method PollResizeImages

    This is when I run a report from a reportviewer control to reporting services.  
    Another symptom is that images get cropped but if I refresh page cropping doesn't occur
    I have this version of SQL server 2008 R2
    Microsoft SQL Server 2008 R2 (SP1) - 10.50.2500.0 (X64)   Jun 17 2011 00:54:03   Copyright (c) Microsoft Corporation  Developer Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) (Hypervisor) 
    I am using the ReportViewer control to display this report
    I get this error  Line: 1  Error: Object doesn't support property or method 'PollResizeImages'
    It appears to be from this method
    function anonymous()
    this.PollResizeImages(oReportDiv,oReportDiv)
    Another environment with same sql server version doesn't get this error for same report

    Hi DenisLang,
    As far as I know, it is a known issue in SSRS. Please try to install the latest version of the Report Viewer Runtime to fix the issue.
    If the issue is persist, I recommend you that submit this suggestion at
    https://connect.microsoft.com/SQLServer/ . If the suggestion mentioned by customers for many times, the product team may consider to add the feature in the next SQL Server version. Your feedback is valuable for us to improve our products and increase the
    level of service provided.
    Regards,
    Alisa Tang
    If you have any feedback on our support, please click
    here.
    Alisa Tang
    TechNet Community Support

  • Error in allInOne.js: Object doesn't support this property or method

    We are having an issue deploy our website (Developed in .Net) on a specific server. When we try to visualize a report on any browser we get this error:
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; OfficeLiveConnector.1.4; OfficeLivePatch.0.0)
    Timestamp: Wed, 7 Apr 2010 17:52:31 UTC
    Message: Object doesn't support this property or method
    Line: 10
    Char: 281690
    Code: 0
    URI: http://{IP ADDRESS}/WebUserInterface/aspnet_client/system_web/2_0_50727/crystalreportviewers12/allInOne.js
    We have install the Crystal reports 2008 runtime and the Crystal report 2008 sp2.5 runtime. Both of them give me the same results.
    It's killing me because i have installed the same solution on many other server without any issue.
    Ben
    P.s. The Web server is  a Window Server 2003 R2 standard edition

    Perhaps using [modules|https://smpdl.sap-ag.de/~sapidp/012002523100006252802008E/modules.zip] will at least tell us what dlls are loading. Look at the CR dlls. There should not be any v11 files loaded by your app.
    You may also start considering obtaining phone support for this one. I have a feeling this will take more than just forums to solve...
    Phone support can be obtained here:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300
    Ludek

  • Epson SX218 doesn't print (client-error-document-format-not-supported)

    Hi there,
    I'm currently trying to figure out how to get my Epson Stylus SX 218 to work. Unfortunately, cups (or the printer or whatever causes my problems...) obviously just doesn't want me to get this to work.
    Here's what I've done so far:
    I installed everything as described in the CUPS wiki article (so ghostscript and all the foomatic-stuff is installed, usblp is NOT blacklisted, see why below)
    I installed epson-inkjet-printer-workforce-sx218 from AUR
    I started cups...
    Nothing worked (Printer not recognized, either with or without blacklisted usblp module...)
    I searched the forums for a solution
    I installed cups-usblp and reinstalled all the cups stuff
    Printer got recognized! Yay!
    So, now the printer is set up in cups using the avasys driver. But...
    It doesn't print!
    When I try to print a test page via the cups webinterface it keeps telling me
    Unsupported format "application/vnd.cups-banner".
    The following packages are installed now:
    $ pacman -Qs cups
    local/cups-usblp 1.5.0-1
    local/libcups 1.5.0-1
    $ pacman -Qs foomatic
    local/foomatic-db 1:4.0.7_20110707-1
    local/foomatic-db-engine 1:4.0.7_20110707-1
    local/foomatic-db-nonfree 1:4.0.7_20110707-1
    local/foomatic-filters 1:4.0.7_20110707-1
    $ pacman -Qs epson
    local/epson-inkjet-printer-workforce-320-sx218 1.0.0-6
    $ pacman -Qs ghostscript
    local/ghostscript 9.04-5
    Here's my cups error log:
    I [01/Jan/2012:18:59:01 +0100] Listening to [v1.::1]:631 (IPv6)
    I [01/Jan/2012:18:59:01 +0100] Listening to 127.0.0.1:631 (IPv4)
    I [01/Jan/2012:18:59:01 +0100] Listening to /var/run/cups/cups.sock (Domain)
    I [01/Jan/2012:18:59:01 +0100] Remote access is disabled.
    D [01/Jan/2012:18:59:01 +0100] Added auto ServerAlias mamapc
    I [01/Jan/2012:18:59:01 +0100] Loaded configuration file "/etc/cups/cupsd.conf"
    I [01/Jan/2012:18:59:01 +0100] Using default TempDir of /var/spool/cups/tmp...
    I [01/Jan/2012:18:59:01 +0100] Configured for up to 100 clients.
    I [01/Jan/2012:18:59:01 +0100] Allowing up to 100 client connections per host.
    I [01/Jan/2012:18:59:01 +0100] Using policy "default" as the default.
    D [01/Jan/2012:18:59:01 +0100] cupsdMarkDirty(---p--)
    D [01/Jan/2012:18:59:01 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Not busy"
    I [01/Jan/2012:18:59:01 +0100] Partial reload complete.
    I [01/Jan/2012:18:59:01 +0100] Listening to [v1.::1]:631 on fd 6...
    I [01/Jan/2012:18:59:01 +0100] Listening to 127.0.0.1:631 on fd 8...
    I [01/Jan/2012:18:59:01 +0100] Listening to /var/run/cups/cups.sock:631 on fd 9...
    I [01/Jan/2012:18:59:01 +0100] Resuming new connection processing...
    D [01/Jan/2012:18:59:01 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
    D [01/Jan/2012:18:59:01 +0100] Discarding unused server-restarted event...
    D [01/Jan/2012:18:59:01 +0100] cupsdAcceptClient: 13 from localhost:631 (IPv4)
    D [01/Jan/2012:18:59:01 +0100] Report: clients=1
    D [01/Jan/2012:18:59:01 +0100] Report: jobs=0
    D [01/Jan/2012:18:59:01 +0100] Report: jobs-active=0
    D [01/Jan/2012:18:59:01 +0100] Report: printers=0
    D [01/Jan/2012:18:59:01 +0100] Report: printers-implicit=0
    D [01/Jan/2012:18:59:01 +0100] Report: stringpool-string-count=407
    D [01/Jan/2012:18:59:01 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:18:59:01 +0100] Report: stringpool-total-bytes=5736
    D [01/Jan/2012:18:59:01 +0100] PID 928 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
    D [01/Jan/2012:18:59:01 +0100] cupsdReadClient: 13 GET /images/wait.gif HTTP/1.1
    D [01/Jan/2012:18:59:01 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [01/Jan/2012:18:59:01 +0100] cupsdAuthorize: Authorized as root using Basic
    D [01/Jan/2012:18:59:01 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:06 +0100] cupsdReadClient: 13 GET /admin/?OP=redirect HTTP/1.1
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [01/Jan/2012:18:59:06 +0100] cupsdAuthorize: Authorized as root using Basic
    D [01/Jan/2012:18:59:06 +0100] [CGI] argv[0] = "/usr/lib/cups/cgi-bin/admin.cgi"
    D [01/Jan/2012:18:59:06 +0100] [CGI] argv[1] = "OP=redirect"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[0] = "CUPS_CACHEDIR=/var/cache/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[1] = "CUPS_DATADIR=/usr/share/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[2] = "CUPS_DOCROOT=/usr/share/cups/doc"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[3] = "CUPS_FONTPATH=/usr/share/cups/fonts"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[4] = "CUPS_REQUESTROOT=/var/spool/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[5] = "CUPS_SERVERBIN=/usr/lib/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[6] = "CUPS_SERVERROOT=/etc/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[7] = "CUPS_STATEDIR=/var/run/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[8] = "HOME=/var/spool/cups/tmp"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[9] = "PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[10] = "SERVER_ADMIN=root@mamapc"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[11] = "SOFTWARE=CUPS/1.5.0"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[12] = "TMPDIR=/var/spool/cups/tmp"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[13] = "USER=root"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[14] = "CUPS_SERVER=/var/run/cups/cups.sock"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[15] = "CUPS_ENCRYPTION=IfRequested"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[16] = "IPP_PORT=631"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[17] = "AUTH_TYPE=Basic"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[18] = "LANG=de_DE.UTF8"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[19] = "REDIRECT_STATUS=1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[20] = "GATEWAY_INTERFACE=CGI/1.1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[21] = "SERVER_NAME=localhost"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[22] = "SERVER_PORT=631"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[23] = "REMOTE_ADDR=127.0.0.1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[24] = "REMOTE_HOST=localhost"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[25] = "SCRIPT_NAME=/admin/"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[26] = "SCRIPT_FILENAME=/usr/share/cups/doc/admin/"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[27] = "REMOTE_USER=root"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[28] = "SERVER_PROTOCOL=HTTP/1.1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[29] = "HTTP_COOKIE=org.cups.sid=960956618ce3e170434dd2afacd4fad3"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[30] = "HTTP_USER_AGENT=Opera/9.80 (X11; Linux i686; U; de) Presto/2.10.229 Version/11.60"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[31] = "HTTP_REFERER=http://localhost:631/admin"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[32] = "REQUEST_METHOD=GET"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[33] = "QUERY_STRING=OP=redirect"
    D [01/Jan/2012:18:59:06 +0100] [CGI] Started /usr/lib/cups/cgi-bin/admin.cgi (PID 929)
    I [01/Jan/2012:18:59:06 +0100] Started "/usr/lib/cups/cgi-bin/admin.cgi" (pid=929)
    D [01/Jan/2012:18:59:06 +0100] cupsdSendCommand: 13 file=14
    D [01/Jan/2012:18:59:06 +0100] [CGI] admin.cgi started...
    D [01/Jan/2012:18:59:06 +0100] cupsdAcceptClient: 16 from localhost (Domain)
    D [01/Jan/2012:18:59:06 +0100] [CGI] http=0xb9359360
    D [01/Jan/2012:18:59:06 +0100] [CGI] org.cups.sid cookie is "960956618ce3e170434dd2afacd4fad3"
    D [01/Jan/2012:18:59:06 +0100] [CGI] redirecting with prefix http://localhost:631!
    D [01/Jan/2012:18:59:06 +0100] cupsdReadClient: 16 WAITING Closing on EOF
    D [01/Jan/2012:18:59:06 +0100] cupsdCloseClient: 16
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:06 +0100] Script header: Location: http://localhost:631/admin
    D [01/Jan/2012:18:59:06 +0100] Script header:
    D [01/Jan/2012:18:59:06 +0100] cupsdAcceptClient: 16 from localhost:631 (IPv4)
    D [01/Jan/2012:18:59:06 +0100] cupsdReadClient: 16 GET /admin HTTP/1.1
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:06 +0100] cupsdAuthorize: Authorized as root using Basic
    D [01/Jan/2012:18:59:06 +0100] [CGI] argv[0] = "/usr/lib/cups/cgi-bin/admin.cgi"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[0] = "CUPS_CACHEDIR=/var/cache/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[1] = "CUPS_DATADIR=/usr/share/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[2] = "CUPS_DOCROOT=/usr/share/cups/doc"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[3] = "CUPS_FONTPATH=/usr/share/cups/fonts"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[4] = "CUPS_REQUESTROOT=/var/spool/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[5] = "CUPS_SERVERBIN=/usr/lib/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[6] = "CUPS_SERVERROOT=/etc/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[7] = "CUPS_STATEDIR=/var/run/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[8] = "HOME=/var/spool/cups/tmp"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[9] = "PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[10] = "SERVER_ADMIN=root@mamapc"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[11] = "SOFTWARE=CUPS/1.5.0"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[12] = "TMPDIR=/var/spool/cups/tmp"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[13] = "USER=root"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[14] = "CUPS_SERVER=/var/run/cups/cups.sock"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[15] = "CUPS_ENCRYPTION=IfRequested"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[16] = "IPP_PORT=631"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[17] = "AUTH_TYPE=Basic"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[18] = "LANG=de_DE.UTF8"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[19] = "REDIRECT_STATUS=1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[20] = "GATEWAY_INTERFACE=CGI/1.1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[21] = "SERVER_NAME=localhost"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[22] = "SERVER_PORT=631"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[23] = "REMOTE_ADDR=127.0.0.1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[24] = "REMOTE_HOST=localhost"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[25] = "SCRIPT_NAME=/admin"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[26] = "SCRIPT_FILENAME=/usr/share/cups/doc/admin"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[27] = "REMOTE_USER=root"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[28] = "SERVER_PROTOCOL=HTTP/1.1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[29] = "HTTP_COOKIE=org.cups.sid=960956618ce3e170434dd2afacd4fad3"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[30] = "HTTP_USER_AGENT=Opera/9.80 (X11; Linux i686; U; de) Presto/2.10.229 Version/11.60"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[31] = "HTTP_REFERER=http://localhost:631/admin"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[32] = "REQUEST_METHOD=GET"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[33] = "QUERY_STRING="
    D [01/Jan/2012:18:59:06 +0100] [CGI] Started /usr/lib/cups/cgi-bin/admin.cgi (PID 930)
    I [01/Jan/2012:18:59:06 +0100] Started "/usr/lib/cups/cgi-bin/admin.cgi" (pid=930)
    D [01/Jan/2012:18:59:06 +0100] cupsdSendCommand: 16 file=17
    D [01/Jan/2012:18:59:06 +0100] PID 929 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:06 +0100] [CGI] admin.cgi started...
    D [01/Jan/2012:18:59:06 +0100] cupsdAcceptClient: 14 from localhost (Domain)
    D [01/Jan/2012:18:59:06 +0100] [CGI] http=0xb866c360
    D [01/Jan/2012:18:59:06 +0100] [CGI] org.cups.sid cookie is "960956618ce3e170434dd2afacd4fad3"
    D [01/Jan/2012:18:59:06 +0100] [CGI] No form data, showing main menu...
    D [01/Jan/2012:18:59:06 +0100] [CGI] /usr/share/cups/drivers/pscript5.dll: Datei oder Verzeichnis nicht gefunden
    D [01/Jan/2012:18:59:06 +0100] cupsdReadClient: 14 POST / HTTP/1.1
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:06 +0100] cupsdAuthorize: No authentication data provided.
    D [01/Jan/2012:18:59:06 +0100] cupsdReadClient: 14 1.1 Get-Subscriptions 1
    D [01/Jan/2012:18:59:06 +0100] Get-Subscriptions ipp://localhost/
    D [01/Jan/2012:18:59:06 +0100] Get-Subscriptions client-error-not-found: No subscriptions found.
    D [01/Jan/2012:18:59:06 +0100] Returning IPP client-error-not-found for Get-Subscriptions (ipp://localhost/) from localhost
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:06 +0100] Script header: Content-Type: text/html;charset=utf-8
    D [01/Jan/2012:18:59:06 +0100] Script header:
    D [01/Jan/2012:18:59:06 +0100] cupsdReadClient: 14 WAITING Closing on EOF
    D [01/Jan/2012:18:59:06 +0100] cupsdCloseClient: 14
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:06 +0100] PID 930 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:11 +0100] cupsdReadClient: 13 GET / HTTP/1.1
    D [01/Jan/2012:18:59:11 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [01/Jan/2012:18:59:11 +0100] cupsdAuthorize: Authorized as root using Basic
    D [01/Jan/2012:18:59:11 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:11 +0100] cupsdReadClient: 13 WAITING Closing on EOF
    D [01/Jan/2012:18:59:11 +0100] cupsdCloseClient: 13
    D [01/Jan/2012:18:59:11 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
    D [01/Jan/2012:18:59:12 +0100] cupsdReadClient: 16 WAITING Closing on EOF
    D [01/Jan/2012:18:59:12 +0100] cupsdCloseClient: 16
    D [01/Jan/2012:18:59:12 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
    D [01/Jan/2012:18:59:12 +0100] cupsdAcceptClient: 13 from localhost:631 (IPv4)
    D [01/Jan/2012:18:59:12 +0100] cupsdReadClient: 13 GET /admin/log/access_log? HTTP/1.1
    D [01/Jan/2012:18:59:12 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [01/Jan/2012:18:59:12 +0100] cupsdAuthorize: Authorized as root using Basic
    D [01/Jan/2012:18:59:12 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    I [01/Jan/2012:18:59:32 +0100] Generating printcap /etc/printcap...
    D [01/Jan/2012:18:59:32 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Dirty files"
    D [01/Jan/2012:18:59:35 +0100] cupsdAcceptClient: 14 from localhost (Domain)
    D [01/Jan/2012:18:59:35 +0100] cupsdReadClient: 14 POST / HTTP/1.1
    D [01/Jan/2012:18:59:35 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [01/Jan/2012:18:59:35 +0100] cupsdAuthorize: No authentication data provided.
    D [01/Jan/2012:18:59:35 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Devices 1
    D [01/Jan/2012:18:59:35 +0100] CUPS-Get-Devices
    D [01/Jan/2012:18:59:35 +0100] cupsdIsAuthorized: username=""
    D [01/Jan/2012:18:59:35 +0100] Returning HTTP Unauthorized for CUPS-Get-Devices (no URI) from localhost
    D [01/Jan/2012:18:59:35 +0100] cupsdSendHeader: 14 WWW-Authenticate: Basic realm="CUPS", trc="y"
    D [01/Jan/2012:18:59:35 +0100] cupsdReadClient: 14 WAITING Closing on EOF
    D [01/Jan/2012:18:59:35 +0100] cupsdCloseClient: 14
    D [01/Jan/2012:18:59:35 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Active clients"
    D [01/Jan/2012:18:59:35 +0100] cupsdAcceptClient: 14 from localhost (Domain)
    D [01/Jan/2012:18:59:35 +0100] cupsdAcceptClient: 16 from localhost (Domain)
    D [01/Jan/2012:18:59:35 +0100] cupsdReadClient: 14 WAITING Closing on EOF
    D [01/Jan/2012:18:59:35 +0100] cupsdCloseClient: 14
    D [01/Jan/2012:18:59:35 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [01/Jan/2012:18:59:35 +0100] cupsdReadClient: 16 POST / HTTP/1.1
    D [01/Jan/2012:18:59:35 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [01/Jan/2012:18:59:35 +0100] cupsdAuthorize: Authorized as root using PeerCred
    D [01/Jan/2012:18:59:35 +0100] cupsdReadClient: 16 1.1 CUPS-Get-Devices 1
    D [01/Jan/2012:18:59:35 +0100] CUPS-Get-Devices
    D [01/Jan/2012:18:59:35 +0100] cupsdIsAuthorized: username="root"
    D [01/Jan/2012:18:59:35 +0100] [CGI] argv[0] = "/usr/lib/cups/daemon/cups-deviced"
    D [01/Jan/2012:18:59:35 +0100] [CGI] argv[1] = "1"
    D [01/Jan/2012:18:59:35 +0100] [CGI] argv[2] = "0"
    D [01/Jan/2012:18:59:35 +0100] [CGI] argv[3] = "2"
    D [01/Jan/2012:18:59:35 +0100] [CGI] argv[4] = "2"
    D [01/Jan/2012:18:59:35 +0100] [CGI] argv[5] = "requested-attributes=all exclude-schemes='beh','cups-pdf','bluetooth','dnssd','http','https','ipp','lpd','ncp','parallel','scsi','smb','snmp','socket'"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[0] = "CUPS_CACHEDIR=/var/cache/cups"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[1] = "CUPS_DATADIR=/usr/share/cups"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[2] = "CUPS_DOCROOT=/usr/share/cups/doc"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[3] = "CUPS_FONTPATH=/usr/share/cups/fonts"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[4] = "CUPS_REQUESTROOT=/var/spool/cups"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[5] = "CUPS_SERVERBIN=/usr/lib/cups"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[6] = "CUPS_SERVERROOT=/etc/cups"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[7] = "CUPS_STATEDIR=/var/run/cups"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[8] = "HOME=/var/spool/cups/tmp"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[9] = "PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[10] = "SERVER_ADMIN=root@mamapc"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[11] = "SOFTWARE=CUPS/1.5.0"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[12] = "TMPDIR=/var/spool/cups/tmp"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[13] = "USER=root"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[14] = "CUPS_SERVER=/var/run/cups/cups.sock"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[15] = "CUPS_ENCRYPTION=IfRequested"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[16] = "IPP_PORT=631"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[17] = "AUTH_TYPE=PeerCred"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[18] = "LANG=en_US.UTF8"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[19] = "REDIRECT_STATUS=1"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[20] = "GATEWAY_INTERFACE=CGI/1.1"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[21] = "SERVER_NAME=localhost"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[22] = "SERVER_PORT=631"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[23] = "REMOTE_ADDR="
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[24] = "REMOTE_HOST=localhost"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[25] = "SCRIPT_NAME=/"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[26] = "SCRIPT_FILENAME=/usr/share/cups/doc/"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[27] = "REMOTE_USER=root"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[28] = "SERVER_PROTOCOL=HTTP/1.1"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[29] = "HTTP_USER_AGENT=CUPS/1.5.0"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[30] = "REQUEST_METHOD=POST"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[31] = "CONTENT_LENGTH=244"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[32] = "CONTENT_TYPE=application/ipp"
    D [01/Jan/2012:18:59:35 +0100] [CGI] Started /usr/lib/cups/daemon/cups-deviced (PID 948)
    I [01/Jan/2012:18:59:35 +0100] Started "/usr/lib/cups/daemon/cups-deviced" (pid=948)
    D [01/Jan/2012:18:59:35 +0100] cupsdSendCommand: 16 file=14
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/mdns (PID 949)
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/usb (PID 950)
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/ipps (PID 951)
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/serial (PID 952)
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] PID 949 (mdns) exited with no errors.
    D [01/Jan/2012:18:59:35 +0100] [CGI] list_devices
    D [01/Jan/2012:18:59:35 +0100] [CGI] usb_find_busses=2
    D [01/Jan/2012:18:59:35 +0100] [CGI] usb_find_devices=7
    D [01/Jan/2012:18:59:35 +0100] [CGI] libusb couldn't open USB device /dev/bus/usb/002/002: Permission denied.
    D [01/Jan/2012:18:59:35 +0100] [CGI] libusb requires write access to USB device nodes.
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] PID 950 (usb) exited with no errors.
    D [01/Jan/2012:18:59:35 +0100] [CGI] Flushed attributes...
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] Found device "ipps"...
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] PID 951 (ipps) exited with no errors.
    D [01/Jan/2012:18:59:35 +0100] Script header: Content-Type: application/ipp
    D [01/Jan/2012:18:59:35 +0100] Script header:
    D [01/Jan/2012:18:59:35 +0100] [CGI] Flushed attributes...
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] Found device "serial:/dev/ttyS0?baud=115200"...
    D [01/Jan/2012:18:59:35 +0100] [CGI] Flushed attributes...
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] Found device "serial:/dev/ttyS1?baud=115200"...
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] PID 952 (serial) exited with no errors.
    D [01/Jan/2012:18:59:35 +0100] PID 948 (/usr/lib/cups/daemon/cups-deviced) exited with no errors.
    D [01/Jan/2012:18:59:35 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Active clients"
    D [01/Jan/2012:18:59:35 +0100] cupsdReadClient: 16 WAITING Closing on EOF
    D [01/Jan/2012:18:59:35 +0100] cupsdCloseClient: 16
    D [01/Jan/2012:18:59:35 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [01/Jan/2012:19:00:23 +0100] Report: clients=1
    D [01/Jan/2012:19:00:23 +0100] Report: jobs=0
    D [01/Jan/2012:19:00:23 +0100] Report: jobs-active=0
    D [01/Jan/2012:19:00:23 +0100] Report: printers=0
    D [01/Jan/2012:19:00:23 +0100] Report: printers-implicit=0
    D [01/Jan/2012:19:00:23 +0100] Report: stringpool-string-count=407
    D [01/Jan/2012:19:00:23 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:19:00:23 +0100] Report: stringpool-total-bytes=5736
    D [01/Jan/2012:19:01:15 +0100] cupsdReadClient: 13 WAITING Closing on EOF
    D [01/Jan/2012:19:01:15 +0100] cupsdCloseClient: 13
    D [01/Jan/2012:19:01:15 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [01/Jan/2012:19:19:03 +0100] Report: clients=0
    D [01/Jan/2012:19:19:03 +0100] Report: jobs=0
    D [01/Jan/2012:19:19:03 +0100] Report: jobs-active=0
    D [01/Jan/2012:19:19:03 +0100] Report: printers=0
    D [01/Jan/2012:19:19:03 +0100] Report: printers-implicit=0
    D [01/Jan/2012:19:19:03 +0100] Report: stringpool-string-count=407
    D [01/Jan/2012:19:19:03 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:19:19:03 +0100] Report: stringpool-total-bytes=5736
    D [01/Jan/2012:19:22:10 +0100] Report: clients=0
    D [01/Jan/2012:19:22:11 +0100] Report: jobs=0
    D [01/Jan/2012:19:22:11 +0100] Report: jobs-active=0
    D [01/Jan/2012:19:22:11 +0100] Report: printers=0
    D [01/Jan/2012:19:22:11 +0100] Report: printers-implicit=0
    D [01/Jan/2012:19:22:11 +0100] Report: stringpool-string-count=407
    D [01/Jan/2012:19:22:11 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:19:22:11 +0100] Report: stringpool-total-bytes=5736
    D [01/Jan/2012:19:24:21 +0100] Report: clients=0
    D [01/Jan/2012:19:24:21 +0100] Report: jobs=0
    D [01/Jan/2012:19:24:21 +0100] Report: jobs-active=0
    D [01/Jan/2012:19:24:21 +0100] Report: printers=0
    D [01/Jan/2012:19:24:21 +0100] Report: printers-implicit=0
    D [01/Jan/2012:19:24:21 +0100] Report: stringpool-string-count=407
    D [01/Jan/2012:19:24:21 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:19:24:21 +0100] Report: stringpool-total-bytes=5736
    D [01/Jan/2012:19:27:26 +0100] Report: clients=0
    D [01/Jan/2012:19:27:26 +0100] Report: jobs=0
    D [01/Jan/2012:19:27:26 +0100] Report: jobs-active=0
    D [01/Jan/2012:19:27:26 +0100] Report: printers=0
    D [01/Jan/2012:19:27:26 +0100] Report: printers-implicit=0
    D [01/Jan/2012:19:27:26 +0100] Report: stringpool-string-count=407
    D [01/Jan/2012:19:27:26 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:19:27:26 +0100] Report: stringpool-total-bytes=5736
    D [01/Jan/2012:19:37:11 +0100] Report: clients=0
    D [01/Jan/2012:19:37:11 +0100] Report: jobs=0
    D [01/Jan/2012:19:37:11 +0100] Report: jobs-active=0
    D [01/Jan/2012:19:37:11 +0100] Report: printers=0
    D [01/Jan/2012:19:37:11 +0100] Report: printers-implicit=0
    D [01/Jan/2012:19:37:11 +0100] Report: stringpool-string-count=407
    D [01/Jan/2012:19:37:11 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:19:37:11 +0100] Report: stringpool-total-bytes=5736
    I [01/Jan/2012:19:37:41 +0100] Scheduler shutting down normally.
    D [01/Jan/2012:19:37:41 +0100] Discarding unused server-stopped event...
    I [01/Jan/2012:19:37:41 +0100] Saving job.cache...
    I [01/Jan/2012:19:38:18 +0100] Listening to [v1.::1]:631 (IPv6)
    I [01/Jan/2012:19:38:18 +0100] Listening to 127.0.0.1:631 (IPv4)
    I [01/Jan/2012:19:38:18 +0100] Listening to /var/run/cups/cups.sock (Domain)
    I [01/Jan/2012:19:38:18 +0100] Remote access is disabled.
    D [01/Jan/2012:19:38:18 +0100] Added auto ServerAlias mamapc
    I [01/Jan/2012:19:38:18 +0100] Loaded configuration file "/etc/cups/cupsd.conf"
    D [01/Jan/2012:19:38:18 +0100] Creating missing directory "/var/run/cups"
    D [01/Jan/2012:19:38:18 +0100] Repairing ownership of "/var/run/cups"
    D [01/Jan/2012:19:38:18 +0100] Repairing access permissions of "/var/run/cups"
    D [01/Jan/2012:19:38:18 +0100] Creating missing directory "/var/run/cups/certs"
    D [01/Jan/2012:19:38:18 +0100] Repairing ownership of "/var/run/cups/certs"
    D [01/Jan/2012:19:38:18 +0100] Repairing access permissions of "/var/run/cups/certs"
    I [01/Jan/2012:19:38:18 +0100] Using default TempDir of /var/spool/cups/tmp...
    I [01/Jan/2012:19:38:18 +0100] Configured for up to 100 clients.
    I [01/Jan/2012:19:38:18 +0100] Allowing up to 100 client connections per host.
    I [01/Jan/2012:19:38:18 +0100] Using policy "default" as the default.
    I [01/Jan/2012:19:38:18 +0100] Full reload is required.
    I [01/Jan/2012:19:38:19 +0100] Loaded MIME database from "/usr/share/cups/mime" and "/etc/cups": 35 types, 42 filters...
    I [01/Jan/2012:19:38:19 +0100] Loading job cache file "/var/cache/cups/job.cache"...
    I [01/Jan/2012:19:38:19 +0100] Full reload complete.
    D [01/Jan/2012:19:38:19 +0100] cupsdCleanFiles(path="/var/spool/cups/tmp", pattern="(null)")
    I [01/Jan/2012:19:38:19 +0100] Cleaning out old files in "/var/spool/cups/tmp"...
    D [01/Jan/2012:19:38:19 +0100] Removed "/var/spool/cups/tmp/0039f4f0366a5"...
    D [01/Jan/2012:19:38:19 +0100] cupsdCleanFiles(path="/var/cache/cups", pattern="*.ipp")
    I [01/Jan/2012:19:38:19 +0100] Cleaning out old files in "/var/cache/cups"...
    I [01/Jan/2012:19:38:19 +0100] Listening to [v1.::1]:631 on fd 8...
    I [01/Jan/2012:19:38:19 +0100] Listening to 127.0.0.1:631 on fd 9...
    I [01/Jan/2012:19:38:19 +0100] Listening to /var/run/cups/cups.sock:631 on fd 10...
    I [01/Jan/2012:19:38:19 +0100] Resuming new connection processing...
    D [01/Jan/2012:19:38:19 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [01/Jan/2012:19:38:19 +0100] Discarding unused server-started event...
    D [01/Jan/2012:19:38:20 +0100] Report: clients=0
    D [01/Jan/2012:19:38:20 +0100] Report: jobs=0
    D [01/Jan/2012:19:38:20 +0100] Report: jobs-active=0
    D [01/Jan/2012:19:38:20 +0100] Report: printers=0
    D [01/Jan/2012:19:38:20 +0100] Report: printers-implicit=0
    D [01/Jan/2012:19:38:20 +0100] Report: stringpool-string-count=289
    D [01/Jan/2012:19:38:20 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:19:38:20 +0100] Report: stringpool-total-bytes=4792
    I [01/Jan/2012:20:53:48 +0100] Scheduler shutting down normally.
    D [01/Jan/2012:20:53:48 +0100] Discarding unused server-stopped event...
    I [01/Jan/2012:20:53:48 +0100] Saving job.cache...
    I [01/Jan/2012:20:54:26 +0100] Listening to [v1.::1]:631 (IPv6)
    I [01/Jan/2012:20:54:26 +0100] Listening to 127.0.0.1:631 (IPv4)
    I [01/Jan/2012:20:54:26 +0100] Listening to /var/run/cups/cups.sock (Domain)
    I [01/Jan/2012:20:54:26 +0100] Remote access is disabled.
    D [01/Jan/2012:20:54:26 +0100] Added auto ServerAlias mamapc
    I [01/Jan/2012:20:54:26 +0100] Loaded configuration file "/etc/cups/cupsd.conf"
    D [01/Jan/2012:20:54:26 +0100] Creating missing directory "/var/run/cups"
    D [01/Jan/2012:20:54:26 +0100] Repairing ownership of "/var/run/cups"
    D [01/Jan/2012:20:54:26 +0100] Repairing access permissions of "/var/run/cups"
    D [01/Jan/2012:20:54:26 +0100] Creating missing directory "/var/run/cups/certs"
    D [01/Jan/2012:20:54:26 +0100] Repairing ownership of "/var/run/cups/certs"
    D [01/Jan/2012:20:54:26 +0100] Repairing access permissions of "/var/run/cups/certs"
    I [01/Jan/2012:20:54:26 +0100] Using default TempDir of /var/spool/cups/tmp...
    I [01/Jan/2012:20:54:26 +0100] Configured for up to 100 clients.
    I [01/Jan/2012:20:54:26 +0100] Allowing up to 100 client connections per host.
    I [01/Jan/2012:20:54:26 +0100] Using policy "default" as the default.
    I [01/Jan/2012:20:54:26 +0100] Full reload is required.
    I [01/Jan/2012:20:54:27 +0100] Loaded MIME database from "/usr/share/cups/mime" and "/etc/cups": 35 types, 42 filters...
    I [01/Jan/2012:20:54:27 +0100] Loading job cache file "/var/cache/cups/job.cache"...
    I [01/Jan/2012:20:54:27 +0100] Full reload complete.
    D [01/Jan/2012:20:54:27 +0100] cupsdCleanFiles(path="/var/spool/cups/tmp", pattern="(null)")
    I [01/Jan/2012:20:54:27 +0100] Cleaning out old files in "/var/spool/cups/tmp"...
    D [01/Jan/2012:20:54:27 +0100] cupsdCleanFiles(path="/var/cache/cups", pattern="*.ipp")
    I [01/Jan/2012:20:54:27 +0100] Cleaning out old files in "/var/cache/cups"...
    I [01/Jan/2012:20:54:27 +0100] Listening to [v1.::1]:631 on fd 8...
    I [01/Jan/2012:20:54:27 +0100] Listening to 127.0.0.1:631 on fd 9...
    I [01/Jan/2012:20:54:27 +0100] Listening to /var/run/cups/cups.sock:631 on fd 10...
    I [01/Jan/2012:20:54:27 +0100] Resuming new connection processing...
    D [01/Jan/2012:20:54:27 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [01/Jan/2012:20:54:27 +0100] Discarding unused server-started event...
    D [01/Jan/2012:20:54:28 +0100] Report: clients=0
    D [01/Jan/2012:20:54:28 +0100] Report: jobs=0
    D [01/Jan/2012:20:54:28 +0100] Report: jobs-active=0
    D [01/Jan/2012:20:54:28 +0100] Report: printers=0
    D [01/Jan/2012:20:54:28 +0100] Report: printers-implicit=0
    D [01/Jan/2012:20:54:28 +0100] Report: stringpool-string-count=289
    D [01/Jan/2012:20:54:28 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:20:54:28 +0100] Report: stringpool-total-bytes=4792
    I [02/Jan/2012:05:34:23 +0100] Scheduler shutting down normally.
    D [02/Jan/2012:05:34:24 +0100] Discarding unused server-stopped event...
    I [02/Jan/2012:05:34:24 +0100] Saving job.cache...
    I [02/Jan/2012:05:35:05 +0100] Listening to [v1.::1]:631 (IPv6)
    I [02/Jan/2012:05:35:05 +0100] Listening to 127.0.0.1:631 (IPv4)
    I [02/Jan/2012:05:35:05 +0100] Listening to /var/run/cups/cups.sock (Domain)
    I [02/Jan/2012:05:35:05 +0100] Remote access is disabled.
    D [02/Jan/2012:05:35:05 +0100] Added auto ServerAlias mamapc
    I [02/Jan/2012:05:35:05 +0100] Loaded configuration file "/etc/cups/cupsd.conf"
    D [02/Jan/2012:05:35:05 +0100] Creating missing directory "/var/run/cups"
    D [02/Jan/2012:05:35:05 +0100] Repairing ownership of "/var/run/cups"
    D [02/Jan/2012:05:35:05 +0100] Repairing access permissions of "/var/run/cups"
    D [02/Jan/2012:05:35:05 +0100] Creating missing directory "/var/run/cups/certs"
    D [02/Jan/2012:05:35:05 +0100] Repairing ownership of "/var/run/cups/certs"
    D [02/Jan/2012:05:35:05 +0100] Repairing access permissions of "/var/run/cups/certs"
    I [02/Jan/2012:05:35:05 +0100] Using default TempDir of /var/spool/cups/tmp...
    I [02/Jan/2012:05:35:05 +0100] Configured for up to 100 clients.
    I [02/Jan/2012:05:35:05 +0100] Allowing up to 100 client connections per host.
    I [02/Jan/2012:05:35:05 +0100] Using policy "default" as the default.
    I [02/Jan/2012:05:35:05 +0100] Full reload is required.
    I [02/Jan/2012:05:35:06 +0100] Loaded MIME database from "/usr/share/cups/mime" and "/etc/cups": 35 types, 42 filters...
    I [02/Jan/2012:05:35:06 +0100] Loading job cache file "/var/cache/cups/job.cache"...
    I [02/Jan/2012:05:35:06 +0100] Full reload complete.
    D [02/Jan/2012:05:35:06 +0100] cupsdCleanFiles(path="/var/spool/cups/tmp", pattern="(null)")
    I [02/Jan/2012:05:35:06 +0100] Cleaning out old files in "/var/spool/cups/tmp"...
    D [02/Jan/2012:05:35:06 +0100] cupsdCleanFiles(path="/var/cache/cups", pattern="*.ipp")
    I [02/Jan/2012:05:35:06 +0100] Cleaning out old files in "/var/cache/cups"...
    I [02/Jan/2012:05:35:06 +0100] Listening to [v1.::1]:631 on fd 8...
    I [02/Jan/2012:05:35:06 +0100] Listening to 127.0.0.1:631 on fd 9...
    I [02/Jan/2012:05:35:06 +0100] Listening to /var/run/cups/cups.sock:631 on fd 10...
    I [02/Jan/2012:05:35:06 +0100] Resuming new connection processing...
    D [02/Jan/2012:05:35:06 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [02/Jan/2012:05:35:06 +0100] Discarding unused server-started event...
    D [02/Jan/2012:05:35:07 +0100] Report: clients=0
    D [02/Jan/2012:05:35:07 +0100] Report: jobs=0
    D [02/Jan/2012:05:35:07 +0100] Report: jobs-active=0
    D [02/Jan/2012:05:35:07 +0100] Report: printers=0
    D [02/Jan/2012:05:35:07 +0100] Report: printers-implicit=0
    D [02/Jan/2012:05:35:07 +0100] Report: stringpool-string-count=289
    D [02/Jan/2012:05:35:07 +0100] Report: stringpool-alloc-bytes=4648
    D [02/Jan/2012:05:35:07 +0100] Report: stringpool-total-bytes=4792
    I [02/Jan/2012:05:56:24 +0100] Scheduler shutting down normally.
    D [02/Jan/2012:05:56:24 +0100] Discarding unused server-stopped event...
    I [02/Jan/2012:05:56:24 +0100] Saving job.cache...
    I [02/Jan/2012:17:22:51 +0100] Listening to [v1.::1]:631 (IPv6)
    I [02/Jan/2012:17:22:51 +0100] Listening to 127.0.0.1:631 (IPv4)
    I [02/Jan/2012:17:22:51 +0100] Listening to /var/run/cups/cups.sock (Domain)
    I [02/Jan/2012:17:22:51 +0100] Remote access is disabled.
    D [02/Jan/2012:17:22:51 +0100] Added auto ServerAlias mamapc
    I [02/Jan/2012:17:22:51 +0100] Loaded configuration file "/etc/cups/cupsd.conf"
    D [02/Jan/2012:17:22:51 +0100] Creating missing directory "/var/run/cups"
    D [02/Jan/2012:17:22:51 +0100] Repairing ownership of "/var/run/cups"
    D [02/Jan/2012:17:22:51 +0100] Repairing access permissions of "/var/run/cups"
    D [02/Jan/2012:17:22:51 +0100] Creating missing directory "/var/run/cups/certs"
    D [02/Jan/2012:17:22:51 +0100] Repairing ownership of "/var/run/cups/certs"
    D [02/Jan/2012:17:22:51 +0100] Repairing access permissions of "/var/run/cups/certs"
    I [02/Jan/2012:17:22:51 +0100] Using default TempDir of /var/spool/cups/tmp...
    I [02/Jan/2012:17:22:51 +0100] Configured for up to 100 clients.
    I [02/Jan/2012:17:22:51 +0100] Allowing up to 100 client connections per host.
    I [02/Jan/2012:17:22:51 +0100] Using policy "default" as the default.
    I [02/Jan/2012:17:22:51 +0100] Full reload is required.
    I [02/Jan/2012:17:22:52 +0100] Loaded MIME database from "/usr/share/cups/mime" and "/etc/cups": 35 types, 42 filters...
    I [02/Jan/2012:17:22:52 +0100] Loading job cache file "/var/cache/cups/job.cache"...
    I [02/Jan/2012:17:22:52 +0100] Full reload complete.
    D [02/Jan/2012:17:22:52 +0100] cupsdCleanFiles(path="/var/spool/cups/tmp", pattern="(null)")
    I [02/Jan/2012:17:22:52 +0100] Cleaning out old files in "/var/spool/cups/tmp"...
    D [02/Jan/2012:17:22:52 +0100] cupsdCleanFiles(path="/var/cache/cups", pattern="*.ipp")
    I [02/Jan/2012:17:22:52 +0100] Cleaning out old files in "/var/cache/cups"...
    I [02/Jan/2012:17:22:52 +0100] Listening to [v1.::1]:631 on fd 8...
    I [02/Jan/2012:17:22:52 +0100] Listening to 127.0.0.1:631 on fd 9...
    I [02/Jan/2012:17:22:52 +0100] Listening to /var/run/cups/cups.sock:631 on fd 10...
    I [02/Jan/2012:17:22:52 +0100] Resuming new connection processing...
    D [02/Jan/2012:17:22:52 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [02/Jan/2012:17:22:52 +0100] Discarding unused server-started event...
    D [02/Jan/2012:17:22:53 +0100] Report: clients=0
    D [02/Jan/2012:17:22:53 +0100] Report: jobs=0
    D [02/Jan/2012:17:22:53 +0100] Report: jobs-active=0
    D [02/Jan/2012:17:22:53 +0100] Report: printers=0
    D [02/Jan/2012:17:22:53 +0100] Report: printers-implicit=0
    D [02/Jan/2012:17:22:53 +0100] Report: stringpool-string-count=289
    D [02/Jan/2012:17:22:53 +0100] Report: stringpool-alloc-bytes=4648
    D [02/Jan/2012:17:22:53 +0100] Report: stringpool-total-bytes=4792
    I [02/Jan/2012:18:15:27 +0100] Scheduler shutting down normally.
    D [02/Jan/2012:18:15:27 +0100] Discarding unused server-stopped event...
    I [02/Jan/2012:18:15:27 +0100] Saving job.cache...
    E [02/Jan/2012:18:40:40 +0100] cupsdAuthorize: pam_authenticate() returned 7 (Authentication failure)!
    E [02/Jan/2012:18:41:03 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:41:03 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:41:03 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:41:03 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:41:04 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:44:36 +0100] Returning HTTP Forbidden for CUPS-Delete-Printer (ipp://localhost/printers/Epson-Stylus-SX218) from localhost
    E [02/Jan/2012:18:46:25 +0100] Returning IPP client-error-document-format-not-supported for Print-Job (ipp://localhost:631/printers/Epson_Stylus_SX218) from localhost
    E [02/Jan/2012:18:54:25 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:54:25 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:54:25 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:54:26 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:56:58 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:58:04 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:58:04 +0100] Bad request line "%16%03%01" from localhost!
    W [02/Jan/2012:19:01:48 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz!
    E [02/Jan/2012:19:01:49 +0100] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    W [02/Jan/2012:19:01:53 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz!
    W [02/Jan/2012:19:01:53 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Xerox/xrx6120pu.ppd!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz!
    E [02/Jan/2012:19:02:06 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:19:02:11 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:19:02:11 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:19:02:11 +0100] Bad request line "%16%03%01" from localhost!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz!
    E [02/Jan/2012:19:02:57 +0100] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Xerox/xrx6120pu.ppd!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz!
    W [02/Jan/2012:19:03:42 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz!
    E [02/Jan/2012:19:03:42 +0100] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    W [02/Jan/2012:19:03:42 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Xerox/xrx6120pu.ppd!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz!
    E [02/Jan/2012:19:04:46 +0100] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Xerox/xrx6120pu.ppd!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz!
    E [02/Jan/2012:19:05:17 +0100] Bad request line "%16%03%01" from localhost!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz!
    E [02/Jan/2012:19:06:12 +0100] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Xerox/xrx6120pu.ppd!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz!
    E [02/Jan/2012:19:06:57 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:19:06:58 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:19:15:57 +0100] Avahi client failed, closing client to allow a clean restart
    W [02/Jan/2012:19:18:48 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz!
    E [02/Jan/2012:19:18:48 +0100] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Xerox/xrx6120pu.ppd!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz!
    E [02/Jan/2012:19:19:55 +0100] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Xerox/xrx6120pu.ppd!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz!
    E [02/Jan/2012:19:20:30 +0100] Returning IPP client-error-document-format-not-supported for Print-Job (ipp://localhost:631/printers/Epson_Stylus_SX218) from localhost
    E [02/Jan/2012:19:24:03 +0100] Returning IPP client-error-document-format-not-supported for Send-Document (ipp://localhost:631/printers/Epson_Stylus_SX218) from localhost
    Please let me know if you should need other outputs, logfiles, etc. I appreciate any idea that could help me to get this damn thing to finally print something.
    Thank you very much!

    Hi Radhakrishnan,
    ORARRP doesn't actually do any printing itself. Via COM/Active-X, it calls the appropriate program that corresponds to the type of output, and then this program does the actual printing. For PDF, it calls Acrobat Reader to print the document. Acrobat Reader displays the printer dialog to let you choose which printer to use, and then when you click OK, Acrobat Reader prints the document and sends it to the printer.
    I expect that you'll find that when you use Acrobat Reader yourself on this machine it has exactly the same problems with this particular printer configuration. If so, you'll need to contact Adobe for further assistance.
    regards,
    Stewart

  • TS4002 Can you tell me if the smtp settings have changed recently?  I use me/ICloud mail with Outlook and can not receive emails but outgoing emails are no longer working.  Error message is: Authentication failed because Outlook doesn't support any of the

    I am able to receive messages on my IMac using Outlook but am unable to send.  I've had no trouble in the past but began receiving the following messages today.
    5.7.8 Bad username or password (Authentication failed).
    Authentication failed because Outlook doesn't support any of the available authentication methods.
    I am able to send messages using this account on my IPhone and IPad so the IMac is the only place I am having issues.  Any advice?

    Here are the correct settings. They have never changed since iCloud debuted a year ago.
    Server information
    IMAP (Incoming Mail Server) information:
    Server name: imap.mail.me.com
    SSL Required: Yes
    Port: 993
    Username: [email protected] (use your @me.com address from your iCloud account)
    Password: Your iCloud password
    SMTP (outgoing mail server) information:
    Server name: smtp.mail.me.com
    SSL Required: Yes
    Port: 587
    SMTP Authentication Required: Yes
    Username: [email protected] (use your @me.com address from your iCloud account)
    Password: Your iCloud password
    Note: If you receive errors using SSL, try using TLS instead. SSL is required for both IMAP and SMTP connection with iCloud. POP is not supported by iCloud. 

  • 2011 MacBook Pro, 64 bit i7 quad core, upgraded to Lion OSx, Bootcamp installed with Windows 7, wanting to install Windows 8 (don't ask), tried downloading/installing bootcamp 5.0.5033, error message something similar to bootcamp doesn't support this Win

    2011 MacBook Pro, 64 bit i7 quad core, upgraded to Lion OSx, Bootcamp installed with Windows 7, wanting to install Windows 8 (don't ask), tried downloading/installing bootcamp 5.0.5033 (both on the mac/windows partitions (actually using a parallel to run Windows)), error message something similar to bootcamp doesn't support this Windows
    So the question is am I doing something wrong? Should I just try and install windows 8 through my windows 7 partition and see if I can use the bootcamp 5.05033. Or do I solely have to use the bootcamp to install Windows 8? I'm not too familiar with bootcamp and how it runs.

    if you're using parallels and full bootcamp then you're making it 100% more troublesome for youself then it needs to be
    bootcamp is running windows directly on the hardware this give full memory and cpu and 3d video game power
    running windows in parallels is running a virtual machine where one can't run powerful games and the like but one can have it in a window and change fast between osx and windows
    parallels as the only virutal machine (as far as I know) support not have the operating system as a file on the osx harddisk but can access a bootcamp parition as virtual machine but without the benefits bootcamps provides
    it's a service parallels provide for those who want both to play games in normal bootcamp and sometimes use windows in a virutal machine
    just install it like a normal virtual machine and you need not worry about bootcamp drivers and the likes
    plus it would mean that the windows part would be a part of the timemachine bacup of osx
    which it is not when it's in bootcamp

  • Apple TV error message HDMI doesn't support HDCP

    Apple TV error message HDMI doesn't support HDCP

    I ran into this problem and I re-started the Apple TV by holding down the Menu+Down arrow buttons, restarting my television and now i can watch everything.

  • Error 430 (Class doesn't support Automation)

    I 've created a script using VisualBasic to open the illustrator cs3. Its working fine with most of the systems. But in few machines, the script got struck with an "Error 430 (Class doesn't support Automation)". If i re-install the illustrator and then try, its working fine. Can anyone suggest me a solution for this issue with out re-install the illustrator again.
    Thanks in Advance

    if that's the problem is pretty easy to fix:
    add this on Form1_Load sub:
            Dim procs() As Process = Process.GetProcessesByName("Illustrator.exe")
            If procs.Length > 1 Then
                For i as Integer = 1 To procs.Length - 2
                    procs(i).Kill()
                Next
            End If
    .NET framework 2 is required for the above(or 1.1 can't remember for sure)
    hope it helps together with patrice's response.
    cheers;

Maybe you are looking for

  • How to change the size of youtube play/pause and progress bar?

    I have windows 8 and on internet explorer (hah), youtube videos play fine there. However, when I use Firefox, the display below videos showing the progress bar and play/pause decreases in size immensely. Is there a solution to this? This also applies

  • Problem in calling Webutil_host.host

    Dear all, There is a problem that after calling webutil_host.host, a non-oracle error 100501 popup. Can anyone help me to fix this problem. Thanks in advance. JY

  • UCS 1.4(3M) BIOS Issue ? no network/san boot when diskless

    Recreated faithfully on multiple  blades and chassis with VIC cards.  Have many SAN boot nodes in  production and testing and after upgrading firmware this week anytime I  apply my store policy of "diskless" to a blade I lose the ability to  boot fro

  • Web Applet Not Found

    I hav installed the J2SDK compiler to compile my test.java. Then it created succesfully the test.class. Then I make it viewable on web by this following code <applet code="test.class" width=980 height=550></applet>. My problem is when I view it on we

  • How can a user that uses a Remote Deskop Gateway reset their password if it expired?

    Right now when a Remote Desktop Gateway user's password expires, the gateway server does not prompt them to change it. Instead, it just doesn't allow them to connect to their machine. How can a remote user reset their expired password if they use a R