HELP PLEASE!!! 4.5 application loader!

i have downloaded the 4.5 update for my brand new curve. i began to install it and it stopped working, deleting everything off my phone. i know have a hand set with an tiny application window on it with a cross through it. when i go to re-try the application loader for the 4.5 update it doesn't recognise my handset!! neither does my desktop software. please please help i don't know how to get anything back on the phone or update it to the new software without my computer recognising it!"

I had the same thing happen to me a few months ago, however, I was not trying to use the app loader. I contacted my cellular provider and they told me that my OS had crashed and that there was nothing I could do about it. They sent me a replacement phone right away and I haven't had a problem with it since.

Similar Messages

  • Help please - Internet pages are loading but missing links + funny display

    Hello, I've recently borrowed this computer - it hasn't been used for a few years. I've managed to connect it to the internet but certain sites are not loading properly - the display is all messed up and the links are missing - nothing happens when i try to click on things e.g. i can log in to my hotmail but not open any messages.
    I've tried downloading the latest version of safari but it won't open, i guess because this operating system (OS X v10.2.8) can't handle it? So I tried downloading the version 1.0 again, the one it is using, to see if that would fix it - it says installation has been successful but nothing has changed..
    Please help...
    Thank you

    There may be an older version of Firefox (mozilla) that may work under Jaguar 10.2.8; or see if
    the Camino (mozilla) browser download page shows an older supported version for pre-10.3.9.
    http://caminobrowser.org - see older version link for Jaguar 10.2.x
    And there may also be an issue in viewing some web pages since the technologies for doing so
    have changed; newer browsers run a later Flash and Shockwave Player plugin(s) so those are
    newer than most anything in your Jaguar system.
    There may need to be other things done with that computer to be able to use it. Could be it is
    too old to warrant the upgrades in RAM and hard disk drive capacity, and a later OS X version.
    You can see general specifications about most things Mac including models and supported OSs
    from this downloadable database, it runs offline in the computer: http://mactracker.ca
    For a cost efficient way to consider another more capable Mac, you could check with resellers
    who also repair computers for a living; they often offer a fair limited duration guarantee and a
    few may even come with an operating system. Getting the bootable Installer discs and correct
    applications to run on a system may involve more footwork. Places such as wegenermedia.com
    have a few good items and knowhow, too. Ones with a good reputation are worth discussion.
    Good luck & happy computing!

  • Help please! Java application and web application...

    Hi,
    I have a problem with inserting a java application (Main.java) in a web application(index.jsp).
    I found a source demo of a drag and drop application on the Internet, but now I want to
    have the drag and drop application work in a Jpanel/JFrame in a webapplication.
    The drag and drop application code:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    public class Main {
        public static void main(final String[] args) {
            final ButtonGroup grp = new ButtonGroup();
            final JPanel palette = new JPanel(new FlowLayout(FlowLayout.LEFT));
            palette.setBorder(BorderFactory.createTitledBorder("Palette"));
            final MainPanel mainPanel = new MainPanel();
            mainPanel.setPalette(palette);
            for(int j=0; j<4; j++){
                final JToggleButton btn = new JToggleButton("Panel "+(j+1));
                palette.add(btn);
                grp.add(btn);
                btn.addActionListener(new ActionListener() {
                    public void actionPerformed(ActionEvent e) {
                        mainPanel.setAdding(btn.getText());
            final JFrame f = new JFrame("Drag and drop panels");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(palette, BorderLayout.WEST);
            f.getContentPane().add(mainPanel, BorderLayout.CENTER);
            f.setSize(800, 600);
            f.setVisible(true);
    class MainPanel extends JPanel implements MouseListener, MouseMotionListener {
        private JPanel palette;
        private String adding="";
        private SubPanel hitPanel;
        private int deltaX, deltaY, oldX, oldY;
        private final int TOL = 4;  //tolerance
        public MainPanel() {
            setLayout(null);
            addMouseListener(this);
            addMouseMotionListener(this);
        public void mousePressed(final MouseEvent e) {
            if( adding != "" ){
                setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
                SubPanel sub = new SubPanel(adding);
                add(sub);
                sub.setSize(sub.getPreferredSize());
                sub.setLocation((int)e.getX(),(int)e.getY());
                revalidate();
                adding = "";
                return;
            Component c = getComponentAt(e.getPoint());
            if (c instanceof SubPanel) {
                hitPanel = (SubPanel) c;
                oldX = hitPanel.getX();
                oldY = hitPanel.getY();
                deltaX = e.getX() - oldX;
                deltaY = e.getY() - oldY;
                if( oldX < e.getX()-TOL ) oldX += hitPanel.getWidth();
                if( oldY < e.getY()-TOL ) oldY += hitPanel.getHeight();
        public void mouseDragged(final MouseEvent e) {
            if (hitPanel != null) {
                int xH = hitPanel.getX();
                int yH = hitPanel.getY();
                int xDiff = e.getX()-oldX;
                int yDiff = e.getY()-oldY;
                int cursorType = hitPanel.getCursor().getType();
                if( cursorType == Cursor.W_RESIZE_CURSOR){           //West resizing
                    hitPanel.setBounds( e.getX(), yH, hitPanel.getWidth() - xDiff, hitPanel.getHeight() );
                }else if( cursorType == Cursor.N_RESIZE_CURSOR){     //North resizing
                    hitPanel.setBounds( xH, e.getY(), hitPanel.getWidth(), hitPanel.getHeight() - yDiff );
                }else if( cursorType == Cursor.S_RESIZE_CURSOR){     //South resizing
                    hitPanel.setSize( hitPanel.getWidth(), hitPanel.getHeight() + yDiff );
                }else if( cursorType == Cursor.E_RESIZE_CURSOR){     //East resizing
                    hitPanel.setSize( hitPanel.getWidth() + xDiff, hitPanel.getHeight() );
                }else if( cursorType == Cursor.NW_RESIZE_CURSOR){     //NorthWest resizing
                    hitPanel.setBounds( e.getX(), e.getY(), hitPanel.getWidth() - xDiff, hitPanel.getHeight() - yDiff );
                }else if( cursorType == Cursor.NE_RESIZE_CURSOR){     //NorthEast resizing
                    hitPanel.setBounds( xH, e.getY(), hitPanel.getWidth() + xDiff, hitPanel.getHeight() - yDiff );
                }else if( cursorType == Cursor.SW_RESIZE_CURSOR){     //SouthWest resizing
                    hitPanel.setBounds( e.getX(), yH, hitPanel.getWidth() - xDiff, hitPanel.getHeight() + yDiff );
                }else if( cursorType == Cursor.SE_RESIZE_CURSOR){     //SouthEast resizing
                    hitPanel.setBounds( xH, yH, hitPanel.getWidth() + xDiff, hitPanel.getHeight() + yDiff );
                }else{      //moving subpanel
                    hitPanel.setLocation( e.getX()-deltaX, e.getY()-deltaY );
                oldX = e.getX();
                oldY = e.getY();
        public void mouseMoved(final MouseEvent e) {
            Component c = getComponentAt(e.getPoint());
            if (c instanceof SubPanel) {
                int x  = e.getX();
                int y  = e.getY();
                int xC = c.getX();
                int yC = c.getY();
                int w  = c.getWidth();
                int h  = c.getHeight();
                if(       y >= yC-TOL   && y <= yC+TOL && x >= xC-TOL   && x <= xC+TOL  ){
                    c.setCursor(new Cursor(Cursor.NW_RESIZE_CURSOR));
                }else if( y >= yC-TOL   && y <= yC+TOL && x >= xC-TOL+w && x <= xC+TOL+w ){
                    c.setCursor(new Cursor(Cursor.NE_RESIZE_CURSOR));
                }else if( y >= yC-TOL+h && y <= yC+TOL+h && x >= xC-TOL   && x <= xC+TOL ){
                    c.setCursor(new Cursor(Cursor.SW_RESIZE_CURSOR));
                }else if( y >= yC-TOL+h && y <= yC+TOL+h && x >= xC-TOL+w && x <= xC+TOL+w ){
                    c.setCursor(new Cursor(Cursor.SE_RESIZE_CURSOR));
                }else if( x >= xC-TOL   && x <= xC+TOL ){
                    c.setCursor(new Cursor(Cursor.W_RESIZE_CURSOR));
                }else if( y >= yC-TOL   && y <= yC+TOL ){
                    c.setCursor(new Cursor(Cursor.N_RESIZE_CURSOR));
                }else if( x >= xC-TOL+w && x <= xC+TOL+w ){
                    c.setCursor(new Cursor(Cursor.E_RESIZE_CURSOR));
                }else if( y >= yC-TOL+h && y <= yC+TOL+h ){
                    c.setCursor(new Cursor(Cursor.S_RESIZE_CURSOR));
                }else{
                    c.setCursor(new Cursor(Cursor.MOVE_CURSOR));
        public void mouseReleased(final MouseEvent e) { hitPanel = null; }
        public void mouseClicked(final MouseEvent e) {}
        public void mouseEntered(final MouseEvent e) {}
        public void mouseExited(final MouseEvent e) {}
        public void setAdding(final String string) {
            adding = string;
            setCursor(new Cursor(Cursor.HAND_CURSOR));
        public void setPalette(final JPanel panel) { palette = panel; }
    class SubPanel extends JPanel {
        public SubPanel(final String name) {
            setPreferredSize(new Dimension(100, 100));
            setBorder(new TitledBorder(new LineBorder(Color.BLACK), name));
    }This application works with JFrame, but I want to display the JFrame in a webapplication (JSP Page).
    I'm using Netbeans 6.0 (GlassFish) to create webapplication using Visual Web JavaServer Faces.
    So in summary:
    How can i display the drag and drop application into a JFrame (better in a JPanel) in a webapplication (index.jsp)??
    Hope you can help...
    Thanks in advance...
    Greetings,
    Rajsh

    So have an applet that opens a JFrame... JSP or not has nothing to do with it, since it's nothing but HTML the client gets.
    You can't have a JFrame embedded in an HTML page. And if you could have an applet but don't know how to get that copied code to fit inside (I mean, content pane is content pane), you might want to consider learning how to do that.

  • HELP PLEASE ITUNES WILL NOT LOAD RIGHT!!!!

    just tried to run itunes 10.5 but say the procedure entry point KCMByteStremNotification_AvailableLengthChanged could not be located in the dynamic link library CoreMedia.dll.. Please help just wanted to have itunes work!!!

    I am having the same issue! And I have tried everything from updates, to moving the coremedia.dll file, to uninstalling and reinstalling so many times im afraid they are not gonna let me download it anymore!!! Please can somebody help??

  • Help please! Safari keeps loading unwanted websites.

    After clicking on certain pages I want to view on Safari, it loads that page as well as pages like www.efix.com for Mac repair which is really annoying. It also capitalises certain words on web pages with links to clean and repair windows errors. I viewed a previous thread by someone called Davis, but this didn't work for me as I presume it's to dated. Is there any current suggestions that you helpful bunch could give me to try and cease this annoyance?

    Click here and follow the instructions, or if there’s a type of adware not covered by them on the computer, these ones.
    (124318)

  • Urgent help please: stuck on apple loading screen

    I really need some help. I turned off my ipod touch 4th gen and turned it back on, and now it wont get past the apple loading screen. Ive been on this forum for over an hour, reading articles and nothings working. Ive tried holding down sleep/home and the apple logo just reappears, my computers not recognising it at all!
    What can I do? Never had a problem with it before

    Try:
    - iOS: Not responding or does not turn on
    - If not successful and you can't fully turn the iPod fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.

  • Help please, not able to load images in a subclass of a japplet

    I've created this board for a project, but now I am stuck, I cannot seem to get images to appear, instead they come up as a nullpointerexception:
    public class Board extends JLayeredPane implements MouseListener, MouseMotionListener{
         private Container contentPane;
         private JLayeredPane jlp;     
         private boolean pieceSelected;
         private timepanel time;
         Image bimage;
         ImageIcon board;
         JLabel brd;
         Image pimage;
         ImageIcon piece;
         JLabel pce;
         private Graphics g;
         private pieceLayout pieces;
         private String piecename;
         private JLabel jl;
         boolean selected;
         private int offset;
         boolean changepos;
         boolean moving;
         private int brdwidth;
         private int brdheight;
         private Timer countdown;
         private updateTimer ut;
         private String cb;
         private clientinterface ci;
         private JFrame j;
         private int playerturn;
         public Board(clientinterface ci, JFrame j, Hashtable images, ArrayList names,
         ImageIcon brdicon, URL cb)
              j.setSize(500,450);
              countdown = new Timer();
              selected = false;
              jlp = this;
              jlp.setPreferredSize(new Dimension(500, 450));
              changepos = false;
              //contentPane = getContentPane();
              //this.setPreferredSize(new Dimension(500,400));
              jlp.setBounds(0,0,500,450);
              jlp.setLocation(0,0);
              jlp.setOpaque(true);
              jlp.setLayout(null);
              System.out.println(this.getSize() + "(((())))" );
              if(j.getWidth() > 400)
                   offset = j.getWidth() - 400;
              else
                   offset = 0;
              System.out.println("Width is: " +  j.getWidth() + " height: " + j.getHeight());     
              brdwidth = j.getWidth()-offset;
              brdheight = j.getHeight();
              System.out.println(images.size());     
              System.out.println(j.getWidth() + " " + j.getHeight() + " " + offset);
              brd = new JLabel(brdicon);
              brd.setBounds(0,0,j.getWidth()-offset, j.getHeight());
              brd.setSize(new Dimension(400,400));
              brd.setLocation(0,0);
              brd.setOpaque(true);
              jlp.add(brd, new Integer(-5));
              jlp.setBounds(0,0,j.getWidth(), j.getHeight());
              jlp.setVisible(true);
              time = new timepanel(jlp);
              time.setLocation(j.getWidth()-offset, 0);
              System.out.println(images.toString() + "++++++++");
              pieces = new pieceLayout(jlp, j.getWidth()-offset, names, cb);
              pieces.setLocation(0,0);
              pieces.setPreferredSize(new Dimension(400,400));
              pieces.setBounds(0,0,400,400);
              pieces.setVisible(true);
              time.setBounds(400,0, 100, 400);
              time.setVisible(true);
              ut = new updateTimer(time);
              jlp.add(pieces, new Integer(2));
              jlp.add(time, new Integer(2));
              //this.add(jlp);
              j.setLayeredPane(jlp);
              addMouseMotionListener(this);
              addMouseListener(this);
              //j.getContentPane().add(jlp);
              //j.setContentPane(this);
              j.validate();
              //j.getContentPane().setLayout(null);
              //j.setContentPane(this);
              j.paintAll(j.getGraphics());
         public void run()
              //this.repaint();
              this.paintAll(this.getGraphics());
              time.repaint();
         public void mouseDragged(MouseEvent e)
              JLabel temp;
              moving = true;
              //pce.setLocation(e.getX(), e.getY());
              //pieces.getPiece(pieces.translatecoords(e.getX(),e.getY())).setLocation(e.getX(),e.getY());
              int piecepos = pieces.translatecoords(e.getX(), e.getY());
              /*if(pieces.hasPiece(piecepos) && moving)
                   pieces.setSelected(piecepos);
                   temp = pieces.getPiece(piecepos);
                   //pieces.movePiece(e.getX(), e.getY());
                   temp.setLocation(e.getX(), e.getY());
              //this.repaint();
         public void mouseClicked(MouseEvent e)
              Point xpoin;
              System.out.println("Hello, clicked");
              /*pce.setLocation(e.getX(), e.getY());
              Point p = pce.getLocation();
              System.out.println(p.toString());*/
              System.out.println("\n" + e.getX() + " " + e.getY());
         public void mouseEntered(MouseEvent e)
         public void mouseExited(MouseEvent e)
         public void mouseReleased(MouseEvent e)
              if(selected)
                   Point xp;
                   int x = e.getX();
                   int y = e.getY();
                   int bp = pieces.translatecoords(x,y);
                   xp = pieces.posToPoint(bp);
                   pieces.snapToSquare(xp.x, xp.y, bp);
                   selected = false;
                   moving = false;
                   //pieces.updateBoard(bp, piecename);
         public void mouseMoved(MouseEvent e)
         public void mousePressed(MouseEvent e)
              Point xpoin;
              int pos = pieces.translatecoords(e.getX(),e.getY());
              System.out.println("\n" + pieces.translatecoords(e.getX(),e.getY()));
              if(pieces.hasPiece(pos, e.getX(), e.getY()))
                        piecename = pieces.getName(pos);
                        System.out.println("Found a piece!");
                        pieces.setSelected(pos);
                        xpoin = pieces.posToPoint(pos);
                        selected = true;
         public void paintComponent(Graphics g)
              //super.paintComponents(g);
              //System.out.println("Painting");
              time.repaint();
         public void start()
              countdown.schedule(ut, 0, 1000);
         public void setupBoard()
                   //setSize(getSize().width < 400 ? 400 : getSize().width,
                   //getSize().height < 400 ? 400 : getSize().height);
                   //getLayeredPane().add(brd, new Integer(-5));
         public void sendInfo(String info)
              //parse information
         public class pieceLayout extends JLayeredPane
              JLabel pce1;
              private JLabel selected;
              private Hashtable pieceList;
              private ArrayList names;
              private int width;
              private Hashtable piecesOnBoard;
              private char boardstate[]= {'R','N','B','Q','K','B','N','R',
                                                 'P','P','P','P','P','P','P','P',
                                                 'p','p','p','p','p','p','p','p',
                                                 'r','n','b','q','k','b','n','r'
              private String posnm[]       = {
                                                       "a8", "b8", "c8", "d8", "e8", "f8", "g8", "h8",
                                                       "a7", "b7", "c7", "d7", "e7", "f7", "g7", "h7",
                                                       "a6", "b6", "c6", "d6", "e6", "f6", "g6", "h6",
                                                       "a5", "b5", "c5", "d5", "e5", "f5", "g5", "h5",
                                                       "a4", "b4", "c4", "d4", "e4", "f4", "g4", "h4",
                                                       "a3", "b3", "c3", "d3", "e3", "f3", "g3", "h3",
                                                       "a2", "b2", "c2", "d2", "e2", "f2", "g2", "h2",
                                                       "a1", "b1", "c1", "d1", "e1", "f1", "g1", "h1"
              JLayeredPane thePane;
              private Hashtable ht;
              private Hashtable board;
              private Hashtable b2p;
              private Hashtable p2b;
              private Hashtable piecePos;
              private Hashtable objToName;
              private Hashtable posnames;
              private URL codebase;
              public pieceLayout(JLayeredPane p, int twidth, ArrayList pnames, URL cb)
                   pieceList = new Hashtable(20);
                   codebase = cb;
                   names = pnames;
                   selected = new JLabel();
                   piecesOnBoard = new Hashtable(32);
                   ht = new Hashtable(6);
                   board = new Hashtable(64);
                   b2p = new Hashtable(64);
                   p2b = new Hashtable(64);
                   piecePos = new Hashtable(64);
                   objToName = new Hashtable(32);
                   posnames = new Hashtable(64);
                   fillnames();
                   getImages();
                   setImages();
                   width = twidth;
                   thePane = p;
                   System.out.println(piecesOnBoard.size());
                   showBoard();
              private void fillnames()
                   int size = posnm.length;
                   for(int i = 0; i < size; i++ )
                        posnames.put(new Integer(i), new String(posnm));
                   showPos();
              private void getImages()
                   Pattern p = Pattern.compile(".+\\.GIF");
                   Pattern p1 = Pattern.compile(".+\\.gif");
                   Pattern p2 = Pattern.compile("board.+");
                   Pattern p3 = Pattern.compile(".+board.+");
                   for(int i = 0; i < names.size(); i++)
                        Matcher m = p.matcher((String)names.get(i));
                        Matcher m1 = p1.matcher((String)names.get(i));
                        Matcher m2 = p2.matcher((String)names.get(i));
                        Matcher m3 = p3.matcher((String)names.get(i));
                        if(m.matches() || m1.matches())
                             //System.out.println("Files are: " + dirs[i].getName());
                             if(!m2.matches() && !m3.matches())
                                  String piecename = new String((String)names.get(i));
                                  //     System.out.println("Files were: " + dirs[i].getName());
                                  Image tpimage = Toolkit.getDefaultToolkit().createImage(piecename);
                                  Image pimage = tpimage.getScaledInstance(35,35, Image.SCALE_DEFAULT);
                                  //ImageIcon piece = new ImageIcon(pimage);
                                  pieceList.put(new String(piecename), pimage);
                   System.out.println(pieceList.toString());
                   System.out.println(pieceList.size() + "((**))(())");
              private void setImages()
                   int listsize = names.size();
                   if(!pieceList.isEmpty())
                        int index = 0;
                        for(int i = 0; i < listsize; i++)
                             String pieceName = (String)names.get(index);
                             String hKey = getHashKey(pieceName);
                             System.out.println(hKey);
                             if((hKey.compareTo("blackking") == 0) || (hKey.compareTo("blackqueen") == 0) ||
                             (hKey.compareTo("whiteking") == 0) || (hKey.compareTo("whitequeen") == 0))
                                  Image tpiece = (Image)pieceList.get(new String(hKey));
                                  ImageIcon piece = new ImageIcon(tpiece);
                                  pce1 = new JLabel(piece);
                                  piecesOnBoard.put(new String(hKey), pce1);
                             else
                                  System.out.println("multiples " + hKey);
                                  createMultiples(hKey, pieceName);
                             if(i == listsize-1)
                                  index = 0;
                             else
                                  index++;
                             System.out.println(pieceName + " " + hKey + "1234567890");
              private void createMultiples(String key, String hname)
                   JLabel piecet;
                   String name;
                   if(key == "blackpawn" || key == "whitepawn")
                        name = key;
                        for(int i = 0; i < 8; i++)
                             //System.out.println(name+i);
                             String tempname = name+i;
                             Image piece = (Image)pieceList.get(new String(name));
                             ImageIcon pieces = new ImageIcon(piece);
                             piecet = new JLabel(pieces);
                             piecesOnBoard.put(new String(tempname), piecet);
                   else if(key == "blackknight" || key == "whiteknight")
                        name = key;
                        for(int i = 0; i < 2; i++)
                             //System.out.println(name+i);
                             String tempname = name+i;
                             Image piece = (Image)pieceList.get(new String(name));
                             ImageIcon pieces = new ImageIcon(piece);
                             piecet = new JLabel(pieces);
                             piecesOnBoard.put(new String(tempname), piecet);
                        if(!ht.containsKey(new String(key)))
                             ht.put(new String(key+0), new Integer(0));
                   else if(key == "blackbishop" || key == "whitebishop")
                        name = key;
                        for(int i = 0; i < 2; i++)
                             System.out.println(name+i);
                             String tempname = name+i;
                             Image piece = (Image)pieceList.get(new String(name));
                             System.out.println(piece.toString());
                             ImageIcon pieces = new ImageIcon(piece);
                             piecet = new JLabel(pieces);
                             piecesOnBoard.put(new String(tempname), piecet);
                        if(!ht.containsKey(new String(key)))
                             ht.put(new String(key+0), new Integer(0));
                   else if(key == "blackrook" || key == "whiterook")
                        name = key;
                        for(int i = 0; i < 2; i++)
                             System.out.println(name+i);
                             String tempname = name+i;
                             Image piece = (Image)pieceList.get(new String(name));
                             ImageIcon pieces = new ImageIcon(piece);
                             piecet = new JLabel(pieces);
                             piecesOnBoard.put(new String(tempname), piecet);
                        if(!ht.containsKey(new String(key)))
                             ht.put(new String(key+0), new Integer(0));
    Hopefully this will format alright, but my question is, is that why is it giving me this error... it happens in the create multiples function(the last function in this code block) this is a jlayeredpane which is called by a JApplet. Any ideas on the loading? Its in the getImages() fuction.

    These are the lines it dies on.... the System.out.println(piece.toString()); precisely. I don't know if I am not getting the images from the directory right... or if I need to make sure this is in a JAR file or not.
    {                    name = key;                    for(int i = 0; i < 2; i++)                    {                         System.out.println(name+i);                         String tempname = name+i;                         Image piece = (Image)pieceList.get(new String(name));                         System.out.println(piece.toString());                         ImageIcon pieces = new ImageIcon(piece);                         piecet = new JLabel(pieces);                         piecesOnBoard.put(new String(tempname), piecet);                    }                    if(!ht.containsKey(new String(key)))                    {                         ht.put(new String(key+0), new Integer(0));                    }                    

  • Applications load slowly on imac after Mavericks clean install

    After a clean install of Mavericks, my late 2009 imac runs more slowly compared to how it ran under Snow Leopard.  Applications like "Settings" take a few seconds to load, whereas under snow leopard, the application would load almost instantly.  The Novabench score now is around 771, and matches about what I measured after the clean Mavericks install, but appears low compared to scores for similarly configured systems running Snow Leopard.  The system is quite usable, especially if applications are left open, just slower.  Is it possible to identify from Etrecheck a possible explanation?  Is this level of degradation of performance expected when upgrading an old system?  Thank you for your help.
    Problem description:
    Applications load slowly.  Late 2009 iMac runs slowly under Mavericks compared to Snow Leopard.
    EtreCheck version: 2.1.2 (105)
    Report generated December 13, 2014 at 11:48:21 PM PST
    Hardware Information: ℹ️
        iMac (27-inch, Late 2009) (Verified)
        iMac - model: iMac11,1
        1 2.66 GHz Intel Core i5 CPU: 4-core
        12 GB RAM Upgradeable
            BANK 0/DIMM0
                2 GB DDR3 1067 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1067 MHz ok
            BANK 0/DIMM1
                4 GB DDR3 1067 MHz ok
            BANK 1/DIMM1
                4 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        ATI Radeon HD 4850 - VRAM: 512 MB
            iMac 2560 x 1440
    System Software: ℹ️
        OS X 10.9.5 (13F34) - Uptime: 25 days 2:39:43
    Disk Information: ℹ️
        WDC WD1001FALS-40U9B0 disk0 : (1 TB)
        S.M.A.R.T. Status: Verified
            EFI (disk0s1) <not mounted> : 210 MB
            1 TB WDC (disk0s2) / : 999.35 GB (766.77 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
        OPTIARC DVD RW AD-5680H 
    USB Information: ℹ️
        Logitech USB Keyboard
        Western Digital My Passport 0820 2 TB
            S.M.A.R.T. Status: Verified
            EFI (disk1s1) <not mounted> : 210 MB
            MyPassport (disk1s2) /Volumes/MyPassport : 2.00 TB (862.18 GB free)
        Apple Internal Memory Card Reader
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
        Griffin Technology, Inc iMic USB audio system
        Apple Inc. iPod
        Logitech USB Laser Mouse
        Apple Inc. Built-in iSight
        Apple Computer, Inc. IR Receiver
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Applications/Karabiner.app
        [loaded]    org.pqrs.driver.Karabiner (10.2.0 - SDK 10.9) [Support]
            /Applications/Parallels Desktop.app
        [loaded]    com.parallels.kext.hidhook (9.0 24251.1052177) [Support]
        [loaded]    com.parallels.kext.hypervisor (9.0 24251.1052177) [Support]
        [loaded]    com.parallels.kext.netbridge (9.0 24251.1052177) [Support]
        [loaded]    com.parallels.kext.usbconnect (9.0 24251.1052177) [Support]
        [loaded]    com.parallels.kext.vnic (9.0 24251.1052177) [Support]
            /Library/Extensions
        [loaded]    com.Logitech.Control Center.HID Driver (3.9.1 - SDK 10.8) [Support]
            /System/Library/Extensions
        [not loaded]    com.Logitech.Unifying.HID Driver (1.3.0 - SDK 10.6) [Support]
    Problem System Launch Daemons: ℹ️
        [failed]    com.apple.wdhelper.plist
    Launch Agents: ℹ️
        [running]    com.Logitech.Control Center.Daemon.plist [Support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.ARM.[...].plist [Support]
    User Login Items: ℹ️
        Macs Fan Control    Application (/Applications/Macs Fan Control.app)
        iTunesHelper    Application (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        Firefox    Application (/Applications/Firefox.app)
        Karabiner    Application (/Applications/Karabiner.app)
    Internet Plug-ins: ℹ️
        FlashPlayer-10.6: Version: 15.0.0.246 - SDK 10.6 [Support]
        QuickTime Plugin: Version: 7.7.3
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Support]
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Support]
        Flash Player: Version: 15.0.0.246 - SDK 10.6 Mismatch! Adobe recommends 16.0.0.235
        Default Browser: Version: 537 - SDK 10.9
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Support]
        iPhotoPhotocast: Version: 7.0
    3rd Party Preference Panes: ℹ️
        Flash Player  [Support]
        Logitech Control Center  [Support]
    Time Machine: ℹ️
        Time Machine not configured!
    Top Processes by CPU: ℹ️
             3%    WindowServer
             1%    fontd
             1%    MacsFanControl
             0%    prl_client_app
             0%    RStudio
    Top Processes by Memory: ℹ️
        3.14 GB    prl_vm_app
        850 MB    firefox
        296 MB    com.apple.WebKit.WebContent
        271 MB    Mail
        232 MB    mds_stores
    Virtual Memory Information: ℹ️
        414 MB    Free RAM
        5.25 GB    Active RAM
        5.03 GB    Inactive RAM
        1.58 GB    Wired RAM
        22.68 GB    Page-ins
        3.09 GB    Page-outs
    Diagnostics Information: ℹ️

    Activity Monitor - Mavericks  also Yosemite
    Activity Monitor in Mavericks has significant changes
    Performance Guide
    Why is my computer slow
    Why your Mac runs slower than it should
    Slow Mac After Mavericks
    Things you can do to resolve slowdowns  see post by Kappy

  • Unable to load the user interface-please reinstall the application-Audigy 2 zs Platinum

    unable to load the user interface-please reinstall the application---this is the message I get when my pc starts------Someone messing around with my computer tried to delete creative media source player 3 when they saw I had both 3 and 5 in folder and i get this error message every time I start my pc. In addition to this I have lost my EAX and THX consoles and my speaker settings are gone so I cannot adjust my 5. system at all. After I delete that error message when I click on the creative icon is sys tray instead of opening up the creative media player I get the error message--unable to load needed componants. Please reinstall the application. this is media player 3[version 3.32.]. I dont know why during the auto?updates through the last couple of years I have media player 3 in sys tray and if I need version 5 it is in file with 3--start-all programs-creative--any way my pc is a Cyberpower AMD FX-53 using win xp pro-32 bit-- and of course its a OEM product so they tell me the only way to get it to work is use the restoration cd they gave me when I bought the pc and it will revert back to its original state as when purchased. I would lose all my games, music, pictures?ect and would have to start from scratch.[ OR of course back everything up on a portable hard dri've]?It seems like there should be an easier way --hell I might as well buy a new soundcard and it would make it easier. If anyone?has an answer for someone who is not a tech head so I can understand please help !!--thank you in advance for any assistance as it is greatly appreciated. Sorry this message is so long winded, just irritating to have spen so much for a pc and not have the original installation disc.-tried moving to another slot and the fixes I saw posted here with no luck---thank you folks again--Tom

    All the issues you guys are talking about have been reported in beta stage of these new drivers. I would say none of them has been fixed yet. The only solution for now is to use previous drivers which work fine or use some modified drivers which fixes some issues, but not all. Your choice.
    [url="http://connect.creativelabs.com/windows/Lists/Audigy%20Issues/AllItems.aspx">Bug List[/url]
    Message Edited by ronon0 on 08-07-2008 :47 AM

  • I cannot open my Safari. I double click and still loading forever an ever. I cannot get to any preferences at the configurations bar. Any help please?What should a i do to fixe that?

    I cannot open my Safari. I double click and still loading forever an ever. I cannot get to any preferences at the configurations bar. Any help please?What should a i do to fixe that?

    I saw on another post you have asked about this dates LINC DAVIS:
    Date/Time:       2014-07-01 19:03:59 -0300
    OS Version:      10.7.5 (Build 11G63)
    Architecture:    x86_64
    Report Version:  9
    Command:         Safari
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Version:         6.1.5 (7537.77.4)
    Build Version:   1
    Project Name:    WebBrowser
    Source Version:  7537077004000000
    Parent:          launchd [203]
    PID:             624
    Event:           hang
    Duration:        1.46s
    Steps:           15 (100ms sampling interval)
    Pageins:         7
    Pageouts:        0
    Process:         Safari [624]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Architecture:    x86_64
    UID:             501
      Thread 0x1597a      DispatchQueue 1
      User stack:
        15 ??? (in Safari) [0x10557ff2c]
          15 SafariMain + 266 (in Safari) [0x10577947c]
            15 NSApplicationMain + 867 (in AppKit) [0x7fff8b559eac]
              15 -[NSApplication run] + 470 (in AppKit) [0x7fff8b2dd9b9]
                15 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161 (in Safari) [0x1055e44d5]
                  15 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in AppKit) [0x7fff8b2e107d]
                    15 _DPSNextEvent + 1247 (in AppKit) [0x7fff8b2e19c5]
                      15 AEProcessAppleEvent + 102 (in HIToolbox) [0x7fff82c85b69]
                        15 aeProcessAppleEvent + 250 (in AE) [0x7fff832b89f7]
                          15 _ZL25dispatchEventAndSendReplyPK6AEDescPS_ + 38 (in AE) [0x7fff832b8b03]
                            15 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 200 (in AE) [0x7fff832b8c25]
                              15 _NSAppleEventManagerGenericHandler + 105 (in Foundation) [0x7fff896ed5dc]
                                15 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 283 (in Foundation) [0x7fff896ed74e]
                                  15 __-[NSAppleEventManager setEventHandler:andSelector:forEventClass:andEventID:]_block_invoke_1 + 101 (in Foundation) [0x7fff896ee7c7]
                                    15 -[NSObject performSelector:withObject:withObject:] + 65 (in CoreFoundation) [0x7fff81947541]
                                      15 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 330 (in AppKit) [0x7fff8b2e45b9]
                                        15 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 227 (in AppKit) [0x7fff8b2e4849]
                                          15 -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 193 (in AppKit) [0x7fff8b2e49f9]
                                            15 _NSPersistentUIFinishAcquiringTalagentWindows + 93 (in AppKit) [0x7fff8b3108cb]
                                              15 copyTalagentWindowsAcquisitionBlock + 79 (in AppKit) [0x7fff8b310947]
                                                15 +[NSBundle mainBundle] + 55 (in Foundation) [0x7fff896e1bb9]
                                                  15 -[NSRecursiveLock lock] + 25 (in Foundation) [0x7fff896badf9]
                                                    15 __psynch_mutexwait + 10 (in libsystem_kernel.dylib) [0x7fff87733bf2]
      Kernel stack:
        15 psynch_mtxcontinue + 0 (in mach_kernel) [0xffffff800059eb20]
      Thread 0x1599d      DispatchQueue 2
      User stack:
        15 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8ae7e316]
          15 kevent + 10 (in libsystem_kernel.dylib) [0x7fff877347e6]
      Kernel stack:
        15 kqueue_scan + 416 (in mach_kernel) [0xffffff800053b4d0]
      Thread 0x159a4   
      User stack:
        15 thread_start + 13 (in libsystem_c.dylib) [0x7fff8d3eeb75]
          15 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8d3eb8bf]
            15 _ZN3WTFL19wtfThreadEntryPointEPv + 15 (in JavaScriptCore) [0x105e2da3f]
              15 WebCore::IconDatabase::iconDatabaseSyncThread() + 303 (in WebCore) [0x106958faf]
                15 WebCore::IconDatabase::syncThreadMainLoop() + 491 (in WebCore) [0x10695c39b]
                  15 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff87733bca]
      Kernel stack:
        15 psynch_cvcontinue + 0 (in mach_kernel) [0xffffff800059e920]
      Thread 0x159a9   
      User stack:
        15 thread_start + 13 (in libsystem_c.dylib) [0x7fff8d3eeb75]
          15 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8d3eb8bf]
            15 thread_fun + 24 (in QuartzCore) [0x7fff81e65d35]
              15 CA::Render::Server::server_thread(void*) + 184 (in QuartzCore) [0x7fff81e65df5]
                15 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8773267a]
      Kernel stack:
        15 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
      Thread 0x159b2   
      User stack:
        15 thread_start + 13 (in libsystem_c.dylib) [0x7fff8d3eeb75]
          15 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8d3eb8bf]
            15 __NSThread__main__ + 1575 (in Foundation) [0x7fff8970f6a2]
              15 -[NSThread main] + 68 (in Foundation) [0x7fff8970f72a]
                15 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335 (in Foundation) [0x7fff8971afd7]
                  15 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff818e9486]
                    15 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff818e9c74]
                      15 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff818e150c]
                        15 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8773267a]
      Kernel stack:
        15 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
      Thread 0x159b7   
      User stack:
        15 thread_start + 13 (in libsystem_c.dylib) [0x7fff8d3eeb75]
          15 ??? (in Safari) [0xdeadbeef]
            15 dlopen + 540 (in dyld) [0x7fff65188657]
              15 dyld::runInitializers(ImageLoader*) + 97 (in dyld) [0x7fff651821b9]
                15 ImageLoader::runInitializers(ImageLoader::LinkContext const&, ImageLoader::InitializerTimingList&) + 59 (in dyld) [0x7fff6518d0b7]
                  15 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&) + 237 (in dyld) [0x7fff6518c2cd]
                    15 _ZN4dyldL12notifySingleE17dyld_image_statesPK11ImageLoader + 226 (in dyld) [0x7fff65180973]
                      15 load_images + 233 (in libobjc.A.dylib) [0x7fff8897636b]
                        15 call_load_methods + 161 (in libobjc.A.dylib) [0x7fff889766ca]
                          15 +[VSearchLib load] + 92 (in libVSearchLoader.dylib) [0x109b72bf4]
                            15 -[NSBundle principalClass] + 41 (in Foundation) [0x7fff8970ed84]
                              15 -[NSBundle load] + 18 (in Foundation) [0x7fff897173f8]
                                15 objc_msgSend_vtable3 + 24 (in libobjc.A.dylib) [0x7fff889780d8]
      Kernel stack:
        15 hndl_alltraps + 225 (in mach_kernel) [0xffffff80002da481]
          15 user_trap + 711 (in mach_kernel) [0xffffff80002c4017]
            15 exception_triage + 149 (in mach_kernel) [0xffffff8000220e15]
              15 exception_deliver + 766 (in mach_kernel) [0xffffff8000220c1e]
                15 exception_raise_state_identity + 325 (in mach_kernel) [0xffffff8000249c75]
                  15 mach_msg_rpc_from_kernel_body + 277 (in mach_kernel) [0xffffff80002239d5]
                    15 ipc_mqueue_receive + 70 (in mach_kernel) [0xffffff8000215886]
                      15 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f42b]
                        15 thread_continue + 1661 (in mach_kernel) [0xffffff800022f1ad]
                          15 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c2939]
      Binary Images:
             0x10557f000 -        0x10557ffff  com.apple.Safari 6.1.5 (7537.77.4) <1144E535-39EB-3DD2-8326-F931E2CEDFC5> /Applications/Safari.app/Contents/MacOS/Safari
             0x105589000 -        0x105ac2fff  com.apple.Safari.framework 7537 (7537.77.4) <079F7B57-311E-3A81-B3ED-B7AC3F78E262> /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
             0x105e24000 -        0x1061cbff7  com.apple.JavaScriptCore 7537 (7537.77.1) <C0C6D15C-8C26-3FD8-BE2E-7A1C20B46359> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
             0x106953000 -        0x107a00ff7  com.apple.WebCore 7537 (7537.77.4) <E0176EFF-835E-3B32-909D-E3A426947476> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
             0x109b72000 -        0x109b73fff  libVSearchLoader.dylib ??? (???) <2DF78468-AB4B-363E-A838-D4CE14679E8B> /System/Library/Frameworks/VSearch.framework/Versions/A/Libraries/libVSearchLoa der.dylib
          0x7fff6517f000 -     0x7fff651b3baf  dyld ??? (???) <C58DAD8A-4B00-3676-8637-93D6FDE73147> /usr/lib/dyld
          0x7fff818b1000 -     0x7fff81a85ff7  com.apple.CoreFoundation 6.7.2 (635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff81e63000 -     0x7fff82003ff7  com.apple.QuartzCore 1.7 (270.5) <19E5E0AB-DAA9-3F97-988C-D9A46AFB9C04> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
          0x7fff82c75000 -     0x7fff82fa1fff  com.apple.HIToolbox 1.9 (???) <CCB32DEA-D0CA-35D1-8019-E599C8007AB6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff832b5000 -     0x7fff832f4fff  com.apple.AE 527.7 (527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
          0x7fff8771d000 -     0x7fff8773dfff  libsystem_kernel.dylib ??? (???) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8896d000 -     0x7fff88a51e5f  libobjc.A.dylib ??? (???) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
          0x7fff896b5000 -     0x7fff899cefff  com.apple.Foundation 6.7.2 (833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8ae7c000 -     0x7fff8ae8afff  libdispatch.dylib ??? (???) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
          0x7fff8b2d9000 -     0x7fff8bedffff  com.apple.AppKit 6.7.5 (1138.51) <44417D02-6123-3FC3-A119-CE51BB4C3006> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff8d39d000 -     0x7fff8d47afef  libsystem_c.dylib ??? (???) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib

  • How can I fix the Runtime Error R6034 so that I can correctly install iTunes on my PC ? I get a notice that states ' An application has made an attempt to load the C runtime library incorrectly - Please contact the application's support team for more info

    How can I fix the Runtime Error R6034 so that I can correctly install iTunes on my PC ? I get a notice that states ' An application has made an attempt to load the C runtime library incorrectly - Please contact the application's support team for more info

    Hey Debbiered1,
    Follow the steps in this link to resolve the issue:
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    When you uninstall, the items you uninstall and the order in which you do so are particularly important:
    Use the Control Panel to uninstall iTunes and related software components in the following order and then restart your computer:
    iTunes
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support (iTunes 9 or later)
    Important: Uninstalling these components in a different order, or only uninstalling some of these components may have unintended affects.
    Let us know if following that article and uninstalling those components in that order helped the situation.
    Welcome to Apple Support Communities!
    Take care,
    Delgadoh

  • I did an auto-update on itunes today and now itunes is unresponsive..it gives this error "An application has made an attempt to load the C runtime library incorrectly. Please contact the application's support team for more information."

    I did an auto-update on itunes today and now itunes is unresponsive..it gives this error "An application has made an attempt to load the C runtime library incorrectly. Please contact the application's support team for more information."
    Wouldn't apple check before releasing new version, I see so many people with same issue..its such a waste of time for everyone now to fix it.
    Is there any other way to fix before I try to un-install everything and re-install back?

    Hello iTunes_Bad_Update,
    The following article provides information and troubleshooting steps that can help get iTunes back up and running.
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/TS1717
    Cheers,
    Allen

  • My Creative Cloud wont show the Apps, it says download Error contact support. And on the Home Menu on the creative cloud for MAC desktop it just loads and loads and never stops. Help please!!

    My Creative Cloud wont show the Apps, it says download Error contact support. And on the Home Menu on the creative cloud for MAC desktop it just loads and loads and never stops. Help please!!

    Hypesuh I would recommend reviewing both Error downloading Creative Cloud applications - http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html and Creative Cloud app doesn't open and hangs on spinning progress wheel - http://helpx.adobe.com/creative-cloud/kb/creative-cloud-app-doesnt-open.html as it appears both documents are applicable towards the difficulties which you are currently facing.

  • After Mavericks, applications tend to become slow, painfully slow. Particularly iMovie; all other applications, Mail, Browser (Chrome) and others too are either running slow or 'not responding'. Help, please

    After upgrading to Mavericks, from Mountai Lion, all applications are slowing down. iMovie particularly is painfully slow. When iM is running, any other application that is opened up also runs slow or does not respond altogether. It was fine before Mavericks, can somebody help, please.
    Thank you.

    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 the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, or by corruption of certain system caches. 
    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. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and  Wi-Fi on certain models. The next normal boot may also be somewhat slow.
    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.

  • 'Error loading plugin: Plugin file not found' message on ONLY 5 sites, but all others OK.  Help, please!

    Hi Again!
    I posted this problem here before, but since I really need to access the sites that receive this error message in less than a month, I had to re-post; hopefully someone who didn't see it before will see it & have a solution for me.
    Here are the details:  I'm running windows 8.1 & I use Firefox 33.1.1, Pale Moon 25.1.0 or Opera 26.0 as my browsers, (I have IE installed & up-to-date, but I never use it).  I followed the 10-point checklist on Adobe & everything was done, except for "uncheck Hardware Acceleration" in Flash 'Settings'; I tried to uncheck it on this site, where it's indicated, as well as in my 4 browsers when I'm doing something that uses Flash, but no matter how hard I try, I can't 'uncheck' the check mark in that tiny box!  Since this error problem only affects 5 web sites, & I can watch streaming media on all other sites, I don't think it's an issue. 
    Here's how this problem began:  I was watching a live, streaming nest-cam on 5/09/14 around 11:00AM, (yes, I DO know the exact time & date, because it happened so suddenly while I was watching this website that I'd been watching since the end of February, 2014), when my screen went black.  I thought it was probably an Adobe Crash, but when the usual Crash Report window didn't show up, I just closed Firefox & reopened it, expecting to resume watching the nest-cam.  When I went back to the site, I got the black screen with the "Error loading plugin: Plugin file not found" message.  The chat portion on the site still works, though. I know there are other sites with this nest-cam feed, so I started trying them, but it took several tries for me to find one that didn't get the error message! I posted this problem on "Windows BBS" forum, & someone else posted that the same thing happened to them AND on the same sites!  They didn't have a solution, either.  I cleared my cache, rebooted my PC & even did a System Restore, but whatever happened in that brief second made using ONLY 5 sites impossible.  Here are the sites that receive the error message:
    http://pixcontroller.com/eagles, (but I CAN go to http://pixcontroller.com, but there isn't any streaming media)
    http://cbslocal.com/eagles
    http://westmorelandconservancy.org/BlueBirdwebcam-1.htm
    http://wildearth.tv/cam/pittsburgh-bald-eagles, (I get the error message on ALL cams on this site)
    http://aviary.org/BE-NestCam1 (I get the error message on ALL cams on this site)
    Now if any videos from the 5 websites above are uploaded to YouTube, I can watch them perfectly...no error message if I watch the videos elsewhere.  Luckily, I found Ustream, & they have most of the nest cams I watch, but I need to fix this issue, because it's nearing nesting time!  I'm an amateur nest-watcher & it's vital that I have access to these 5 sites, so if anyone knows how to fix this, PLEASE tell me!
    Thanks for taking the time to read my post.
    All suggestions/solutions are gratefully accepted.
    Thanks in advance for your help!
    DogPal 

    File Not Found Error in Welcome Screen
    07-Nov-2013 10:25
    Tags: #dreamweaver_cs6_update
    Help please!
    Live preview also not working.
    I have exactly the exact problem described below but do not have a folder with the same name as the volume created under the volume. Please can someone help - I've tried everything. This problem only happened when I upgraded to Dreaweaver CC!
    "On launching Dreamweaver on your Macintosh if your Welcome Screen is not loading and if you see a "File not found" error, please check if you have a folder with the same name as your volume created under the volume. For more info on this please go through the attached pdf document. Other dialogs/panels in dreamweaver that will be blank due to this issue are Jquery Swatches panel, Adobe Edge Webfonts tab in Manage Fonts dialog,W3c Error Info dialog, Externalise Javascript dialog and svn revert dialog. After following the changes mentioned in the attached document please check all the affected dialogs/panels to confirm everything is working as expected."
    Thanks,
    Martin Bond
    [personal information removed by moderator]

Maybe you are looking for