LAN Gaming: Delta Force BHD...can't see pc or vise versa hosted game

Sorry, didnt know where else to go but here. I've checked on Google, and can't find anything about this. I'm on a home network, windows and apples firewall is off, newest well only version of the Mac game 10.5 and the newest ver for pc 1.5 but can't seem to get them to see the other's hosted game. We have our computers shared and they see one another etc and we're on a Linksys wireless router but right now we're hard wired in. Any suggestions? I've double checked the game settings too!! Årgh...

Nevermind, it oddly enough started working.

Similar Messages

  • I can't see my profile picture while playing games

    WWhy can't I see my profile picture when connected to Facebook playing games?

    Do you by chance have Logitech QuickCam webcam connected to your computer?
    You can also try to reset all Skype settings.
    Quit Skype or use Windows Task Manager to kill any Skype.exe process. Go to Windows Start and in the Search/Run box type %appdata% and then press Enter or click the OK button. The Windows File Explorer will pop up. There locate a folder named “Skype”. Rename this folder to something different, e.g. Skype_old. Restart Skype.
    N.B. If needed, you will still be able to re-establish your call and chat history. All data is still saved in the Skype_old folder.

  • Can't see or play any videos on websites!

    Hello,
    All of a sudden, I've lost the ability to see or play any videos. On youtube, I can't see or watch any videos. On websites like Scifi.com, I can't see any videos, visit the forum or see of their flash-enabled content. I know that I have Adobe flash installed, but I don't know what else to check for. Please offer any suggestions. Thanks.

    Ditto here.
    No video content is viewable on my iMac G5. This started happening after startup.
    But I can view video content just fine on our other iMac G5, and on a G4 powerbook, both under Safari 3 & MacOS 10.5.6.
    I have reset Safari, run Cocktail maintenance tasks, repaired permissions, etc. all with no change.

  • New iMac can't see Laserwriter Select connected to a PC on same LAN-- why?

    I've just returned to the Mac universe after a five year hiatus. When I discovered how well Macs play with PCs and Unix these days, I decided to come back.
    There's just one issue: I can't print to my Laserwriter Select 360, connected by parallel port to a Windows XP Pro PC on my LAN. My new iMac doesn't see the printer at all. The imac does see the PC's workgroup in the Network Neighborhood, and I can mount the shared volumes of that PC on the mac with no problem, so the Mac can talk to the PC for filesharing, anyway. (smb:// address used)
    Applecare has no clue why I can't see the printer. They told me to turn on Windows Sharing and Print Sharing, but that had no effect. The Windows machines on my LAN can all see and print to the shared Laserwriter Select 360, no problem. They're all running Windows XP pro, latest patches.
    The iMac of course has the latest Tiger. All machines are on my internal subnet 192.168.0.*.
    I just got a new cartridge for the Laserwriter, and there's no reason to retire it-- that printer works great. I just can't believe/accept that the iMac can't be made to print to an Apple printer! (Also, I've heard that appletalk->ethernet bridge solutions are flaky so that's not an ideal route).
    Any/all ideas welcome.
    imac g5   Mac OS X (10.4.3)  

    Here's the result. The PC is on 192.168.0.2, and the iMac was assigned .18 by DHCP.
    I just tried adding a lexmark printer to the PC (over USB) to see if there might be some difference. The other windows box on the lan sees the LexMark same as it sees the Laserwriter (and both show up in the output of smbclient below). Needless to say, the iMac doesn't see the LexMark either.
    Thanks for your help with this one...
    will-kesslers-imac-g5:~ willkessler$ smbclient -NL 192.168.0.2
    Domain=[WILLPC] OS=[Windows 5.1] Server=[Windows 2000 LAN Manager]
    Sharename Type Comment
    My Documents Disk
    IPC$ IPC Remote IPC
    print$ Disk Printer Drivers
    SharedDocs Disk
    AppleLas Printer Apple LaserWriter Select 360
    Downloads Disk
    My Pictures Disk
    ADMIN$ Disk Remote Admin
    C$ Disk Default share
    Printer Printer Fax via eFax 3.5
    LexmarkX Printer Lexmark X63
    session request to 192.168.0.2 failed (Called name not present)
    session request to 192 failed (Called name not present)
    Domain=[WILLPC] OS=[Windows 5.1] Server=[Windows 2000 LAN Manager]
    Server Comment
    Workgroup Master
    --------- -------

  • Where can we see the Delta Method suported by data source.

    Hi all,
    Please let me know where can we see delta method for the Business constraint DataSource ? such as where this data source had delta method as Direct Delta or Queued Delta or V3 Undersized update.
    I want to find out for 0FI_GL_4 DataSource.
    Regards
    Ashutosh

    0FI_GL_4  is delta capable.
    http://help.sap.com/saphelp_nw70/helpdata/en/0c/b4973c115a6f3ae10000000a114084/content.htm
    Finance works on Time Stamp not on LO.

  • Could someone look at my code, I can't see the error myself

    Hi,
    I have been working on a small game, and have been able to make most of it run.
    However, every now and again when i try to start it, it loads the frame and graphics, but don't start the game loop.
    I think i have been starring at it too long, because i can't see WHY?
    Here is the code, i assume its something connected to the boolean "waitingForKeyPress"
    Sorry about the commentss being in danish, but its a quite simple program, so im sure it makes sense.
    public class EagleFlight extends Canvas {
         private static final long serialVersionUID = 1L;
         //Strategybuffer til page flipping, samt grafiske variable.
         private BufferStrategy strategy = null;
         //private BufferedImage backbuffer = null;     
         private ImageEntity background = null;     
         //private Graphics2D g;     
         //private BufferedImage expl;
         private BufferedImage[] explosion2;     
         private boolean gameRunning = true;
         //Lister over entiteter i spillet.
         private ArrayList<Entity> entities = new ArrayList<Entity>();
         private ArrayList<ShipEntity> shipAnimation = new ArrayList<ShipEntity>();
         //Lister over entiteter der evt skal fjernes i gameLoop.
         private ArrayList<Entity> removeList = new ArrayList<Entity>();
         private ArrayList<Entity> removeAsteroid = new ArrayList<Entity>();
         //Variable til spillerens skib.
         private ShipEntity ship, shipL, shipR, eagleM;
         private double moveSpeed = 300;
         private long lastFire = 0;
         private long firingInterval = 500;
         private String message = "";
         //Booleans til keyInput og spilkontrol.
         private boolean waitingForKeyPress = true;
         private boolean leftPressed = false;
         private boolean rightPressed = false;
         private boolean firePressed = false;
         private boolean isThrusting = false;
         private Boolean shipHit = false;
         private Boolean animation = false;
         //Klasser der bruges i spillet.
         private FXSound fxSound = null;
         private Music music;     
         int score =0;
         private int astroidCount = 0;
         //Variable til ekspoltionsanimation.
         private int v = 0, x = 0, y = 0, eksp = 0;
         //Opretter JFrame og tilf&#65533;jer JPanel.
         public EagleFlight(){
              JFrame container = new JFrame("Eagle Flight 1999");                    
              JPanel panel = (JPanel) container.getContentPane();
              panel.setPreferredSize(new Dimension(800,600));
              panel.setLayout(null);
              //Tilf&#65533;jer EagleFlight canvas til JPanel
              setBounds(0,0,800,600);
              panel.add(this);
              //S&#65533;ttes til true, s&#65533; for&#65533;get graphics har ansvaret.
              setIgnoreRepaint(true);
              //Pakker og synligg&#65533;r vinduet.
              container.pack();
              container.setResizable(false);
              container.setVisible(true);
              // Tilf&#65533;jer windows close funktion
              container.addWindowListener(new WindowAdapter() {
                   public void windowClosing(WindowEvent e) {
                        System.exit(0);
              // Tilf&#65533;jer keyListener og inputhandler.
              addKeyListener(new KeyInputHandler());
              //S&#65533;tter fokus til dette vindue-
              requestFocus();
              // Laver buffering strategy til accelerated graphics
              createBufferStrategy(2);
              strategy = getBufferStrategy();
              // Tilf&#65533;jer midlertidigt Entities, s&#65533; startsk&#65533;rmen ikke er tom.
              initEntities();
         }//End of EagleFlight().
         //Nulstiller variable og lister.
         private void startGame() {
              entities.clear();
              initEntities();          
              shipHit = false;          
              leftPressed = false;
              rightPressed = false;
              firePressed = false;
              gameRunning = true;
              music = new Music();
              music.start();
              waitingForKeyPress = false;
         }//end of startgame().
         private void initEntities() {
              //Laver 3 skibe til thrusteranimationen.
              ship = new sprite.ShipEntity(this,"eagle.png",370,430);
              shipL = new sprite.ShipEntity(this,"eagle1.png",370,430);
              shipR = new sprite.ShipEntity(this,"eagle2.png",370,430);
              shipAnimation.add(ship);
              shipAnimation.add(shipL);
              shipAnimation.add(shipR);
              //Opretter baggrundsbillede.
              new BufferedImage(800,600,BufferedImage.TYPE_INT_RGB);
              background = new ImageEntity("stars.png",0,0);
              //Klarg&#65533;r special effect lyd.
              fxSound = new FXSound();
              //Opretter eksplotionsanimation
              explosion2 = new ExplotionImages().explosion();
              //Laver en pokkers bunke asteroider og placerer dem "over" JPanel, s&#65533; de falder naturligt.
              for (int row=0;row<6;row++) {
                   for (int x=0;x<10;x++) {
                        Entity astroid = new sprite.Astroid(this,"asteroid1.png",20+(x*120),(-2800)+row*400);
                        entities.add(astroid);                                   
                        astroidCount++;
              for (int row=0;row<6;row++) {
                   for (int x=0;x<10;x++) {
                        Entity astroid = new sprite.Astroid(this,"asteroid4.png",20+(x*120),(-3800)+row*400);
                        entities.add(astroid);                                   
                        astroidCount++;
              for (int row=0;row<6;row++) {
                   for (int x=0;x<10;x++) {
                        Entity astroid = new sprite.Astroid(this,"asteroid2.png",20+(x*120),(-4800)+row*400);
                        entities.add(astroid);                                   
                        astroidCount++;
              for (int row=0;row<6;row++) {
                   for (int x=0;x<10;x++) {
                        Entity astroid = new sprite.Astroid(this,"asteroid3.png",20+(x*120),(-5800)+row*400);
                        entities.add(astroid);                                   
                        astroidCount++;
         }//end of initEntities()
         //Fjerner de entities der ikke bruges mere.
         //@param entiteten der skal fjernes.
         public void removeEntity(Entity entity)
              removeList.add(entity);               
         }//end of removeEntity().
         //Tilf&#65533;jer ramte asteroider til remove listen.
         //@param entiteten der skal tilf&#65533;jes.
         public void removeAsteroid(Entity doomed){
              removeAsteroid.add(doomed);
         }//End of removeAsteroid().
         //Udf&#65533;res n&#65533;r spilleren d&#65533;r.
         public void notifyDeath() {
              message = "All your base are belong to us!";
              shipHit = true;
              removeAsteroid.add(eagleM);
              shipAnimation.clear();          
         }//End of notifyDeath().
         //Fors&#65533;ger at affyre v&#65533;ben, hvis reload er ok og skibet ikke er ramt.
         public void tryToFire() {
              // check that we have waiting long enough to fire
              if (System.currentTimeMillis() - lastFire < firingInterval) {
                   return;
              if (!shipHit){
                   lastFire = System.currentTimeMillis();
                   ShotEntity shot = new sprite.ShotEntity(this,"shot.gif",ship.getX()+23,ship.getY()-15);
                   entities.add(shot);
                   fxSound.fxSound1();
         }//End of tryToFire().
         //Metode til at vinde spillet.
         public void notifyAlienKilled() {
              astroidCount--;
              score++;
              fxSound.fxSound3();
              if (astroidCount == 0) {
         }//End of notifyAlienKilled()
         public void gameLoop() {
              long lastLoopTime = System.currentTimeMillis();
              long timeInGame = 0;
              // I dette loop udf&#65533;res spillets grafik og logik.
              while (gameRunning) {
                   // Beregner tid for hvor meget de enkelte grafiske enheder skal flyttes
                   long delta = System.currentTimeMillis() - lastLoopTime;
                   lastLoopTime = System.currentTimeMillis();
                   timeInGame = (timeInGame + System.currentTimeMillis()/100000);
                   // Skaffer den grafiske acceleration.
                   // Tegner baggrunden.
                   Graphics2D g = (Graphics2D) strategy.getDrawGraphics();
                   background.draw(g);
                   //Cykler rundt mellem asteroider og flytter dem.
                   if (!waitingForKeyPress) {
                        for (int i=0;i<entities.size();i++) {
                             Entity entity = (Entity) entities.get(i);
                             entity.move(delta);
                        //Bev&#65533;ger de 3 skibe i sync.
                        for (int e=0;e<shipAnimation.size();e++) {
                             ShipEntity fakeeaglemove = (ShipEntity) shipAnimation.get(e);
                             fakeeaglemove.move(delta);
                   // Cykler rundt mellem entities og tegner dem.          
                   for (int i=0;i<entities.size();i++) {
                        Entity entity = (Entity) entities.get(i);
                        entity.draw(g);
                   //Tegner det skib der er i brug.
                   for (int e=0;e<shipAnimation.size();e++)
                        eagleM = (ShipEntity) shipAnimation.get(e);
                        if (leftPressed)
                        {eagleM = shipL;
                        if (rightPressed)
                        {eagleM = shipR;
                        else if ((!leftPressed) && (!rightPressed))
                        {eagleM = ship;
                        eagleM.draw(g);
                   //Brute force detection p&#65533; skibet og asteroider.               
                   try {
                        for (int c = 0; c < entities.size(); c++) {
                             for (int m = 0; m < shipAnimation.size(); m++) {
                                  Entity me = (Entity) shipAnimation.get(m);
                                  Entity him = (Entity) entities.get(c);
                                  if (me.collidesWith(him)) {
                                       //removeAlien.add(him);
                                       me.collidedWith(him);
                                       him.collidedWith(me);
                   } catch (Exception e) {
                   //Brute force detection p&#65533; skud og asteroider.
                   try {
                        for (int p = 0; p < entities.size(); p++) {
                             for (int s = p + 1; s < entities.size(); s++) {
                                  Entity me = (Entity) entities.get(p);
                                  Entity him = (Entity) entities.get(s);
                                  if (me.collidesWith(him)) {
                                       me.collidedWith(him);
                                       him.collidedWith(me);
                   } catch (Exception e) {
                   //Explotion animation.
                   for (int i=0;i<removeAsteroid.size();i++) {
                        Entity entity = (Entity) removeAsteroid.get(i);
                        explosion(entity);                                   
                   if (animation){
                        int sequence[] = { 0,1,2,3,4,5,5,4,3,2,1,0};                    
                        eksp = sequence[v];
                        g.drawImage(explosion2[eksp], x-100,y-100, null);
                   //Afslutter spillet hvis spillerens skib er ramt.
                   if (eksp == 0 || v == 12){     
                        if (shipHit){
                             animation = false;
                             waitingForKeyPress = true;
                             music.stop();                                        
                             if(isThrusting){
                                  fxSound.StopThruster();
                        animation = false;
                        v = 0;
                        eksp = 0;
                   v++;//Opdaterer image nummer for eksplotionsanimation til n&#65533;ste genneml&#65533;b.
                   // Fjerner entities der ikke er med mere.
                   entities.removeAll(removeList);
                   entities.removeAll(removeAsteroid);
                   //Nulstiller removelisterne
                   removeList.clear();                              
                   removeAsteroid.clear();
                   // Mens der ventes p&#65533; keyinput vises dette.
                   if (waitingForKeyPress) {
                        g.setColor(Color.white);
                        g.drawString(message,(800-g.getFontMetrics().stringWidth(message))/2,250);
                        g.drawString("Insert coin",(800-g.getFontMetrics().stringWidth("Insert coin"))/2,300);
                        timeInGame = 0;
                   g.setColor(Color.white);               
                   g.drawString("Score: "+score,720,595);
                   g.drawString("Time in Flight: "+timeInGame/1000000000+" Secs",5,595);
                   // Graphics ryttes op og bufferen flippes.
                   g.dispose();
                   strategy.show();
                   // Nulstiller skibets bev&#65533;gelse.
                   ship.setHorizontalMovement(0);
                   shipL.setHorizontalMovement(0);
                   shipR.setHorizontalMovement(0);
                   //Tilpasser skibets horizontale bev&#65533;gelseshastighed til input.
                   if ((leftPressed) && (!rightPressed))
                        ship.setHorizontalMovement(-moveSpeed);
                        shipL.setHorizontalMovement(-moveSpeed);
                        shipR.setHorizontalMovement(-moveSpeed);
                   else if ((rightPressed) && (!leftPressed))
                        ship.setHorizontalMovement(moveSpeed);
                        shipL.setHorizontalMovement(moveSpeed);
                        shipR.setHorizontalMovement(moveSpeed);//animationtest ship changed to eagle
                   //Affyrings sekvens
                   if (firePressed)
                        tryToFire();
                   // Lille pause til andre ting.
                   try { Thread.sleep(10); } catch (Exception m) {}
         }//End of gameLoop
         //Metode til kontrol af thrusterlyden.
         private void thrusterSound(){
              if (!isThrusting){
                   fxSound.fxSound2();               
                   isThrusting = true;
         }//End of thrusterSound
         //Metode til at inds&#65533;tte eksplotion p&#65533; den rette plads.
         //@param den ramte entitet.
         private void explosion(Entity entity){
              x = entity.getX();
              y = entity.getY();
              animation = true;
         }//End of explosion
         //Inner class der klarer input fra keybard.
         private class KeyInputHandler extends KeyAdapter {
              //S&#65533;tter t&#65533;ller til 1, s&#65533; wait for input virker.
              private int pressCount = 1;
              //@param den trykkede tast.
              public void keyPressed(KeyEvent e) {
                   // Ser f&#65533;rst om der ventes p&#65533; input til start.
                   if (waitingForKeyPress) {
                        return;
                   //Er spillet igang udf&#65533;res input
                   if (e.getKeyCode() == KeyEvent.VK_LEFT) {
                        leftPressed = true;                         
                        thrusterSound();
                   if (e.getKeyCode() == KeyEvent.VK_RIGHT) {
                        rightPressed = true;
                        thrusterSound();
                   if (e.getKeyCode() == KeyEvent.VK_SPACE) {
                        firePressed = true;
              } //End of keyPressed
              //Stopper handlingen fra input
              //@param den trykkede tast.
              public void keyReleased(KeyEvent e) {
                   // if we're waiting for an "any key" typed then we don't
                   // want to do anything with just a "released"
                   if (waitingForKeyPress) {
                        return;
                   if (e.getKeyCode() == KeyEvent.VK_LEFT) {
                        leftPressed = false;
                        fxSound.StopThruster();
                        isThrusting = false;
                   if (e.getKeyCode() == KeyEvent.VK_RIGHT) {
                        rightPressed = false;
                        fxSound.StopThruster();
                        isThrusting = false;
                   if (e.getKeyCode() == KeyEvent.VK_SPACE) {
                        firePressed = false;
              }//End of keyReleased
              //Metode til at starte spillet med any key.
              //@param den trykkede tast.
              public void keyTyped(KeyEvent e) {
                   if (waitingForKeyPress) {
                        if (pressCount == 1) {
                             // Starter spillet.
                             waitingForKeyPress = false;
                             startGame();
                             //pressCount = 0;
                        } else {
                             pressCount++;
                   // Tilf&#65533;jer esc key til at afslutte spillet.
                   if (e.getKeyChar() == 27) {
                        System.exit(0);
         }//End of KeyTyped.
         public static void main(String args[])
              EagleFlight ef = new EagleFlight();          
              ef.gameLoop();
         }//End of main.
    }//End of class EagleFlight.

    Mondariz wrote:
    It was a copy/paste job from Eclipse, not suer why it formatted like this. You need to add code tags.
    [edit: do what Darryl says... as opposed to my crap version that did not format properly either]
    As far as the tracing goes. It shouldn't be taking hours. Start by putting them in where your program starts and move on.

  • E4500 - Can't see networked PC's

    Since the upgrade by Cisco I can only see Win7 PC's on the network. I can not see the USB drive attached to the E4500, nor can I see my Media server which is Linux based nor any Win XP computuers.
    Solved!
    Go to Solution.

    Similar issue after rollback for me as well. No machines showing in "Workgroup computers" (XP Pro SP3) and no shares in "Network Places".
    Having a list of IP reservations and wi-fi MAC permissions, I didn't want to hard reset/reconfig the router yet again. What seemed to work cleanly for me was to change the (XP Pro machines) 'Workgroup' name under 'Computer Name' properties, 'OK' my way out to the 'Reboot now?' prompt then, without a reboot, going back in and changing the 'Workgroup' name back to the original one, 'OK' out and then rebooted.
    That returned all my shares and workgroup details back to 'normal' and everything plays well together.
    NetScan showed all the IPs prior and all were pingable from CMD prompt just nothing showing in the workgroup screens.
    FWIW - I don't run any media or devices other than 6 XP Pro and 2 WIN7 machines (and 2 DD-WRT based LinkSys 54Gs) in the network. One laptop with a LinkSys 300N wi-fi card did need me to "force" connect using my saved default profile. The auto would keep me out of the shares, etc. All machines had Internet access prior as well.
    What I detailed above was only done to the LAN wired machines on the EA4500. Once that was done, the machines on the other end of the DD-WRTed 54Gs showed properly as did the ones wired to the router.
    Looking back, I do wonder how it would've worked out if I had started with the "primary machine" that I set up the router with. Maybe save me a step or two? I don't know...

  • Love this tool, but one problem: can't see beach balls on remote machines!

    Hi, I have the lastest OSX and ARD on the machines on our small biz lan, and I have one problem: when controlling or observing other machines I can't see the beach ball when it occurs...making it look like ARD is hung (or something). It's very disconcerting...is there a switch somewhere to make this right? Thx
    coocoo

    I'd be very surprised if ARD is ever able to display the spinning beach ball on the managing Mac.
    A couple of tips that may help:
    1. Set the client computers to display seconds on the clock in the menubar. If the seconds are counting, you at least know that you are receiving visual updates. If you can't access a menu in the hung app, but can still see the seconds counting, you likely have a beach ball.
    2. Run Activity Monitor on the client machine. A quick glance at the process list will show if an app is hung (and how much CPU it's gobbling).
    3. Select "Force Quit" from the Apple menu. This will also show which apps are hung.
    4. Peek into the /Library/Logs/HangReporter/ folder.
    Cheers.

  • Can't see the issue in code...please help

    I have this procedure within a package. Trying to compile and can't...get errors and I can't see why...any help???
    PROCEDURE KILL_ORPH_2PHASE_COMMITS (inLocal_tran_id IN varchar2) is
      tsql            VARCHAR2(256);
      v_local_tran_id varchar2(22 byte);
    BEGIN
    IF inLocal_tran_id is not null then
        tsql := 'ROLLBACK FORCE ''' || inLocal_tran_id || '''';
        dbms_output.put_line(tsql);
        EXECUTE IMMEDIATE tsql;
        RETURN;
    END IF;
        --open cursor
        open cur_2pc;
        loop
          --fetch cursor data
          fetch cur_2pc
            into v_local_tran_id;
          exit when cur_2pc%NOTFOUND;
          tsql := 'ROLLBACK FORCE ''' || v_local_tran_id || '''';
          dbms_output.put_line(tsql);
          EXECUTE IMMEDIATE tsql;
    EXCEPTION
      WHEN OTHERS
        THEN
          dbms_transaction.purge_lost_db_entry('''' || v_local_tran_id || '''');
    END;
    END LOOP;
    CLOSE cur_2pc;
    END KILL_ORPH_2PHASE_COMMITS;Error is:
    Compilation errors for PACKAGE BODY ADMIN.ADMIN_DBA_MAIN
    Error: PLS-00103: Encountered the symbol "EXCEPTION" when expecting one of the following:
    ( begin case declare end exit for goto if loop mod null
    pragma raise return select update while with <an identifier>
    <a double-quoted delimited-identifier> <a bind variable> <<
    continue close current delete fetch lock insert open rollback
    savepoint set sql execute commit forall merge pipe purge
    Line: 40
    Text: EXCEPTION
    Error: PLS-00103: Encountered the symbol "LOOP" when expecting one of the following:
    Line: 45
    Text: END LOOP;

    The BEGIN and END are not matching..??
    From your code, it looks like...you want each statement in your loop to have it's own begin..exception..end..
    BEGIN
    IF inLocal_tran_id is not null then
        tsql := 'ROLLBACK FORCE ''' || inLocal_tran_id || '''';
        dbms_output.put_line(tsql);
        EXECUTE IMMEDIATE tsql;
        RETURN;
    END IF;
        --open cursor
        open cur_2pc;
        loop
       BEGIN----------<<<<<<<<Begin for each iteration to have it's own loop...
       ------------>>>(this is for each statement in the loop...)
         --fetch cursor data
          fetch cur_2pc
            into v_local_tran_id;
          exit when cur_2pc%NOTFOUND;
          tsql := 'ROLLBACK FORCE ''' || v_local_tran_id || '''';
          dbms_output.put_line(tsql);
          EXECUTE IMMEDIATE tsql;
    EXCEPTION
      WHEN OTHERS
        THEN
          dbms_transaction.purge_lost_db_entry('''' || v_local_tran_id || '''');
    END;
    END LOOP;
    END KILL_ORPH_2PHASE_COMMITS; ----<<<Another End for the procedure....>>>

  • Can only see New apps in iPad app store

    Seems kind of pointless to search for apps on the iPad app store, when it will only show you the "new" ones. When I choose any category, then click the show all button, I don't get all, just the "new" ones ... never more than about 97 or so. searching the same category in iTunes for just iPad apps will almost always yield far more choices. for example I can only see about 97 utilities for the iPad from my iPad app store, but in iTunes there are 260 choices. They aren't iPhone apps either. Another example, if I show the games category on the iPad I can only see 27 New and Noteworthy apps, and 24 What's hot apps. No more. In iTunes I have an additional option of a subcategory, for example Action, there are 200 games released for iPad since March 31st available in that one category.
    Not sure if I have a preference set wrong, it's just a bug, or if someone just wasn't thinking. Mayabe it's a bandwidth thing, but at least give me the subcategories or let me see the "next" 50.

    Kappy wrote:
    Yes. How else do you access the App Store? I'm not aware that you can do the same thing from the iPad's App Store app. Nevertheless, whatever you browse from the iPad if there's "+" in the price it means the app can be used both on an iPhone and iPad.
    I guess you finally understood the question
    Why should I be forced to use iTunes to see all of the apps? The iPad app store should see everything just like iTunes.. This isn't an iPhone.
    At least the link is some what helpful although quite slow going back and forth to app store to get details.

  • After an upgrade to 10.8.5 I can not see my mails with Mail. No "Message Viewer" window- When open it from menu "Window" I have the message "Mail quit unexpectedly"

    Hi there
    I just upgrade to 10.8.5 (from snow leopard on an '08 iMac 2.4 GHz Intel Core 2 Duo with 4 GB memory) and I have a problem with Mail
    While during migration there was no problem and it looks like all my massages was transferred (more than 17.000 mails) when I open Mail there is no "Message Viewer" window and if I try to open it from menu "Window" I have the message "Mail quit unexpectedly" (I have report it to Apple).
    So I can not see my mails!!
    Otherwise everything looks "OK" with Mail. I can see all my accounts in Preferences, I can see other windows like Activity, I can even see the red indicator with he new mails on the Mail icon on the Dock… But I can not quit Mail, only Force quit…
    Thank you in advance for your help.
    I am really sorry but If there will be no solution I am afraid I will go back to snow leopard…

    Hello
    and thank you for your help
    I hope the following information are the ones you ask and useful!
    Step 1 
    24/9/13 11:18:37,404 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:18:37,408 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107640763 Mail + 1656675
              9   Mail                                0x0000000107640d13 Mail + 1658131
              10  Mail                                0x00000001076129e3 Mail + 1468899
              11  Mail                                0x000000010761321f Mail + 1471007
              12  AppKit                              0x00007fff89083199 -[NSPreferences _selectModuleOwner:] + 706
              13  AppKit                              0x00007fff8908289d -[NSPreferences _setupPreferencesPanelForOwner:] + 448
              14  AppKit                              0x00007fff89082944 -[NSPreferences showPreferencesPanelForOwner:] + 33
              15  Mail                                0x0000000107630177 Mail + 1589623
              16  AppKit                              0x00007fff88d0b959 -[NSApplication sendAction:to:from:] + 342
              17  AppKit                              0x00007fff88e4136c -[NSMenuItem _corePerformAction] + 406
              18  AppKit                              0x00007fff88e4105a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
              19  AppKit                              0x00007fff88b2e20f -[NSMenu _internalPerformActionForItemAtIndex:] + 36
              20  AppKit                              0x00007fff88b2e097 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135
              21  AppKit                              0x00007fff88e3a165 NSSLMMenuEventHandler + 342
              22  HIToolbox                           0x00007fff8ed9ed1a _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1206
              23  HIToolbox                           0x00007fff8ed9e1e9 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 410
              24  HIToolbox                           0x00007fff8edb3fc9 SendEventToEventTarget + 40
              25  HIToolbox                           0x00007fff8edeaca9 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 443
              26  HIToolbox                           0x00007fff8ed8fa21 SendMenuCommandWithContextAndModifiers + 59
              27  HIToolbox                           0x00007fff8ed8f9d3 SendMenuItemSelectedEvent + 254
              28  HIToolbox                           0x00007fff8ed8f85f _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 94
              29  HIToolbox                           0x00007fff8ed6b8bb _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 605
              30  HIToolbox                           0x00007fff8ed6aec8 _HandleMenuSelection2 + 565
              31  AppKit                              0x00007fff88cf98c6 _NSHandleCarbonMenuEvent + 245
              32  AppKit                              0x00007fff88c1ba9f _DPSNextEvent + 2073
              33  AppKit                              0x00007fff88c1adf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
              34  AppKit                              0x00007fff88c121a3 -[NSApplication run] + 517
              35  AppKit                              0x00007fff88bb6bd6 NSApplicationMain + 869
              36  libdyld.dylib                       0x00007fff8883b7e1 start + 0
              37  ???                                 0x0000000000000002 0x0 + 2
    24/9/13 11:18:56,856 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:18:56,856 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:18:56,858 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:19:26,862 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:19:26,863 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:19:26,864 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:19:56,957 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:19:56,957 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:19:56,959 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:20:26,962 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:20:26,962 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:20:26,963 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:20:57,310 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:20:57,311 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:20:57,312 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:21:06,290 μ.μ. WindowServer[2287]: CGXDisableUpdate: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    24/9/13 11:21:06,308 μ.μ. WindowServer[2287]: reenable_update_for_connection: UI updates were finally reenabled by application "Mail" after 1.03 seconds (server forcibly re-enabled them after 1.01 seconds)
    24/9/13 11:21:27,315 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:21:27,316 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:21:27,317 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:28:03,262 μ.μ. Mail[3161]: An uncaught exception was raised
    24/9/13 11:28:03,262 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:28:03,266 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x00000001074b6c7f Mail + 44159
              9   Mail                                0x00000001074b6133 Mail + 41267
              10  Mail                                0x000000010764fd73 Mail + 1719667
              11  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              12  libdispatch.dylib                   0x00007fff8b2e6041 dispatch_once_f + 50
              13  Mail                                0x00000001074b5fe8 Mail + 40936
              14  Mail                                0x00000001074b5ea6 Mail + 40614
              15  CoreFoundation                      0x00007fff8e1148e9 -[NSSet makeObjectsPerformSelector:] + 201
              16  AppKit                              0x00007fff88bdc136 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
              17  AppKit                              0x00007fff88bbb11d loadNib + 317
              18  AppKit                              0x00007fff88bba649 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
              19  AppKit                              0x00007fff88df7653 -[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 150
              20  CoreMessage                         0x00007fff8cfe83d6 -[NSBundle(MessageFrameworkAdditions) loadNibNamed:owner:] + 95
              21  Mail                                0x00000001074b5002 Mail + 36866
              22  Mail                                0x00000001074b4ecc Mail + 36556
              23  Mail                                0x000000010762d8ac Mail + 1579180
              24  AppKit                              0x00007fff88d0b959 -[NSApplication sendAction:to:from:] + 342
              25  AppKit                              0x00007fff88e4136c -[NSMenuItem _corePerformAction] + 406
              26  AppKit                              0x00007fff88e4105a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
              27  AppKit                              0x00007fff88b2e20f -[NSMenu _internalPerformActionForItemAtIndex:] + 36
              28  AppKit                              0x00007fff88b2e097 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135
              29  AppKit                              0x00007fff88e3a165 NSSLMMenuEventHandler + 342
              30  HIToolbox                           0x00007fff8ed9ed1a _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1206
              31  HIToolbox                           0x00007fff8ed9e1e9 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 410
              32  HIToolbox                           0x00007fff8edb3fc9 SendEventToEventTarget + 40
              33  HIToolbox                           0x00007fff8edeaca9 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 443
              34  HIToolbox                           0x00007fff8ed8fa21 SendMenuCommandWithContextAndModifiers + 59
              35  HIToolbox                           0x00007fff8ed8f9d3 SendMenuItemSelectedEvent + 254
              36  HIToolbox                           0x00007fff8ed8f85f _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 94
              37  HIToolbox                           0x00007fff8ed6b8bb _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 605
              38  HIToolbox                           0x00007fff8ed6aec8 _HandleMenuSelection2 + 565
              39  AppKit                              0x00007fff88cf98c6 _NSHandleCarbonMenuEvent + 245
              40  AppKit                              0x00007fff88c1ba9f _DPSNextEvent + 2073
              41  AppKit                              0x00007fff88c1adf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
              42  AppKit                              0x00007fff88c121a3 -[NSApplication run] + 517
              43  AppKit                              0x00007fff88bb6bd6 NSApplicationMain + 869
              44  libdyld.dylib                       0x00007fff8883b7e1 start + 0
              45  ???                                 0x0000000000000002 0x0 + 2
    24/9/13 11:28:03,268 μ.μ. Mail[3161]: *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray'
    *** First throw call stack:
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x00000001074b6c7f Mail + 44159
              9   Mail                                0x00000001074b6133 Mail + 41267
              10  Mail                                0x000000010764fd73 Mail + 1719667
              11  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              12  libdispatch.dylib                   0x00007fff8b2e6041 dispatch_once_f + 50
              13  Mail                                0x00000001074b5fe8 Mail + 40936
              14  Mail                                0x00000001074b5ea6 Mail + 40614
              15  CoreFoundation                      0x00007fff8e1148e9 -[NSSet makeObjectsPerformSelector:] + 201
              16  AppKit                              0x00007fff88bdc136 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
              17  AppKit                              0x00007fff88bbb11d loadNib + 317
              18  AppKit                              0x00007fff88bba649 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
              19  AppKit                              0x00007fff88df7653 -[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 150
              20  CoreMessage                         0x00007fff8cfe83d6 -[NSBundle(MessageFrameworkAdditions) loadNibNamed:owner:] + 95
              21  Mail                                0x00000001074b5002 Mail + 36866
              22  Mail                                0x00000001074b4ecc Mail + 36556
              23  Mail                                0x000000010762d8ac Mail + 1579180
              24  AppKit                              0x00007fff88d0b959 -[NSApplication sendAction:to:from:] + 342
              25  AppKit                              0x00007fff88e4136c -[NSMenuItem _corePerformAction] + 406
              26  AppKit                              0x00007fff88e4105a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
              27  AppKit                              0x00007fff88b2e20f -[NSMenu _internalPerformActionForItemAtIndex:] + 36
              28  AppKit                              0x00007fff88b2e097 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135
              29  AppKit                              0x00007fff88e3a165 NSSLMMenuEventHandler + 342
              30  HIToolbox                           0x00007fff8ed9ed1a _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1206
              31  HIToolbox                           0x00007fff8ed9e1e9 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 410
              32  HIToolbox                           0x00007fff8edb3fc9 SendEventToEventTarget + 40
              33  HIToolbox                           0x00007fff8edeaca9 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 443
              34  HIToolbox                           0x00007fff8ed8fa21 SendMenuCommandWithContextAndModifiers + 59
              35  HIToolbox                           0x00007fff8ed8f9d3 SendMenuItemSelectedEvent + 254
              36  HIToolbox                           0x00007fff8ed8f85f _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 94
              37  HIToolbox                           0x00007fff8ed6b8bb _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 605
              38  HIToolbox                           0x00007fff8ed6aec8 _HandleMenuSelection2 + 565
              39  AppKit                              0x00007fff88cf98c6 _NSHandleCarbonMenuEvent + 245
              40  AppKit                              0x00007fff88c1ba9f _DPSNextEvent + 2073
              41  AppKit                              0x00007fff88c1adf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
              42  AppKit                              0x00007fff88c121a3 -[NSApplication run] + 517
              43  AppKit                              0x00007fff88bb6bd6 NSApplicationMain + 869
              44  libdyld.dylib                       0x00007fff8883b7e1 start + 0
              45  ???                                 0x0000000000000002 0x0 + 2
    24/9/13 11:28:04,903 μ.μ. com.apple.launchd.peruser.506[2322]: ([0x0-0x307307].com.apple.mail[3161]) Job appears to have crashed: Abort trap: 6
    24/9/13 11:28:08,393 μ.μ. ReportCrash[3465]: Saved crash report for Mail[3161] version 6.6 (1510) to /Users/------/Library/Logs/DiagnosticReports/Mail_2013-09-24-232808_----------- ---.crash
    24/9/13 11:44:24,585 μ.μ. Mail[3744]: Using V2 Layout
    24/9/13 11:44:27,235 μ.μ. Mail[3744]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:44:33,389 μ.μ. Mail[3744]: An uncaught exception was raised
    Step 2
    Process:         Mail [3744]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         6.6 (1510)
    Build Info:      Mail-1510000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [2322]
    User ID:         506
    Date/Time:       2013-09-24 23:48:10.137 +0300
    OS Version:      Mac OS X 10.8.5 (12F37)
    Report Version:  10
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray'
    Performing @selector(newViewerWindow:) from sender NSMenuItem 0x7fb33ac74df0
    abort() called
    terminate called throwing an exception
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
    1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
    3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
    4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
    5   Mail                                0x000000010dae822b Mail + 33323
    6   Mail                                0x000000010dae7cbf Mail + 31935
    7   Mail                                0x000000010dae7990 Mail + 31120
    8   Mail                                0x000000010daeac7f Mail + 44159
    9   Mail                                0x000000010daea133 Mail + 41267
    10  Mail                                0x000000010dc83d73 Mail + 1719667
    11  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
    12  libdispatch.dylib                   0x00007fff8b2e6041 dispatch_once_f + 50
    13  Mail                                0x000000010dae9fe8 Mail + 40936
    14  Mail                                0x000000010dae9ea6 Mail + 40614
    15  CoreFoundation                      0x00007fff8e1148e9 -[NSSet makeObjectsPerformSelector:] + 201
    16  AppKit                              0x00007fff88bdc136 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
    17  AppKit                              0x00007fff88bbb11d loadNib + 317
    18  AppKit                              0x00007fff88bba649 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
    19  AppKit                              0x00007fff88df7653 -[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 150
    20  CoreMessage                         0x00007fff8cfe83d6 -[NSBundle(MessageFrameworkAdditions) loadNibNamed:owner:] + 95
    21  Mail                                0x000000010dae9002 Mail + 36866
    22  Mail                                0x000000010dae8ecc Mail + 36556
    23  AppKit                              0x00007fff88d0b959 -[NSApplication sendAction:to:from:] + 342
    24  AppKit                              0x00007fff88e4136c -[NSMenuItem _corePerformAction] + 406
    25  AppKit                              0x00007fff88e4105a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
    26  AppKit                              0x00007fff88b2e20f -[NSMenu _internalPerformActionForItemAtIndex:] + 36
    27  AppKit                              0x00007fff88b2e097 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135
    28  AppKit                              0x00007fff88e3a165 NSSLMMenuEventHandler + 342
    29  HIToolbox                           0x00007fff8ed9ed1a _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1206
    30  HIToolbox                           0x00007fff8ed9e1e9 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 410
    31  HIToolbox                           0x00007fff8edb3fc9 SendEventToEventTarget + 40
    32  HIToolbox                           0x00007fff8edeaca9 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 443
    33  HIToolbox                           0x00007fff8ed8fa21 SendMenuCommandWithContextAndModifiers + 59
    34  HIToolbox                           0x00007fff8ed8f9d3 SendMenuItemSelectedEvent + 254
    35  HIToolbox                           0x00007fff8ed8f85f _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 94
    36  HIToolbox                           0x00007fff8ed6b8bb _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 605
    37  HIToolbox                           0x00007fff8ed6aec8 _HandleMenuSelection2 + 565
    38  AppKit                              0x00007fff88cf98c6 _NSHandleCarbonMenuEvent + 245
    39  AppKit                              0x00007fff88c1ba9f _DPSNextEvent + 2073
    40  AppKit                              0x00007fff88c1adf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    41  AppKit                              0x00007fff88c121a3 -[NSApplication run] + 517
    42  AppKit                              0x00007fff88bb6bd6 NSApplicationMain + 869
    43  libdyld.dylib                       0x00007fff8883b7e1 start + 0
    44  ???                                 0x0000000000000002 0x0 + 2
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8be9d212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff89fb6b24 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff89ffaf61 abort + 143
    3   libc++abi.dylib                         0x00007fff884b69eb abort_message + 257
    4   libc++abi.dylib                         0x00007fff884b439a default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff8df81873 _objc_terminate() + 91
    6   libc++.1.dylib                          0x00007fff8dcc68fe std::terminate() + 20
    7   libobjc.A.dylib                         0x00007fff8df815de objc_terminate + 9
    8   libdispatch.dylib                       0x00007fff8b2e60ca _dispatch_client_callout + 28
    9   libdispatch.dylib                       0x00007fff8b2e6041 dispatch_once_f + 50
    10  com.apple.mail                          0x000000010dae9fe8 0x10dae0000 + 40936
    11  com.apple.mail                          0x000000010dae9ea6 0x10dae0000 + 40614
    12  com.apple.CoreFoundation                0x00007fff8e1148e9 -[NSSet makeObjectsPerformSelector:] + 201
    13  com.apple.AppKit                        0x00007fff88bdc136 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
    14  com.apple.AppKit                        0x00007fff88bbb11d loadNib + 317
    15  com.apple.AppKit                        0x00007fff88bba649 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
    16  com.apple.AppKit                        0x00007fff88df7653 -[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 150
    17  com.apple.CoreMessage                   0x00007fff8cfe83d6 -[NSBundle(MessageFrameworkAdditions) loadNibNamed:owner:] + 95
    18  com.apple.mail                          0x000000010dae9002 0x10dae0000 + 36866
    19  com.apple.mail                          0x000000010dae8ecc 0x10dae0000 + 36556
    20  com.apple.AppKit                        0x00007fff88d0b959 -[NSApplication sendAction:to:from:] + 342
    21  com.apple.AppKit                        0x00007fff88e4136c -[NSMenuItem _corePerformAction] + 406
    22  com.apple.AppKit                        0x00007fff88e4105a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
    23  com.apple.AppKit                        0x00007fff88b2e20f -[NSMenu _internalPerformActionForItemAtIndex:] + 36
    24  com.apple.AppKit                        0x00007fff88b2e097 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135
    25  com.apple.AppKit                        0x00007fff88e3a165 NSSLMMenuEventHandler + 342
    26  com.apple.HIToolbox                     0x00007fff8ed9ed1a DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1206
    27  com.apple.HIToolbox                     0x00007fff8ed9e1e9 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 410
    28  com.apple.HIToolbox                     0x00007fff8edb3fc9 SendEventToEventTarget + 40
    29  com.apple.HIToolbox                     0x00007fff8edeaca9 SendHICommandEvent(unsigned int, HICommand const*, unsigned int, unsigned int, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 443
    30  com.apple.HIToolbox                     0x00007fff8ed8fa21 SendMenuCommandWithContextAndModifiers + 59
    31  com.apple.HIToolbox                     0x00007fff8ed8f9d3 SendMenuItemSelectedEvent + 254
    32  com.apple.HIToolbox                     0x00007fff8ed8f85f FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 94
    33  com.apple.HIToolbox                     0x00007fff8ed6b8bb MenuSelectCore(MenuData*, Point, double, unsigned int, OpaqueMenuRef**, unsigned short*) + 605
    34  com.apple.HIToolbox                     0x00007fff8ed6aec8 _HandleMenuSelection2 + 565
    35  com.apple.AppKit                        0x00007fff88cf98c6 _NSHandleCarbonMenuEvent + 245
    36  com.apple.AppKit                        0x00007fff88c1ba9f _DPSNextEvent + 2073
    37  com.apple.AppKit                        0x00007fff88c1adf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    38  com.apple.AppKit                        0x00007fff88c121a3 -[NSApplication run] + 517
    39  com.apple.AppKit                        0x00007fff88bb6bd6 NSApplicationMain + 869
    40  libdyld.dylib                           0x00007fff8883b7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8be9dd16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8b2e8dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8b2e89ee _dispatch_mgr_thread + 54
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8be9b686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8be9ac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8e0b9233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8e0be916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8e0be0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff83b64546 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation                    0x00007fff83bc2562 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff89fb5772 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff89fa21a1 thread_start + 13
    Thread 3:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff8be9d0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff89fb9fb9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff8d92eb66 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x00007fff8db51bfa JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore                0x00007fff8db6725f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff89fb5772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff89fa21a1 thread_start + 13
    Thread 4:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8be9d0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff89fb9fb9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff8dab49d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00007fff8dab48b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x00007fff8db6725f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff89fb5772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff89fa21a1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8be9b686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8be9ac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8e0b9233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8e0be916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8e0be0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff83bc77ee -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.Foundation                    0x00007fff83b601aa -[NSRunLoop(NSRunLoop) run] + 74
    7   com.apple.CoreMessage                   0x00007fff8cf7dd57 +[_NSSocket _runIOThread] + 77
    8   com.apple.Foundation                    0x00007fff83bc2562 __NSThread__main__ + 1345
    9   libsystem_c.dylib                       0x00007fff89fb5772 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff89fa21a1 thread_start + 13
    Thread 6:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8be9d322 __select + 10
    1   com.apple.CoreFoundation                0x00007fff8e0fdf46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x00007fff89fb5772 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff89fa21a1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8be9d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89fb7f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff89fb7ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff89fa2191 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8be9d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89fb7f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff89fb7ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff89fa2191 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8be9d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89fb7f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff89fb7ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff89fa2191 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff5211e218  rdx: 0x0000000000000000
      rdi: 0x0000000000000c07  rsi: 0x0000000000000006  rbp: 0x00007fff5211e240  rsp: 0x00007fff5211e218
       r8: 0x00007fff74393278   r9: 0x000000000000000d  r10: 0x0000000020000000  r11: 0x0000000000000206
      r12: 0x00007fff5211e3a0  r13: 0x00007fb33bbe43d0  r14: 0x00007fff74394180  r15: 0x00007fff5211e280
      rip: 0x00007fff8be9d212  rfl: 0x0000000000000206  cr2: 0x00007fff7438cff0
    Logical CPU: 0
    Binary Images:
           0x10dae0000 -        0x10de7ffff  com.apple.mail (6.6 - 1510) <49BBA752-FE19-381B-BD78-1394141471D5> /Applications/Mail.app/Contents/MacOS/Mail
           0x10f5c8000 -        0x10f5cafff  libanonymous.2.so (166) <6417EA9E-4202-31DA-A086-B58F1E92C931> /usr/lib/sasl2/libanonymous.2.so
           0x10f5cf000 -        0x10f5d2fff  libcrammd5.2.so (166) <866C8DD4-5086-376A-BFC7-897A40327DB4> /usr/lib/sasl2/libcrammd5.2.so
           0x10f5d8000 -        0x10f5dafff  apop.so (169) <2A1CAD32-5734-3D4E-868B-E773DCD192B5> /usr/lib/sasl2/apop.so
           0x10f5de000 -        0x10f5f2fff  dhx.so (169) <3C4D7E51-F30B-3A5B-9BB6-4426EC607E10> /usr/lib/sasl2/dhx.so
           0x10fef2000 -        0x10fefbff7  digestmd5WebDAV.so (169) <D1EF0A0E-92FA-321F-9445-DD08A64C2493> /usr/lib/sasl2/digestmd5WebDAV.so
           0x10ff04000 -        0x10ff0dff7  libdigestmd5.2.so (166) <F2344A08-F032-35D3-9EBB-F147D4100517> /usr/lib/sasl2/libdigestmd5.2.so
           0x10ff13000 -        0x10ff18fff  libgssapiv2.2.so (166) <83A21AF3-FB42-3ACC-B6ED-26B23388C4F4> /usr/lib/sasl2/libgssapiv2.2.so
           0x10ff1d000 -        0x10ff1ffff  login.so (166) <1F868238-FB26-3477-B31C-67DB400D6F68> /usr/lib/sasl2/login.so
           0x10ff23000 -        0x10ff28fff  libntlm.so (166) <82608FB8-E225-39FF-BC83-B9D3F89D7CEC> /usr/lib/sasl2/libntlm.so
           0x10ff2d000 -        0x10ff34fff  libotp.2.so (166) <2AE53E63-A826-3E20-9B4D-476CC712410D> /usr/lib/sasl2/libotp.2.so
           0x110089000 -        0x11008bfff  libplain.2.so (166) <074D7604-3435-3E01-A86B-FF102001FC5B> /usr/lib/sasl2/libplain.2.so
           0x11008f000 -        0x110093fff  libpps.so (169) <3C150ECF-0D94-3DBE-8AB6-7B0070700699> /usr/lib/sasl2/libpps.so
           0x1103dc000 -        0x1103dffff  mschapv2.so (169) <9DAC741E-6BB8-3DFA-85AD-532EB20E780B> /usr/lib/sasl2/mschapv2.so
           0x1103e4000 -        0x110411fff  com.apple.DirectoryService.PasswordServerFramework (10.8 - 27.1) <81194DEC-984F-3099-B537-F70394F8492C> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x110429000 -        0x11042bfff  p

  • Network can't see my Mac after upgrading to Mountain Lion 10.8.2

    After upgrading to ML 10.8.2 (coming from Lion), the network (another mac and an iPad) can't see my Macbook-pro.
    Using a network scanner (Fing on iPad), my Macbook is not there, and in the same way all the other services from Macbook-pro (such as Internet sharing, Filemaker sharing, ...) don't work.
    My Macbook-pro is regularly connected to the right network and has a proper IP address (192.168.1.32 with 192.168.1.1 being the router, ...33 the other mac and so on). Also, my Macbook-pro perfectly reaches both other LAN devices and the internet.
    I've tried disabling Firewall but nothing changed. I havn't got any antivirus nor security programs running.
    Anyone experiencing the same issue?

    Please read this whole message before doing anything. This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it. The purpose of this test is to determine whether your problem is caused by third-party system modifications that load automatically at startup or login. Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows: 
    Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
    When you see the gray Apple logo, release the shift key.
    If you are prompted to log in, type your password, and then hold down the shift key again as you click  Log in.
     *Note: If FileVault is enabled under OS X 10.7 or later, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode. Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs. The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Can't see Windows 7 PC's from Mac on home network

    Same exact problem as this person...
    http://discussions.apple.com/thread.jspa?messageID=11492672
    Any help appreciated. Thanks -Frank

    frankencat wrote:
    Same exact problem as this person...
    http://discussions.apple.com/thread.jspa?messageID=11492672
    Any help appreciated. Thanks -Frank
    I think the other person can't see his Mac, you appear to not be able to see your Windows PCs. Did you set up sharing on the Windows PCs? How is your LAN set up? Describe your connections and equipment.

  • Cifs - need to connect to share server (can see folders but can't see files)

    This is driving me nuts...
    CASE ONE:
    before the upgrade, i could view folders and files on the shareserver (at a company). but after the upgrade, things went downhill...
    we can no longer use "smb://ServerName" so we are forced to use "cifs://ServerName". Fine, fine. but i can only see folders...not files.
    ive looked everywhere on the internets for a solution but find nerdy, tech lingo. I found only one that had the solution, but they simply said "nevermind, i found the solution...".. jesh,,, at least leave a solution for us....
    does someone have a work-around or a solution to this bug?
    CASE TWO:
    Dealing with Outlook 2011 and sharing caledars using the Exchange, i can see my co-workers email and statuses...but i can no longer see their schedules/availability.
    does anyone have a solution to this???
    Rule #1: do not say "its an Outlook issue" cause they already told me to ask you.
    Rule #2: do not say "you are posting in the wrong place". just help, for Pete's sake...
    Rule#3: do not say "$**%()*$ and preliminary connection hub 5583HHFer, BS...." we dont need nerdy lingo...we need help...
    others including myself would very much appreciate your help in the above 2 matters.
    Kindly,

    Hi there,
    You may want to take a look at some of the troubleshooting steps found in the article below.
    Troubleshooting Home Sharing
    http://support.apple.com/kb/ts2972
    Hope that helps,
    Griff W.

  • Can't see list of backups of TimeMachine service in Server.app

    We can't see the list of backups (users and date of last backup) in Server.app anymore. Load the settings will say, after a couple of minutes:
    Error Reading Settings
    Service functionality and administration may be affected.
    Click Continue to administer this service.
    Code 0.
    If I click Continue, I see the list of backup destinations and nothing else. In system.log, I get the error below. Both forward and reverse DNS works fine.
    Any ideas? I didn't find anything useful on Google...
    Jun  5 15:04:18 petitsuix.druide servermgrd[39218]: --Module servermgr_xcode's response has retain count of 3.
    Jun  5 15:04:18 petitsuix.druide servermgrd[39218]: --Module servermgr_devicemgr's response has retain count of 3.
    Jun  5 15:04:18 petitsuix.druide servermgrd[39218]: --Module servermgr_history's response has retain count of 3.
    Jun  5 15:04:19 petitsuix.druide servermgrd[39218]: servermgr_swupdate[INF]: Verifying Software Update catalog configuration.
    Jun  5 15:04:45 --- last message repeated 1 time ---
    Jun  5 15:04:45 petitsuix.druide sshd[39338]: Connection closed by 192.168.1.19 [preauth]
    Jun  5 15:04:46 petitsuix.druide servermgrd[39218]: [39218] error in getAndLockContext: flock(servermgr_timemachine) FATAL time out
    Jun  5 15:04:46 petitsuix.druide servermgrd[39218]: [39218] process will force-quit to avoid deadlock
    Jun  5 15:04:46 petitsuix.druide servermgrd[39218]: outstanding requests are: (
                     Command = getState;
                     Module = "servermgr_timemachine";
                     Thread = 4627648512;
                     Timestamp = "2014-06-05 19:02:45 +0000";
                     Command = getBackups;
                     Module = "servermgr_timemachine";
                     Thread = 4628721664;
                     Timestamp = "2014-06-05 19:02:45 +0000";
                     Command = getBackups;
                     Module = "servermgr_timemachine";
                     Thread = 4629258240;
                     Timestamp = "2014-06-05 19:02:45 +0000";
                     Command = getState;
                     Module = "servermgr_timemachine";
                     Thread = 4627111936;
                     Timestamp = "2014-06-05 19:02:45 +0000";
                     Command = getState;
                     Module = "servermgr_timemachine";
                     Thread = 4626575360;
                     Timestamp = "2014-06-05 19:02:45 +0000";
                     Command = readSettings;
                     Module = "servermgr_timemachine";
                     Thread = 4626038784;
                     Timestamp = "2014-06-05 19:02:45 +0000";
                     Command = readSettings;
                     Module = "servermgr_timemachine";
                     Thread = 4625502208;
                     Timestamp = "2014-06-05 19:02:46 +0000";
                     Command = getState;
                     Module = "servermgr_timemachine";
                     Thread = 4629794816;
                     Timestamp = "2014-06-05 19:02:46 +0000";
                     Command = getBackups;
                     Module = "servermgr_timemachine";
                     Thread = 4628185088;
                     Timestamp = "2014-06-05 19:02:46 +0000";
                     Command = getState;
                     Module = "servermgr_timemachine";
                     Thread = 4643479552;
                     Timestamp = "2014-06-05 19:04:18 +0000";
                     Command = getState;
                     Module = "servermgr_timemachine";
                     Thread = 4642406400;
                     Timestamp = "2014-06-05 19:04:18 +0000";
                     Command = getBackups;
                     Module = "servermgr_timemachine";
                     Thread = 4637745152;
                     Timestamp = "2014-06-05 19:04:19 +0000";
                     Command = readSettings;
                     Module = "servermgr_timemachine";
                     Thread = 4642942976;
                     Timestamp = "2014-06-05 19:04:19 +0000";
                     Command = getBackups;
                     Module = "servermgr_timemachine";
                     Thread = 4470239232;
                     Timestamp = "2014-06-05 19:04:24 +0000";
    Jun  5 15:04:46 petitsuix.druide servermgrd[39218]: blameOldestRequestForModule: couldn't find a thread to blame for servermgr_timemachine
    Jun  5 15:04:47 petitsuix com.apple.launchd[1] (com.apple.servermgrd[39218]): Exited with code: 1
    Jun  5 15:04:47 petitsuix.druide servermgrd[39352]: UpdateDefaultPrefs: reviewing the prefs file

    Back up all data.
    Quit the Server application and drag it to the Trash, but don't empty. You'll be prompted to confirm that you want to stop all services. You won't lose any data.
    Put the app back where it was and launch it. Test.

Maybe you are looking for