Does POP3 fail in Thunderbird 24.4?

Today TB auto-upgraded to 24.4 and I noticed that my mail accounts that use POP3 all stopped working. NSPR logs show the same kind of failure for accounts on different ISPs. IMAP accounts continue to work okay.
The only somewhat unusual extension I have is enigmail 1.6, but running with extension disabled yields exactly the same behavior.
I tried reinstalling TB 24.4 from a new download but see no change. I'm running TB on an up-to-date Win7 64-bit system.
Anyone have any suggestions for what to try next?

If it's of use to someone, here is the NSPR log produced by doing one attempt to get mail from a POP-based mail account:
2014-03-19 15:31:40.453000 UTC - 0[e0f140]: Setting server busy in nsPop3Protocol::LoadUrl
2014-03-19 15:33:20.490000 UTC - 0[e0f140]: Entering NET_ProcessPop3 0
2014-03-19 15:33:20.490000 UTC - 0[e0f140]: POP3: Entering state: 24
2014-03-19 15:33:20.490000 UTC - 0[e0f140]: POP3: Entering state: 25
2014-03-19 15:33:20.490000 UTC - 0[e0f140]: Clearing server busy in POP3_FREE
2014-03-19 15:33:20.490000 UTC - 0[e0f140]: Clearing running protocol in POP3_FREE
2014-03-19 15:33:20.491000 UTC - 0[e0f140]: ~nsPop3Protocol()
2014-03-19 15:33:20.491000 UTC - 0[e0f140]: Calling ReleaseFolderLock from ~nsPop3Sink
2014-03-19 15:33:20.491000 UTC - 0[e0f140]: ReleaseFolderLock haveSemaphore = FALSE

Similar Messages

  • SMTP works, but POP3 fails

    I've been a Thunderbird user for around 8-10 years now, and I use it with multiple email accounts. I've run into a configuration issue I've never seen before, and I cannot find a solution (so far).
    I changed my broadband ISP from Comcast to Frontier. With Frontier, of course, I get an email account. I can access and use the account just fine via webmail. However, when I manually configure in Thunderbird (autoconfigure produces the wrong settings), password authentication fails,
    When I try Advanced Configuration, SMTP works, but POP3 fails.
    I contacted Frontier support to verify the correct settings. They are as follow:
    POP3: pop3.frontier.com, SSL/TLS, Port 995
    SMTP: smtp.frontier.com, SSL/TLS, Port 465
    I'm using full email address for the user name. He double-checked the password on the POP3 server, and it's correct. I also disabled my firewall, but it didn't help.
    I'm perplexed as to why SMTP should work but not POP3.
    They do not support IMAP.
    Any ideas, anyone?

    SMTP works but pop fails:
    so you can send but not receive?
    Please provide info:
    Help > Troubleshooting Information
    click on 'Copy text to clipboard'
    paste info into this forum question
    you can edit/remove all info on fonts and printers but nothing else.
    When you try to Get Messages, do you get an error message?
    If yes, what does it say...word for word?

  • DTEXEC does not fail when SSIS package fails

    I need to run my SSIS 2012 packages through the catalog with DTEXEC. This works very well, except that if my SSIS package fails, DTEXEC does not fail. I need DTEXEC to fail, so my scheduler knows that there is an error.
    I use the following command:
    dtexec /ISServer "\SSISDB\MyFolder\MyProject\MyPackage.dtsx" /Ser MyServer /Par $Package::Partition;201412 /Env 5
    When I check the status of the run in the Catalog, it is failed.
    When I used SSIS 2008, I had no problem getting DTEXEC to fail when the packages failed.

    I've had the same problem, and come up with the following prototype for a SQL Script which I run in our JAMS Enterprise Scheduler. It uses SSISDB stored procedures to start the SSIS package and polls every 5 seconds to report any messages, and final
    status code of the package. JAMS parameters are delimited by << >> symbols, and will need to be changed for your scheduler/batch process. I guess the script could be converted to a stored procedure. I'm also hoping it will work with SQL High
    Availability groups to ensure the SSIS package runs on the server that's hosting the active database.
    DECLARE @execution_id BIGINT
    DECLARE @status INT= 1
    DECLARE @Event_Message_id BIGINT= 0
    DECLARE @Last_Event_Message_id BIGINT= 0
    DECLARE @message_time DATETIME2(7)
    DECLARE @message NVARCHAR(MAX)
    --Create a SSIS execution for the required SSIS package and return the execution_id
    EXEC [SSISDB].[catalog].[create_execution] @package_name = N'<<pPackageName>>.dtsx',
        @execution_id = @execution_id OUTPUT, @folder_name = N'<<pSSISFolderName>>',
        @project_name = N'<<pSSISProjectName>>', @use32bitruntime = <<p32Bit>>, @reference_id = NULL
    RAISERROR('Starting SSIS package <<pPackageName>> with execution_id %I64d on server %s',0,0,@execution_id,@@SERVERNAME) WITH NOWAIT
    --Set the logging level 0-none, 1-basic (recommended), 2-performance, 3-verbose
    EXEC [SSISDB].[catalog].[set_execution_parameter_value] @execution_id,
        @object_type = 50, @parameter_name = N'LOGGING_LEVEL',
        @parameter_value = <<pLogging_Level>>
    --Start the package executing
    EXEC [SSISDB].[catalog].[start_execution] @execution_id
    WHILE @status IN ( 1, 2, 5, 8 ) --created (1), running (2), canceled (3), failed (4), pending (5), ended unexpectedly (6), succeeded (7), stopping (8), and completed (9).
        BEGIN
            WAITFOR DELAY '00:00:05'
        --Get the status to see later if we've finished
            SELECT  @status = status
            FROM    SSISDB.catalog.executions
            WHERE   execution_id = @execution_id 
        --Are there any event messages since we last reported any?
            DECLARE curEventMessages CURSOR FAST_FORWARD
            FOR
                SELECT  event_message_id ,
                        message_time ,
                        message
                FROM    SSISDB.catalog.event_messages
                WHERE   operation_id = @execution_id
                        AND event_message_id > @Last_Event_Message_id;
            OPEN curEventMessages
            FETCH NEXT FROM curEventMessages INTO @Event_Message_id, @message_time,
                @message
            WHILE @@FETCH_STATUS = 0
                BEGIN
            --We've found a message, so display it - watch out for % signs in the message, they'll cause an error if we don't replace them
                    SET @message = CONVERT(NVARCHAR(MAX), @message_time, 113)
                        + ' ' + replace(@message,'%',' percent')
                    RAISERROR(@message,0,0) WITH NOWAIT
                    SET @Last_Event_Message_id = @Event_Message_id --Make a note that we've reported this message
                    FETCH NEXT FROM curEventMessages INTO @Event_Message_id,
                        @message_time, @message
                END
            CLOSE curEventMessages
            DEALLOCATE curEventMessages
        END
    --@Status indicates that package execution has finished, so let's look at the outcome, and error if there's a problem
    IF @status = 7
        RAISERROR('Package Succeeded',0,0)
    ELSE
        IF @status = 9
            RAISERROR('Package completed',0,0)
        ELSE
            IF @status = 3
                RAISERROR('Package Cancelled',16,1)
            ELSE
                IF @status = 4
                    RAISERROR('Package failed (see error message above)',16,1)
                ELSE
                    IF @status = 6
                        RAISERROR('Package ended unexpectedly',16,1)
                    ELSE
                        RAISERROR('Package ended with unknown status %i',16,1,@status)

  • Why Does AppleScript Fail With Google Earth?

    This simple script:
         tell application "Google Earth"
                GetCurrentVersion
         end tell
    fails with the following error:
         error "Google Earth got an error: Can’t continue GetCurrentVersion." number -1708
    and with the following Console message:
         3/2/13 5:24:42.505 PM Google Earth[53575]: +[NSDictionary scriptingRecordWithDescriptor:]: unrecognized selector sent to class 0xacdb248c
    Anyone know why?
    The GE AppleScript dictionary has the following entry:
    GetCurrentVersion v : Get the current version of the Google Earth client
          GetCurrentVersion record : record of major, minor and build numbers
    → list of integer : version fields
    AppleScript and Google Earth work fine for other users on this machine. It only fails on my account.
    I have tried deleting all vestiges of GE from the machine and reinstalling, but this hasn't worked.
    Any other ideas?

    tell application "System Events" to get has scripting terminology of application process "Google Earth"
    Result=true
    AFAIK, AS works with all other applications. It only fails with GE and only on my account.
    softwater, I apologize if my original post was not specific enough.
    I thought that the title "Why Does AppleScript Fail With Google Earth?" made it clear that the AS failure was with GE. I guess not.
    Message was edited by: Buadhai

  • What does call failed and call busy mean?

    I call my bf on Skype every time I see him on there and it rings and eventually it says call failed and sometimes it will say call busy, what does call failed and call busy mean?

    WuTom wrote:
    If a call is marked as "Call ended" does this guarantee the other person ended the call, or can it also mean the call disconnected or was dropped?
    Was talking with someone and at one point the "Call ended - call dropped". Few other times it was just marked as "Call ended", they have bad internet. So is it possible the "Call ended" means the call was dropped due to internet or were they for definite hanging up?
    Thanks
    Hi WuTom,
    From experience, it depends on the platform which you are using. In my case, my boyfriend is using Skype for iPhone and I am using Skype for Mac. Sometimes I find that the "Call ended - Call dropped" is the result of bad internet on my or his part. "Call Ended" on its own could mean one of two things, among others:
    1. A person accidentally touches the red end call button; or
    2. Skype crashes unexpectedly (either because of internet as you said or other issues such as flat battery)
    This is just from my personal experience, but I do hope it clears some stuff up for you. 

  • Server to POP3 failed

    Anytime I try to send a picture or e-mail out, I get an error message that says the server to the POP3 failed. If anyone knows how to fix this, please let me know!
    Thanks!

    Hi AnnaKate,
    What POP server are you using? Who is the email service provider?
    Some email providers, like Internet Service Providers, will only allow devices to send emails when connected to the Internet over a specific network.
    Try enabling the AT&T SMTP server and then sending the email over the EDGE or 3G network. Just tap Settings> Mail, Contacts, Calendars> tap the email account> tap the Outgoing Mail Server> tap the AT&T SMTP server> slide to On> press the Home button.
    This article: http://support.apple.com/kb/TS1426 will walk you through the process while providing aditional information.
    You can avoid the issue by setting up a Gmail, Yahoo!, AOL, or MobileMe account.
    -Jason

  • What is the most secure password transfer method for POP3 supported by Thunderbird?

    I will receive eMail from a POP3-Server that support encrypted transfer of passwords with the SASL-Methods "SCRAM-SHA-1" and "SCRAM-SHA-256" (successful tested with the command line tool 'mpop') but Thunderbird say that the Server does not support encrypted transfer of Passwords. I think in real Thunderbird does not support the strong Methods offered by the POP3-Server.
    What is the most secure method for Password transfer on POP3 that is supported by Thunderbird?
    Greetings Erik

    I do not see SASL listed, do you?

  • How can I read my old POP3 emails on Thunderbird from a closed email account that Thunderbird first wants me to open?

    For several years, I routinely used Thunderbird to download (POP mode) emails from my previous Centurytel.net email account. I thought that these POP emails downloaded onto my computer via Thunderbird would later be readable, even though I closed my Centurytel.net email account. However, when opening Thunderbird (to try to read any), the Thunderbird software insists on first logging into that (now defunct email account) by username and password. Of course, now that fails as that account at Centurytel.net no longer exists. Is there a way to still read such old emails by bypassing in Thunderbird the requirement to first log into that now defunct email account?
    Thanks in advance for any and all help, Paul

    Try setting Thunderbird to offline - look under File on the menu.
    Now if you move the messages to Local Folders, you can delete the account in Thunderbird and you won't get any further connection errors.

  • Spotlight does not work with Thunderbird? mdimporter installed but no work

    Hello,
    additional to my Apple-Mail i still use Thunderbird for my old PC-Accounts and the old mails.
    Thunderbird runs quite well, but the Mac-OS Spotlight does not find anything within the Mails stored in Thunderbird.
    The mdimporter from Mozilla is installed,
    I made reboots, re-Index, Double-Clicks, added the thunderbird-Folder to the private and removed again and everything else i could find anywhere.
    Nothing works.
    Anybody here who might give me a useful hint?
    Kind regards
    Falk

    ok this is some extra piece of software which seems to create a separate index for Thunderbird emails outside of the database files which can then be searched by spotlight. I don't use it so can't comment on this directly. one obvious thing is that you'd have to include system files in your search before you see any results from the thunderbird folder because all this stuff lives inside your user Library. to include system files in a search start finder search using command+f, click on "kind" scroll and click on "other". in the resulting popup select 'system files' and change the settings to include them in the search.

  • List data validation failed when creating a new list item but does not fail when editing an existing item

    Dear SharePoint Experts,
    Please help.
    Why does my simple formula work in Excel but not-work in SharePoint?
    Why does this formula...
    =IF([Request Type]="Review",(IF(ISBLANK([Request Date]),FALSE,TRUE)),TRUE)
    ...work in Excel but fail when I try to use it in SharePoint?
    The intent of this formula is the following...
    If the field "Request Type" has the value "Review" and the field "Request Data" is blank then show FALSE, otherwise show TRUE.
    SharePoint saves the formula, but when a list item is saved where the formula is implemented, (under List Settings, List Validation), SharePoint does not, say anything other than that the formula failed.
    Note that the "list data validation failed" error only happens when I am creating a new item-- the formula above works just fine when one is trying to Save on the edit form. 
    Can you help?
    Thanks.
    -- Mark Kamoski

    Dear Jason,
    I appreciate your efforts.
    However, it seems to me that this statement of yours is not correct...
    "If it meet the validation formula, then you can new or edit the item, otherwise, it will throw the 'list data validation failed' error, it is by design".
    I believe this is NOT the answer for the following reasons.
    When I create a new item and click Save, the validation error is "list data validation failed".
    When I edit an existing item and click Save, the validation error is "my custom error message" and this is, I believe, the way it needs to work each time.
    I think, at the core, the error my formula does not handle some condition of null or blank or other default value.
    I tried a forumla that casts the date back to a string, and then checked the string for a default value, but that did not work.
    I tried looking up the Correlation ID in the ULS when "list data validation failed" occurs, but that gave no useful information because, even though logging was set to Verbose, the stack trace in the error log was truncated and did not given any
    good details.
    However, it seems to me that SharePoint 2013 is not well-suited for complex validation rules, because...
    SharePoint 2013 list-level validation (NOT column-level validation) allows only 1 input for all the multi-field validation formulas in a given list-- so, if I had more than 1 multi-field validation rule to implement on a given list, it would need to be packed
    into that single-line-of-code forumla style, like Excel does. That is not practice to write, debug, or maintain.
    SharePoint 2013 list-level validation only allows 1 block of text for all such multi-field validation rules. So that will not work because I would have something like "Validation failed for one or more of the following reasons-- withdrawal cannot exceed
    available balance, date-of-birth cannot be after date-of-death,... etc". That will not work for me.
    The real and awesome solution would simply be enhancing SP 2013 so that column-level validation forumlas are able to reference other columns.
    But, for now, my workaround solution is to use JavaScript and jQuery, hook the onclick handler on the Save button, and that works good. The only problem, is that the jQuery validation rules run before any of the column-level rules created  with OOTB
    SP 2013. So, in some cases, there is an extra click for the enduser.
    Thanks,
    Mark Kamoski
    -- Mark Kamoski

  • ASA5510 sla monitor does not fail back

    I've been down this path before and never got a resolution to this issue.
    ASA5510 Security Plus
    Primary ISP conn is Comcast cable
    Secondary ISP conn is fract T1
    I duplicated the SLA code from http://www.cisco.com/en/US/partner/products/hw/vpndevc/ps2030/products_configuration_example09186a00806e880b.shtml
    When I pull the conn from primary ISP the default route to the secondary comes up
    When I reconnect the primary the default route to the secondary does not go away.
    I must either reload the ASA or remove/readd the two default outside routes.
    Anyone have this same experience and could lend a hand?
    Are there any commands I might have in my config that break SLA?
    If so I would have hoped either the Configuration Guide or Command Reference for 8.2 would say so, but I don't see any mentioned.
    I'm working remotely with my customer so I can't play with this except on off-hours.
    ASA running 8.2(2) so as to use AnyConnect Essentials.
    Thx,
    Phil

    Pls. read and try the workaround.
    CSCtc16148    SLA monitor fails to fail back when ip verify reverse is applied
    Symptom:
    Route Tracking may fail to fail back to the primary link/route when restored.
    Conditions:
    SLA monitor must configured along with ip verify reverse path on the tracked interface.
    Workaround:
    1. Remove ip verify reverse path off of the tracked interface
    or
    2. add a static route to the SLA target out the primary tracked interface.
    [Wrap text]  [Edit this enclosure]
    Release-note: Added 09/23/2009 20:28:24 by kusankar
    [Unwrap text]  [Edit this enclosure]
    Release-note: Added 09/23/2009 20:28:24 by kusankar
    [Uwrap text]  [Edit this enclosure]
    fixed-in-broadview-8.3.1.1_interim-by-cl104097: Added 03/23/2010 11:54:08 by perforce
    fixed-in-broadview-8.3.1.1_interim-by-cl104097: Added 03/23/2010 11:54:08 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://cdetsweb-prd.cisco.com/apps/dumpcr_att?identifier=CSCtc16148&title=fixed-in-broadview-8.3.1.1_interim-by-cl104097&ext=&type=FILE
    fixed-in-broadview-8.3.1.1_interim-by-cl104097: Added 03/23/2010 11:54:08 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://
    [UnWrap text]  [Edit this enclosure]
    fixed-in-broadview-8.3.1.1_interim-by-cl104097: Added 03/23/2010 11:54:08 by perforce
    [Wrap Text]  [Edit this enclosure]
    fixed-in-broadview-8.3.1.1_interim-by-cl104097: Added 03/23/2010 11:54:08 by perforce
    [Uwrap text]  [Edit this enclosure]
    fixed-in-broadview-8.3.1_fcs_throttle-by-cl103850: Added 03/22/2010 15:48:05 by perforce
    fixed-in-broadview-8.3.1_fcs_throttle-by-cl103850: Added 03/22/2010 15:48:05 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://cdetsweb-prd.cisco.com/apps/dumpcr_att?identifier=CSCtc16148&title=fixed-in-broadview-8.3.1_fcs_throttle-by-cl103850&ext=&type=FILE
    fixed-in-broadview-8.3.1_fcs_throttle-by-cl103850: Added 03/22/2010 15:48:05 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://
    [UnWrap text]  [Edit this enclosure]
    fixed-in-broadview-8.3.1_fcs_throttle-by-cl103850: Added 03/22/2010 15:48:05 by perforce
    [Wrap Text]  [Edit this enclosure]
    fixed-in-broadview-8.3.1_fcs_throttle-by-cl103850: Added 03/22/2010 15:48:05 by perforce
    [Uwrap text]  [Edit this enclosure]
    fixed-in-broadview-bennu-by-cl101314: Added 02/18/2010 19:06:08 by perforce
    fixed-in-broadview-bennu-by-cl101314: Added 02/18/2010 19:06:08 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://cdetsweb-prd.cisco.com/apps/dumpcr_att?identifier=CSCtc16148&title=fixed-in-broadview-bennu-by-cl101314&ext=&type=FILE
    fixed-in-broadview-bennu-by-cl101314: Added 02/18/2010 19:06:08 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://
    [UnWrap text]  [Edit this enclosure]
    fixed-in-broadview-bennu-by-cl101314: Added 02/18/2010 19:06:08 by perforce
    [Wrap Text]  [Edit this enclosure]
    fixed-in-broadview-bennu-by-cl101314: Added 02/18/2010 19:06:08 by perforce
    [Uwrap text]  [Edit this enclosure]
    fixed-in-broadview-idfw-by-cl101317: Added 02/18/2010 19:09:07 by perforce
    fixed-in-broadview-idfw-by-cl101317: Added 02/18/2010 19:09:07 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://cdetsweb-prd.cisco.com/apps/dumpcr_att?identifier=CSCtc16148&title=fixed-in-broadview-idfw-by-cl101317&ext=&type=FILE
    fixed-in-broadview-idfw-by-cl101317: Added 02/18/2010 19:09:07 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://
    [UnWrap text]  [Edit this enclosure]
    fixed-in-broadview-idfw-by-cl101317: Added 02/18/2010 19:09:07 by perforce
    [Wrap Text]  [Edit this enclosure]
    fixed-in-broadview-idfw-by-cl101317: Added 02/18/2010 19:09:07 by perforce
    [Uwrap text]  [Edit this enclosure]
    fixed-in-broadview-logging-ng-by-cl101311: Added 02/18/2010 19:03:08 by perforce
    fixed-in-broadview-logging-ng-by-cl101311: Added 02/18/2010 19:03:08 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://cdetsweb-prd.cisco.com/apps/dumpcr_att?identifier=CSCtc16148&title=fixed-in-broadview-logging-ng-by-cl101311&ext=&type=FILE
    fixed-in-broadview-logging-ng-by-cl101311: Added 02/18/2010 19:03:08 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://
    [UnWrap text]  [Edit this enclosure]
    fixed-in-broadview-logging-ng-by-cl101311: Added 02/18/2010 19:03:08 by perforce
    [Wrap Text]  [Edit this enclosure]
    fixed-in-broadview-logging-ng-by-cl101311: Added 02/18/2010 19:03:08 by perforce
    [Uwrap text]  [Edit this enclosure]
    fixed-in-broadview-main-by-cl101300: Added 02/18/2010 18:27:07 by perforce
    fixed-in-broadview-main-by-cl101300: Added 02/18/2010 18:27:07 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://cdetsweb-prd.cisco.com/apps/dumpcr_att?identifier=CSCtc16148&title=fixed-in-broadview-main-by-cl101300&ext=&type=FILE
    fixed-in-broadview-main-by-cl101300: Added 02/18/2010 18:27:07 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://
    [UnWrap text]  [Edit this enclosure]
    fixed-in-broadview-main-by-cl101300: Added 02/18/2010 18:27:07 by perforce
    [Wrap Text]  [Edit this enclosure]
    fixed-in-broadview-main-by-cl101300: Added 02/18/2010 18:27:07 by perforce
    [Uwrap text]  [Edit this enclosure]
    fixed-in-sedona-64bit-by-cl101362: Added 02/19/2010 04:52:24 by perforce
    fixed-in-sedona-64bit-by-cl101362: Added 02/19/2010 04:52:24 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://cdetsweb-prd.cisco.com/apps/dumpcr_att?identifier=CSCtc16148&title=fixed-in-sedona-64bit-by-cl101362&ext=&type=FILE
    fixed-in-sedona-64bit-by-cl101362: Added 02/19/2010 04:52:24 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://
    [UnWrap text]  [Edit this enclosure]
    fixed-in-sedona-64bit-by-cl101362: Added 02/19/2010 04:52:24 by perforce
    [Wrap Text]  [Edit this enclosure]
    fixed-in-sedona-64bit-by-cl101362: Added 02/19/2010 04:52:24 by perforce
    [Uwrap text]  [Edit this enclosure]
    fixed-in-sedona-bv64-by-cl101426: Added 02/19/2010 11:42:41 by perforce
    fixed-in-sedona-bv64-by-cl101426: Added 02/19/2010 11:42:41 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://cdetsweb-prd.cisco.com/apps/dumpcr_att?identifier=CSCtc16148&title=fixed-in-sedona-bv64-by-cl101426&ext=&type=FILE
    fixed-in-sedona-bv64-by-cl101426: Added 02/19/2010 11:42:41 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://
    [UnWrap text]  [Edit this enclosure]
    fixed-in-sedona-bv64-by-cl101426: Added 02/19/2010 11:42:41 by perforce
    [Wrap Text]  [Edit this enclosure]
    fixed-in-sedona-bv64-by-cl101426: Added 02/19/2010 11:42:41 by perforce
    [Uwrap text]  [Edit this enclosure]
    fixed-in-sedona-main-by-cl101297: Added 02/18/2010 18:24:15 by perforce
    fixed-in-sedona-main-by-cl101297: Added 02/18/2010 18:24:15 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://cdetsweb-prd.cisco.com/apps/dumpcr_att?identifier=CSCtc16148&title=fixed-in-sedona-main-by-cl101297&ext=&type=FILE
    fixed-in-sedona-main-by-cl101297: Added 02/18/2010 18:24:15 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://
    [UnWrap text]  [Edit this enclosure]
    fixed-in-sedona-main-by-cl101297: Added 02/18/2010 18:24:15 by perforce
    [Wrap Text]  [Edit this enclosure]
    fixed-in-sedona-main-by-cl101297: Added 02/18/2010 18:24:15 by perforce
    [Uwrap text]  [Edit this enclosure]
    fixed-in-titan-8.2.2_fcs_throttle-by-cl101307: Added 02/18/2010 18:57:08 by perforce
    fixed-in-titan-8.2.2_fcs_throttle-by-cl101307: Added 02/18/2010 18:57:08 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://cdetsweb-prd.cisco.com/apps/dumpcr_att?identifier=CSCtc16148&title=fixed-in-titan-8.2.2_fcs_throttle-by-cl101307&ext=&type=FILE
    fixed-in-titan-8.2.2_fcs_throttle-by-cl101307: Added 02/18/2010 18:57:08 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://
    [UnWrap text]  [Edit this enclosure]
    fixed-in-titan-8.2.2_fcs_throttle-by-cl101307: Added 02/18/2010 18:57:08 by perforce
    [Wrap Text]  [Edit this enclosure]
    fixed-in-titan-8.2.2_fcs_throttle-by-cl101307: Added 02/18/2010 18:57:08 by perforce
    [Uwrap text]  [Edit this enclosure]
    fixed-in-titan-bennu-by-cl101294: Added 02/18/2010 18:24:08 by perforce
    fixed-in-titan-bennu-by-cl101294: Added 02/18/2010 18:24:08 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://cdetsweb-prd.cisco.com/apps/dumpcr_att?identifier=CSCtc16148&title=fixed-in-titan-bennu-by-cl101294&ext=&type=FILE
    fixed-in-titan-bennu-by-cl101294: Added 02/18/2010 18:24:08 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://
    [UnWrap text]  [Edit this enclosure]
    fixed-in-titan-bennu-by-cl101294: Added 02/18/2010 18:24:08 by perforce
    [Wrap Text]  [Edit this enclosure]
    fixed-in-titan-bennu-by-cl101294: Added 02/18/2010 18:24:08 by perforce
    [Uwrap text]  [Edit this enclosure]
    fixed-in-titan-main-by-cl101282: Added 02/18/2010 16:48:04 by perforce
    fixed-in-titan-main-by-cl101282: Added 02/18/2010 16:48:04 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://cdetsweb-prd.cisco.com/apps/dumpcr_att?identifier=CSCtc16148&title=fixed-in-titan-main-by-cl101282&ext=&type=FILE
    fixed-in-titan-main-by-cl101282: Added 02/18/2010 16:48:04 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://
    [UnWrap text]  [Edit this enclosure]
    fixed-in-titan-main-by-cl101282: Added 02/18/2010 16:48:04 by perforce
    [Wrap Text]  [Edit this enclosure]
    fixed-in-titan-main-by-cl101282: Added 02/18/2010 16:48:04 by perforce
    [Uwrap text]  [Edit this enclosure]
    sla-mon-sh-tech: Added 09/23/2009 20:43:52 by kusankar
    sla-mon-sh-tech: Added 09/23/2009 20:43:52 by kusankarCan not view this .log file attachment inline, please click on the following link to view the attachment.
    http://cdetsweb-prd.cisco.com/apps/dumpcr_att?identifier=CSCtc16148&title=sla-mon-sh-tech&ext=log&type=FILE
    sla-mon-sh-tech: Added 09/23/2009 20:43:52 by kusankarCan not view this .log file attachment inline, please click on the following link to view the attachment.
    http://
    [UnWrap text]  [Edit this enclosure]
    sla-mon-sh-tech: Added 09/23/2009 20:43:52 by kusankar
    [Wrap Text]  [Edit this enclosure]
    sla-mon-sh-tech: Added 09/23/2009 20:43:52 by kusankar
    [Uwrap text]  [Edit this enclosure]
    static-analysis-titan-main: Added 02/18/2010 16:48:07 by perforce
    static-analysis-titan-main: Added 02/18/2010 16:48:07 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://cdetsweb-prd.cisco.com/apps/dumpcr_att?identifier=CSCtc16148&title=static-analysis-titan-main&ext=&type=FILE
    static-analysis-titan-main: Added 02/18/2010 16:48:07 by perforceCan not view this . file attachment inline, please click on the following link to view the attachment.
    http://
    [UnWrap text]  [Edit this enclosure]
    static-analysis-titan-main: Added 02/18/2010 16:48:07 by perforce
    [Wrap Text]  [Edit this enclosure]
    static-analysis-titan-main: Added 02/18/2010 16:48:07 by perforce
    -KS

  • Why does qmaster fail on my clustered computers?

    I'm using FCP 7 with compressor 3.5, and I'm getting failures when I try to run compressor against a Render Farm. I can't figure out why.
    All of my computers are set to managed, and I've used QAdministrator to build a cluster. My main iMac is also set as the controller. I've shared my folders off of the iMac with the network so that the other computers can R/W to the local disk. I do NOT have a SAN or NAS currently configured.
    All of my computers are statically assigned their IP addresses and are not connected to a DNS/DHCP server or Domain Controller. It's all local network without internet connection.
    What could I be doing wrong?
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <services>
       <service type="jobcontroller:com.apple.qmaster.cluster.admin" displayName="Tim Bergmann’s iMac" address="tcp://10.1.1.2:52248" hostName="Tim-Bergmanns-iMac.local">
          <logs tms="385495925.807" tmt="03/20/2013 12:12:05.807" pnm="qmasterqd">
             <mrk tms="385495925.808" tmt="03/20/2013 12:12:05.808" pid="1997" kind="begin" what="log-session"/>
             <log tms="385495925.810" tmt="03/20/2013 12:12:05.810" pid="1997" msg="Starting up"/>
             <log tms="385495925.817" tmt="03/20/2013 12:12:05.817" pid="1997" msg="Keep completed targets in history = true"/>
             <log tms="385495925.817" tmt="03/20/2013 12:12:05.817" pid="1997" msg="Keep completed segments in history = false"/>
             <mrk tms="385495953.686" tmt="03/20/2013 12:12:33.686" pid="1997" kind="begin" what="CJobControllerService::publishClusterStorage"></mrk>
             <log tms="385495953.687" tmt="03/20/2013 12:12:33.687" pid="1997" msg="Cluster storage URL = file2nfs://localhost/Cluster%20Storage/54170E4A-5AEE9756/shared/"/>
             <log tms="385495953.687" tmt="03/20/2013 12:12:33.687" pid="1997" msg="Publishing shared storage."/>
             <log tms="385495953.698" tmt="03/20/2013 12:12:33.698" pid="1997" msg="Subscribing to shared storage, local path = /var/spool/qmaster/54170E4A-5AEE9756/shared"/>
             <log tms="385495954.692" tmt="03/20/2013 12:12:34.692" pid="1997" msg="Result cluster storage URL = nfs://Tim-Bergmanns-iMac.local/Cluster%20Storage/54170E4A-5AEE9756/shared"/>
             <mrk tms="385495954.692" tmt="03/20/2013 12:12:34.692" pid="1997" kind="end" what="CJobControllerService::publishClusterStorage"></mrk>
             <log tms="385496028.510" tmt="03/20/2013 12:13:48.510" pid="1997" msg="Service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C sessionID mismatch (6C2F81C0-62AD-49C5-A255-13F26B4F5A22 != EB8B2DD5-1D53-4977-B54F-CC13B5C3FBE5) - did the service go down?"/>
             <log tms="385496028.511" tmt="03/20/2013 12:13:48.511" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C for 4 sec. and connecting failed - the service is down. %3Cad id=%22E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C%22 unmg=%220%22 suid=%22-1%22 host=%22Render-1.local%22 session=%22EB8B2DD5-1D53-4977-B54F-CC13B5C3FBE5%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%201%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.3:62071%22%3E%3C/ad%3E"/>
             <log tms="385496028.526" tmt="03/20/2013 12:13:48.526" pid="1997" msg="Service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF sessionID mismatch (3240C3A7-9CAD-4389-9096-EAB3F1C6683C != CCD764A6-5236-4CA9-9D86-2CDC308E4B37) - did the service go down?"/>
             <log tms="385496028.527" tmt="03/20/2013 12:13:48.527" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF for 4 sec. and connecting failed - the service is down. %3Cad id=%22AE991F65-4E48-4DC7-807A-5B5CACCE9FEF%22 unmg=%220%22 suid=%22-1%22 host=%22Render-2.local%22 session=%22CCD764A6-5236-4CA9-9D86-2CDC308E4B37%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.4:64334%22%3E%3C/ad%3E"/>
             <log tms="385496028.532" tmt="03/20/2013 12:13:48.532" pid="1997" msg="Not releasing service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C, sessionID has changed (6C2F81C0-62AD-49C5-A255-13F26B4F5A22 != EB8B2DD5-1D53-4977-B54F-CC13B5C3FBE5)"/>
             <log tms="385496028.533" tmt="03/20/2013 12:13:48.533" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:02:58;04 to 01:05:56;09, host = Render-1.local, exception = service down, fail count = 1. There are 2 hosts which haven't failed this request yet."/>
             <log tms="385496028.537" tmt="03/20/2013 12:13:48.537" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496028.565" tmt="03/20/2013 12:13:48.565" pid="1997" msg="Service B55BC0BF-7DC1-4131-B0A7-D958643FE8AB sessionID mismatch (69B6CF92-6F19-4A19-9F6E-A07F51C1DC10 != E9582F6E-70BE-45CF-8D1E-440DA722C755) - did the service go down?"/>
             <log tms="385496028.565" tmt="03/20/2013 12:13:48.565" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service B55BC0BF-7DC1-4131-B0A7-D958643FE8AB for 4 sec. and connecting failed - the service is down. %3Cad id=%22B55BC0BF-7DC1-4131-B0A7-D958643FE8AB%22 unmg=%220%22 suid=%22-1%22 host=%22Render-1.local%22 session=%22E9582F6E-70BE-45CF-8D1E-440DA722C755%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%201%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.3:62070%22%3E%3C/ad%3E"/>
             <log tms="385496028.598" tmt="03/20/2013 12:13:48.598" pid="1997" msg="Service FEBA9794-9834-4499-97E4-672D979ABF8A sessionID mismatch (9A9651EB-AD73-4B0B-B84A-1ACA7B75B1F9 != 74CFF689-E81F-4725-9B96-615F1C29A006) - did the service go down?"/>
             <log tms="385496028.611" tmt="03/20/2013 12:13:48.611" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service FEBA9794-9834-4499-97E4-672D979ABF8A for 4 sec. and connecting failed - the service is down. %3Cad id=%22FEBA9794-9834-4499-97E4-672D979ABF8A%22 unmg=%220%22 suid=%22-1%22 host=%22Render-2.local%22 session=%2274CFF689-E81F-4725-9B96-615F1C29A006%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%202%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.4:64335%22%3E%3C/ad%3E"/>
             <log tms="385496028.613" tmt="03/20/2013 12:13:48.613" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:00:00;00 to 01:02:58;03, host = Render-2.local, exception = service down, fail count = 1. There are 2 hosts which haven't failed this request yet."/>
             <log tms="385496028.616" tmt="03/20/2013 12:13:48.616" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496028.771" tmt="03/20/2013 12:13:48.771" pid="1997" msg="Not releasing service B55BC0BF-7DC1-4131-B0A7-D958643FE8AB, sessionID has changed (69B6CF92-6F19-4A19-9F6E-A07F51C1DC10 != E9582F6E-70BE-45CF-8D1E-440DA722C755)"/>
             <log tms="385496028.772" tmt="03/20/2013 12:13:48.772" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:05:56;10 to 01:08:54;15, host = Render-1.local, exception = service down, fail count = 1. There are 2 hosts which haven't failed this request yet."/>
             <log tms="385496028.776" tmt="03/20/2013 12:13:48.776" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496028.811" tmt="03/20/2013 12:13:48.811" pid="1997" msg="Not releasing service FEBA9794-9834-4499-97E4-672D979ABF8A, sessionID has changed (9A9651EB-AD73-4B0B-B84A-1ACA7B75B1F9 != 74CFF689-E81F-4725-9B96-615F1C29A006)"/>
             <log tms="385496028.812" tmt="03/20/2013 12:13:48.812" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:08:54;16 to 01:11:52;19, host = Render-2.local, exception = service down, fail count = 1. There are 2 hosts which haven't failed this request yet."/>
             <log tms="385496028.815" tmt="03/20/2013 12:13:48.815" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496032.900" tmt="03/20/2013 12:13:52.900" pid="1997" msg="Service B55BC0BF-7DC1-4131-B0A7-D958643FE8AB sessionID mismatch (E9582F6E-70BE-45CF-8D1E-440DA722C755 != 3A68B052-3EF7-4975-A7FC-9F2530112724) - did the service go down?"/>
             <log tms="385496032.901" tmt="03/20/2013 12:13:52.901" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service B55BC0BF-7DC1-4131-B0A7-D958643FE8AB for 4 sec. and connecting failed - the service is down. %3Cad id=%22B55BC0BF-7DC1-4131-B0A7-D958643FE8AB%22 unmg=%220%22 suid=%22-1%22 host=%22Render-1.local%22 session=%223A68B052-3EF7-4975-A7FC-9F2530112724%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%201%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.3:62086%22%3E%3C/ad%3E"/>
             <log tms="385496032.907" tmt="03/20/2013 12:13:52.907" pid="1997" msg="Not releasing service B55BC0BF-7DC1-4131-B0A7-D958643FE8AB, sessionID has changed (E9582F6E-70BE-45CF-8D1E-440DA722C755 != 3A68B052-3EF7-4975-A7FC-9F2530112724)"/>
             <log tms="385496032.908" tmt="03/20/2013 12:13:52.908" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:17:49;02 to 01:20:47;05, host = Render-1.local, exception = service down, fail count = 1. There are 1 hosts which haven't failed this request yet."/>
             <log tms="385496032.911" tmt="03/20/2013 12:13:52.911" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496032.920" tmt="03/20/2013 12:13:52.920" pid="1997" msg="Service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C sessionID mismatch (EB8B2DD5-1D53-4977-B54F-CC13B5C3FBE5 != 9D7BDC2F-6A77-4B7E-B053-A176D3BDD7BB) - did the service go down?"/>
             <log tms="385496032.920" tmt="03/20/2013 12:13:52.920" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C for 4 sec. and connecting failed - the service is down. %3Cad id=%22E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C%22 unmg=%220%22 suid=%22-1%22 host=%22Render-1.local%22 session=%229D7BDC2F-6A77-4B7E-B053-A176D3BDD7BB%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%201%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.3:62087%22%3E%3C/ad%3E"/>
             <log tms="385496032.941" tmt="03/20/2013 12:13:52.941" pid="1997" msg="Service FEBA9794-9834-4499-97E4-672D979ABF8A sessionID mismatch (74CFF689-E81F-4725-9B96-615F1C29A006 != 5E121676-96B6-44B7-9338-1FEFCFCC60C7) - did the service go down?"/>
             <log tms="385496032.941" tmt="03/20/2013 12:13:52.941" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service FEBA9794-9834-4499-97E4-672D979ABF8A for 4 sec. and connecting failed - the service is down. %3Cad id=%22FEBA9794-9834-4499-97E4-672D979ABF8A%22 unmg=%220%22 suid=%22-1%22 host=%22Render-2.local%22 session=%225E121676-96B6-44B7-9338-1FEFCFCC60C7%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%202%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.4:64345%22%3E%3C/ad%3E"/>
             <log tms="385496032.980" tmt="03/20/2013 12:13:52.980" pid="1997" msg="Service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF sessionID mismatch (CCD764A6-5236-4CA9-9D86-2CDC308E4B37 != 325251D4-DFD5-4726-8481-6FE854BDF331) - did the service go down?"/>
             <log tms="385496032.980" tmt="03/20/2013 12:13:52.980" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF for 4 sec. and connecting failed - the service is down. %3Cad id=%22AE991F65-4E48-4DC7-807A-5B5CACCE9FEF%22 unmg=%220%22 suid=%22-1%22 host=%22Render-2.local%22 session=%22325251D4-DFD5-4726-8481-6FE854BDF331%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.4:64344%22%3E%3C/ad%3E"/>
             <log tms="385496033.132" tmt="03/20/2013 12:13:53.132" pid="1997" msg="Not releasing service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C, sessionID has changed (EB8B2DD5-1D53-4977-B54F-CC13B5C3FBE5 != 9D7BDC2F-6A77-4B7E-B053-A176D3BDD7BB)"/>
             <log tms="385496033.133" tmt="03/20/2013 12:13:53.133" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:14:50;26 to 01:17:49;01, host = Render-1.local, exception = service down, fail count = 1. There are 2 hosts which haven't failed this request yet."/>
             <log tms="385496033.156" tmt="03/20/2013 12:13:53.156" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496033.164" tmt="03/20/2013 12:13:53.164" pid="1997" msg="Not releasing service FEBA9794-9834-4499-97E4-672D979ABF8A, sessionID has changed (74CFF689-E81F-4725-9B96-615F1C29A006 != 5E121676-96B6-44B7-9338-1FEFCFCC60C7)"/>
             <log tms="385496033.165" tmt="03/20/2013 12:13:53.165" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:20:47;06 to 01:23:45;11, host = Render-2.local, exception = service down, fail count = 1. There are 2 hosts which haven't failed this request yet."/>
             <log tms="385496033.168" tmt="03/20/2013 12:13:53.168" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496033.171" tmt="03/20/2013 12:13:53.171" pid="1997" msg="Not releasing service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF, sessionID has changed (CCD764A6-5236-4CA9-9D86-2CDC308E4B37 != 325251D4-DFD5-4726-8481-6FE854BDF331)"/>
             <log tms="385496033.172" tmt="03/20/2013 12:13:53.172" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:02:58;04 to 01:05:56;09, host = Render-2.local, exception = service down, fail count = 2. There are 1 hosts which haven't failed this request yet."/>
             <log tms="385496033.210" tmt="03/20/2013 12:13:53.210" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496037.193" tmt="03/20/2013 12:13:57.193" pid="1997" msg="Service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C sessionID mismatch (9D7BDC2F-6A77-4B7E-B053-A176D3BDD7BB != D00018FA-C018-4D96-8079-4789501B97BF) - did the service go down?"/>
             <log tms="385496037.193" tmt="03/20/2013 12:13:57.193" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C for 4 sec. and connecting failed - the service is down. %3Cad id=%22E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C%22 unmg=%220%22 suid=%22-1%22 host=%22Render-1.local%22 session=%22D00018FA-C018-4D96-8079-4789501B97BF%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%201%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.3:62101%22%3E%3C/ad%3E"/>
             <log tms="385496037.203" tmt="03/20/2013 12:13:57.203" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:08:54;16 to 01:11:52;19, host = Render-1.local, exception = service down, fail count = 2. There are 1 hosts which haven't failed this request yet."/>
             <log tms="385496037.207" tmt="03/20/2013 12:13:57.207" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496037.215" tmt="03/20/2013 12:13:57.215" pid="1997" msg="Service B55BC0BF-7DC1-4131-B0A7-D958643FE8AB sessionID mismatch (3A68B052-3EF7-4975-A7FC-9F2530112724 != FD78A150-CEF8-4CAF-9D26-1A8F195C41B4) - did the service go down?"/>
             <log tms="385496037.215" tmt="03/20/2013 12:13:57.215" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service B55BC0BF-7DC1-4131-B0A7-D958643FE8AB for 5 sec. and connecting failed - the service is down. %3Cad id=%22B55BC0BF-7DC1-4131-B0A7-D958643FE8AB%22 unmg=%220%22 suid=%22-1%22 host=%22Render-1.local%22 session=%22FD78A150-CEF8-4CAF-9D26-1A8F195C41B4%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%201%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.3:62100%22%3E%3C/ad%3E"/>
             <log tms="385496037.232" tmt="03/20/2013 12:13:57.232" pid="1997" msg="Service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF sessionID mismatch (325251D4-DFD5-4726-8481-6FE854BDF331 != 69C39B21-D68F-4FAE-B604-BF260DF77EA4) - did the service go down?"/>
             <log tms="385496037.233" tmt="03/20/2013 12:13:57.233" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF for 4 sec. and connecting failed - the service is down. %3Cad id=%22AE991F65-4E48-4DC7-807A-5B5CACCE9FEF%22 unmg=%220%22 suid=%22-1%22 host=%22Render-2.local%22 session=%2269C39B21-D68F-4FAE-B604-BF260DF77EA4%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.4:64356%22%3E%3C/ad%3E"/>
             <log tms="385496037.262" tmt="03/20/2013 12:13:57.262" pid="1997" msg="Service FEBA9794-9834-4499-97E4-672D979ABF8A sessionID mismatch (5E121676-96B6-44B7-9338-1FEFCFCC60C7 != BE768F9B-EC6E-49B5-AA47-7CDA25AE5AE0) - did the service go down?"/>
             <log tms="385496037.263" tmt="03/20/2013 12:13:57.263" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service FEBA9794-9834-4499-97E4-672D979ABF8A for 5 sec. and connecting failed - the service is down. %3Cad id=%22FEBA9794-9834-4499-97E4-672D979ABF8A%22 unmg=%220%22 suid=%22-1%22 host=%22Render-2.local%22 session=%22BE768F9B-EC6E-49B5-AA47-7CDA25AE5AE0%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%202%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.4:64357%22%3E%3C/ad%3E"/>
             <log tms="385496037.426" tmt="03/20/2013 12:13:57.426" pid="1997" msg="Not releasing service B55BC0BF-7DC1-4131-B0A7-D958643FE8AB, sessionID has changed (3A68B052-3EF7-4975-A7FC-9F2530112724 != FD78A150-CEF8-4CAF-9D26-1A8F195C41B4)"/>
             <log tms="385496037.427" tmt="03/20/2013 12:13:57.427" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:00:00;00 to 01:02:58;03, host = Render-1.local, exception = service down, fail count = 2. There are 1 hosts which haven't failed this request yet."/>
             <log tms="385496037.430" tmt="03/20/2013 12:13:57.430" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496037.494" tmt="03/20/2013 12:13:57.494" pid="1997" msg="Not releasing service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF, sessionID has changed (325251D4-DFD5-4726-8481-6FE854BDF331 != 69C39B21-D68F-4FAE-B604-BF260DF77EA4)"/>
             <log tms="385496037.495" tmt="03/20/2013 12:13:57.495" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:23:45;12 to 01:26:43;17, host = Render-2.local, exception = service down, fail count = 1. There are 2 hosts which haven't failed this request yet."/>
             <log tms="385496037.498" tmt="03/20/2013 12:13:57.498" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496037.499" tmt="03/20/2013 12:13:57.499" pid="1997" msg="Not releasing service FEBA9794-9834-4499-97E4-672D979ABF8A, sessionID has changed (5E121676-96B6-44B7-9338-1FEFCFCC60C7 != BE768F9B-EC6E-49B5-AA47-7CDA25AE5AE0)"/>
             <log tms="385496037.500" tmt="03/20/2013 12:13:57.500" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:05:56;10 to 01:08:54;15, host = Render-2.local, exception = service down, fail count = 2. There are 1 hosts which haven't failed this request yet."/>
             <log tms="385496037.503" tmt="03/20/2013 12:13:57.503" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496041.515" tmt="03/20/2013 12:14:01.515" pid="1997" msg="Service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C sessionID mismatch (D00018FA-C018-4D96-8079-4789501B97BF != A0030092-5C6E-46AF-8737-05654083AB51) - did the service go down?"/>
             <log tms="385496041.515" tmt="03/20/2013 12:14:01.515" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C for 4 sec. and connecting failed - the service is down. %3Cad id=%22E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C%22 unmg=%220%22 suid=%22-1%22 host=%22Render-1.local%22 session=%22A0030092-5C6E-46AF-8737-05654083AB51%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%201%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.3:62112%22%3E%3C/ad%3E"/>
             <log tms="385496041.523" tmt="03/20/2013 12:14:01.523" pid="1997" msg="Not releasing service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C, sessionID has changed (D00018FA-C018-4D96-8079-4789501B97BF != A0030092-5C6E-46AF-8737-05654083AB51)"/>
             <log tms="385496041.523" tmt="03/20/2013 12:14:01.523" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:20:47;06 to 01:23:45;11, host = Render-1.local, exception = service down, fail count = 2. There are 1 hosts which haven't failed this request yet."/>
             <log tms="385496041.530" tmt="03/20/2013 12:14:01.530" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496041.536" tmt="03/20/2013 12:14:01.536" pid="1997" msg="Service B55BC0BF-7DC1-4131-B0A7-D958643FE8AB sessionID mismatch (FD78A150-CEF8-4CAF-9D26-1A8F195C41B4 != DBA9799B-76A0-492B-A3B8-CDC083A06E80) - did the service go down?"/>
             <log tms="385496041.537" tmt="03/20/2013 12:14:01.537" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service B55BC0BF-7DC1-4131-B0A7-D958643FE8AB for 4 sec. and connecting failed - the service is down. %3Cad id=%22B55BC0BF-7DC1-4131-B0A7-D958643FE8AB%22 unmg=%220%22 suid=%22-1%22 host=%22Render-1.local%22 session=%22DBA9799B-76A0-492B-A3B8-CDC083A06E80%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%201%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.3:62113%22%3E%3C/ad%3E"/>
             <log tms="385496041.641" tmt="03/20/2013 12:14:01.641" pid="1997" msg="Service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF sessionID mismatch (69C39B21-D68F-4FAE-B604-BF260DF77EA4 != B67ED0BE-3332-49F8-8BE0-DCC902A7565F) - did the service go down?"/>
             <log tms="385496041.641" tmt="03/20/2013 12:14:01.641" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF for 4 sec. and connecting failed - the service is down. %3Cad id=%22AE991F65-4E48-4DC7-807A-5B5CACCE9FEF%22 unmg=%220%22 suid=%22-1%22 host=%22Render-2.local%22 session=%22B67ED0BE-3332-49F8-8BE0-DCC902A7565F%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.4:64369%22%3E%3C/ad%3E"/>
             <log tms="385496041.672" tmt="03/20/2013 12:14:01.672" pid="1997" msg="Service FEBA9794-9834-4499-97E4-672D979ABF8A sessionID mismatch (BE768F9B-EC6E-49B5-AA47-7CDA25AE5AE0 != 41626CB7-EF93-46D3-B602-A26B1A24E513) - did the service go down?"/>
             <log tms="385496041.673" tmt="03/20/2013 12:14:01.673" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service FEBA9794-9834-4499-97E4-672D979ABF8A for 4 sec. and connecting failed - the service is down. %3Cad id=%22FEBA9794-9834-4499-97E4-672D979ABF8A%22 unmg=%220%22 suid=%22-1%22 host=%22Render-2.local%22 session=%2241626CB7-EF93-46D3-B602-A26B1A24E513%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%202%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.4:64368%22%3E%3C/ad%3E"/>
             <log tms="385496041.706" tmt="03/20/2013 12:14:01.706" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:02:58;04 to 01:05:56;09, host = Render-1.local, exception = service down, fail count = 3. There are 1 hosts which haven't failed this request yet."/>
             <log tms="385496041.709" tmt="03/20/2013 12:14:01.709" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496041.710" tmt="03/20/2013 12:14:01.710" pid="1997" msg="Not releasing service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF, sessionID has changed (69C39B21-D68F-4FAE-B604-BF260DF77EA4 != B67ED0BE-3332-49F8-8BE0-DCC902A7565F)"/>
             <log tms="385496041.711" tmt="03/20/2013 12:14:01.711" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:14:50;26 to 01:17:49;01, host = Render-2.local, exception = service down, fail count = 2. There are 1 hosts which haven't failed this request yet."/>
             <log tms="385496041.717" tmt="03/20/2013 12:14:01.717" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496041.718" tmt="03/20/2013 12:14:01.718" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:17:49;02 to 01:20:47;05, host = Render-2.local, exception = service down, fail count = 2. There are 1 hosts which haven't failed this request yet."/>
             <log tms="385496041.722" tmt="03/20/2013 12:14:01.722" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496045.606" tmt="03/20/2013 12:14:05.606" pid="1997" msg="Service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C sessionID mismatch (A0030092-5C6E-46AF-8737-05654083AB51 != FF52830A-6269-4E3C-ACC4-68035A29387E) - did the service go down?"/>
             <log tms="385496045.607" tmt="03/20/2013 12:14:05.607" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C for 4 sec. and connecting failed - the service is down. %3Cad id=%22E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C%22 unmg=%220%22 suid=%22-1%22 host=%22Render-1.local%22 session=%22FF52830A-6269-4E3C-ACC4-68035A29387E%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%201%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.3:62120%22%3E%3C/ad%3E"/>
             <log tms="385496045.626" tmt="03/20/2013 12:14:05.626" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:00:00;00 to 01:02:58;03, host = Render-1.local, exception = service down, fail count = 3. There are 1 hosts which haven't failed this request yet."/>
             <log tms="385496045.630" tmt="03/20/2013 12:14:05.630" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496045.642" tmt="03/20/2013 12:14:05.642" pid="1997" msg="Service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF sessionID mismatch (B67ED0BE-3332-49F8-8BE0-DCC902A7565F != C52501DD-9692-4244-BB38-091F5BB1A722) - did the service go down?"/>
             <log tms="385496045.645" tmt="03/20/2013 12:14:05.645" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF for 4 sec. and connecting failed - the service is down. %3Cad id=%22AE991F65-4E48-4DC7-807A-5B5CACCE9FEF%22 unmg=%220%22 suid=%22-1%22 host=%22Render-2.local%22 session=%22C52501DD-9692-4244-BB38-091F5BB1A722%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.4:64374%22%3E%3C/ad%3E"/>
             <log tms="385496045.774" tmt="03/20/2013 12:14:05.774" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:05:56;10 to 01:08:54;15, host = Render-2.local, exception = service down, fail count = 3. There are 1 hosts which haven't failed this request yet."/>
             <log tms="385496045.782" tmt="03/20/2013 12:14:05.782" pid="1997" msg="Rescheduling the failed request."/>
          </logs>
       </service>
       <service type="requestprocessor:com.apple.qmaster.contentcontroller" displayName="Tim Bergmann’s iMac" address="tcp://10.1.1.2:52374" hostName="Tim-Bergmanns-iMac.local">
          <logs tms="385495954.758" tmt="03/20/2013 12:12:34.758" pnm="ContentController">
             <mrk tms="385495954.760" tmt="03/20/2013 12:12:34.760" pid="2005" kind="begin" what="log-session"/>
             <log tms="385495954.764" tmt="03/20/2013 12:12:34.764" pid="2005" msg="Starting up"/>
             <mrk tms="385496003.935" tmt="03/20/2013 12:13:23.935" pid="2005" kind="begin" what="service-request" req-id="95659D0D-E473-42FC-880F-E233593BCCFA:1" msg="Preprocessing job."></mrk>
             <mrk tms="385496008.955" tmt="03/20/2013 12:13:28.955" pid="2005" kind="end" what="service-request" req-id="95659D0D-E473-42FC-880F-E233593BCCFA:1" msg="Preprocessing job request end."></mrk>
             <mrk tms="385496009.007" tmt="03/20/2013 12:13:29.007" pid="2005" kind="begin" what="service-request" req-id="EB965BDE-0B54-4B45-BA50-547CE9744E87:1" msg="Preprocessing."></mrk>
             <mrk tms="385496014.010" tmt="03/20/2013 12:13:34.010" pid="2005" kind="end" what="service-request" req-id="EB965BDE-0B54-4B45-BA50-547CE9744E87:1" msg="Preprocessing service request end."></mrk>
          </logs>
       </service>
       <service type="servicecontroller:com.apple.stomp.transcoder" displayName="Render 1 2" address="tcp://10.1.1.3:62113" hostName="Render-1.local">
          <logs tms="385497699.989" tmt="03/20/2013 12:41:39.989" pnm="CompressorTranscoderX">
             <log tms="385497699.989" tmt="03/20/2013 12:41:39.989" pid="4897" kind="mrk" sub="error" what="get-log" avail="false" msg="Not logging to file."/>
          </logs>
       </service>
       <service type="servicecontroller:com.apple.stomp.transcoder" displayName="Render 2 2" address="tcp://10.1.1.4:64368" hostName="Render-2.local">
          <logs tms="385497699.975" tmt="03/20/2013 12:41:39.975" pnm="CompressorTranscoderX">
             <log tms="385497699.975" tmt="03/20/2013 12:41:39.975" pid="4637" kind="mrk" sub="error" what="get-log" avail="false" msg="Not logging to file."/>
          </logs>
       </service>
       <service type="servicecontroller:com.apple.stomp.transcoder" displayName="Render 1" address="tcp://10.1.1.3:62120" hostName="Render-1.local">
          <logs tms="385497700.008" tmt="03/20/2013 12:41:40.008" pnm="CompressorTranscoderX">
             <log tms="385497700.008" tmt="03/20/2013 12:41:40.008" pid="4910" kind="mrk" sub="error" what="get-log" avail="false" msg="Not logging to file."/>
          </logs>
       </service>
       <service type="servicecontroller:com.apple.stomp.transcoder" displayName="Render 2" address="tcp://10.1.1.4:64374" hostName="Render-2.local">
          <logs tms="385497699.992" tmt="03/20/2013 12:41:39.992" pnm="CompressorTranscoderX">
             <log tms="385497699.992" tmt="03/20/2013 12:41:39.992" pid="4650" kind="mrk" sub="error" what="get-log" avail="false" msg="Not logging to file."/>
          </logs>
       </service>
       <service type="servicecontroller:com.apple.stomp.transcoder" displayName="Tim Bergmann’s iMac" address="tcp://10.1.1.2:52251" hostName="Tim-Bergmanns-iMac.local">
          <logs tms="385495925.821" tmt="03/20/2013 12:12:05.821" pnm="CompressorTranscoderX">
             <mrk tms="385495925.823" tmt="03/20/2013 12:12:05.823" pid="1996" kind="begin" what="log-session"/>
             <log tms="385495925.827" tmt="03/20/2013 12:12:05.827" pid="1996" msg="Starting up"/>
             <mrk tms="385496024.462" tmt="03/20/2013 12:13:44.462" pid="1996" kind="begin" what="service-request" req-id="12BFC5E9-94E1-459C-BE2B-6FAD6D10BF4D:1" msg="Processing."></mrk>
             <mrk tms="385496974.947" tmt="03/20/2013 12:29:34.947" pid="1996" kind="end" what="service-request" req-id="12BFC5E9-94E1-459C-BE2B-6FAD6D10BF4D:1" msg="Processing service request end."></mrk>
             <mrk tms="385496974.981" tmt="03/20/2013 12:29:34.981" pid="1996" kind="begin" what="service-request" req-id="562D097C-96A0-4045-8578-CC81CC852CB5:7" msg="Processing."></mrk>
          </logs>
       </service>
    </services>

    Does the iOS device connect to other networks?
    Does the iOS device see the network?
    Any error messages?
    Do other devices now connect?
    Did the iOS device connect before?
    Try the following to rule out a software problem:                
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on your router
    .- Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Wi-Fi: Unable to connect to an 802.11n Wi-Fi network      
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem and it does not connect to any networks make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • Why does Photoshop fail to update?.

    I have just fixed the problem with Creative cloud failing to show apps and now that i have fixed it, i cant update my apps... all i want to do is do my work with no issues.
    ~Steele Priddy
       Evocca student

    You can go into the Help menu of your apps and choose "Update".
    I'm not experienced enough with the CC Desktop app except to suggest you should sign out/exit
    Launch the CC Deaktop app and sign in. Also it does take a while for updates to show up on the CC panel.
    Gene

  • What does 'Activation: failed' mean?

    After the reset that occurs when I attempted updating 4.4.1 to 4.4.2, I saw 'Activation: failed' in the general>about settings screen.
    Now after a little while, it is no longer there.  But, what does it mean, generally?

    It is not properly connected to the network.
    Make sure DNS is set to auto (settings - general - network)
    If on wifi try ethernet
    Make sure router has port 123 open (refer to manual if unsure)

  • What does "Decompression Failed" mean?

    I downloaded an educational program and it says the decompression failed. What does that mean and does it mean I can't download the program successfully?

    The application was probably fit into a smaller size package for faster downloading using a compression application such as Zip. There are many different compression schemes and yours had problems. Maybe it didn't know how to handle the file, or perhaps the file was corrupted during downloading. Try downloading the file again. You can also right click on a file's link to do the download and place it on your computer so you can do the decompressing separately by double clicking on it. If you still have problems then post the file extension here, the 3 letters after the dot at the end of the file name, e.g. .zip., .sit, etc.

Maybe you are looking for

  • How do you automatically stick images together without merging?

    I have to make an animation for a game, and I have to put a large numer of images exactly next to eachother in a line. This takes a lot of time to do by hand. Is there a way (or software) to do this automatically? Thanx! -x-

  • UDT Type Mismatch Problem

    Hi; We have a project which has two modules which uses same UDTs. We have generated UDT's shown in example code. When our project calls B's SP which should return UDT from B.DbObjects namespace, the returned type is A.DbObjects namespace. This occurs

  • INI_TRANS value and performance!!

    Hi, all. I am responsible for creating database objects of a production 2 node RAC database(10.2.0.2.0). The block size is 8K. The tablespace is locally managed and ASSM is enabled. My question is : 1. Is it good to set ini_trans=1 of tables and inde

  • 10g 10.1.2.0.2 MouseWheelListener.class

    Hi, We're eagerly adopting the 10g 10.1.2.0.2 release of Forms and Reports services, and while browsing the error_log (yay, what fun :) ) I noticed this error messsage: File does not exist: ORACLE_HOME/forms/java/java/awt/event/MouseWheelListener.cla

  • Can we use Call transaction and session method in same program ?

    Hi experts,                  Is it suggested to use call Transaction and session method in the same Program ?                  i have a doubt , why cant we use multiple call transactions in same program instead of session method if we have multiple t