Why am I STILL getting "No AirPort card installed"?

Guys, I am really struggling with my laptop. Here's what happened.
My Macbook Pro 2009 13" was unexpectedly shutting down, freezing, etc. I took it into the Genius Bar and they ended up having to replace my hard drive bracket. Not terribly expensive, not a huge deal. When I got it home, it refused to acknowledge the AirPort card. It gave me "No AirPort card installed" and was not recognizing the hardware. I went back in, told them what happened, and they replaced the AirPort card (free of charge because I think someone there had messed it up since it had been fine before).
All was well until I had an oopsie moment and it took a serious bump upside while open. The computer wouldn't recognize the AirPort card again so I brought it into the Genius Bar again (and yes, that would be the third time in about a week and a half). They did not charge me and said all they had to do was reseed the card. Wonderful. It worked fine for about a day, then it started acting funny, not recognizing the card, but when I restarted it, all was well. I left it shut and charging last night and when I opened it this morning, yet again, "No AirPort card installed".
I've reset the PRAM and the SMC, I've restarted the computer multiple times, I've massaged the black hinge some... and now I'm researching USB Wifi adapters because I'm getting really fed up. Anyone have any idea why this keeps happening? Or any suggestions on what to do? The AirPort card is literally less than a month old. I can't go into the Genius Bar every few days to have them reseed my card, plus I'm sure they'd start to hate me.

Welcome to Apple Support Communities
If you are still having problems with your card and a new AirPort card doesn't solve anything, just ask for a new logic board. It will replace everything except the display, memory and hard drive, so this should work without any problem. If they refuse, insist because it looks like the only option in your case. Good luck

Similar Messages

  • Why am I still getting Error 16 after installing CS6 on a second computer?

    I have the CS6 version of Design and Web Premium installed on my macbook. Recently I tried installing it on my iMac running Yosemite. When opening any of the CS6 programs I get "Error 16". I have tried changing the permissions in the SLStore and Adobe PCD folders, but to no avail. I have also tried deactivating CS6 on my macbook. Why am I still getting Error 16?

    In this case you may to perform a clean installation once, meaning removing all Adobe products folders.
    First Run cc cleaner tool and clean remove all products
    http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.
    Then Open Applications folder and trash All Adobe related folders
    Click on Finder and then hold Command + Shift + G keys on your keypad
    It will open Go to folder window, type  exactly ~/Library and click on Go
    Then open Application Support
    Rename Adobe folder to Adobeold
    Go back to Library  and open Preferences
    Then trash All Adobe preferences files
    Go back to Library  and open cache ( trash All Adobe related files )
    Click on Finder and then hold Command + Shift + G keys on your keypad
    This time type /Library and click on Go.
    open Application Support
    Rename Adobe folder to Adobeold.
    If  possible restart the computer once.
    Then try to install your suite.

  • Why do I still get class or interface expected error????

    I made sure I closed all the bracket, why do i still get the error.
    Please help
    * ShopCartServletHW3.java
    * Created on November 19, 2007, 5:42 PM
    package ITI;
    import java.io.*;
    import java.net.*;
    import java.lang.*;
    import java.util.*;
    import java.text.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    * @author Administrator
    * @version
    public class ShopCartServletHW3 extends HttpServlet {
        /** Processes requests for both HTTP <code>GET</code> and <code>POST</code> methods.
         * @param request servlet request
         * @param response servlet response
        private String pageTop01;
        private String pageTop02;
        private String pageTop03;
        private String pageTop04;
        private String pageTable01Top;
        private String pageTable01Bottom;
        private String pageBottom;
        private String pageItemEmpty;
        private String confirmTable01Bottom;
        private String confirmTableTop;
        private String confirmItemEmpty;
        private Hashtable pageItemList = new Hashtable();
        private Hashtable confirmItemList = new Hashtable();
        private double runningTotal;
        private ShopCartDataHW3 cartData;
        private InvTrackerHW3 invTracker;
        private Hashtable pastOrders;
        public void init() throws ServletException {
             PageTop01 = "<html>"
                    + "<head>"
                    + "<title>Blue Ridge Supply Shopping Cart </title>"
                    + "</head>"
                    + "<style type=\"text/css\">"
                    + "body {font-family: arial}"
                    + "h1 {color: navy}"
                    + "h2 {color: navy}"
                    + "h3 {color: white}"
                    + "h4 {color: white"
                    + "h5 {color: white}"
                    + "h6 {color: navy}"
                    + "p {color: navy}"
                    + "</style>"
                    + "<body>";
            pageTop02 = "<table border=\"0\" width=\"100%\" cellpadding=\"0\">"
                    + "<tr><td width=\"25%\" valign=\"top\">"
                    + "Shopper: ";
            pageTop03 = "<br>"
                    + "<a href=\"RegLoginServletHW3\"> [Log Out]</a>"
                    + " "
                    + "<a href=\"CatServletHW3\">[Continue Shopping]</a></td>"
                    + "<td width=\"50%\" valign=\"bottom\" align=\"center\"><h1>"
                    + "Blue Ridge Supply - Shopping Cart"
                    + "</h1>"
                    + "<td width=\"25%\" valign=\"top\" align=\"right\">"
                    + "Shopping Cart contains ";
            pageTop04 = " items </em> "
                    + "</td></tr></table><hr>";
            pageTable01Top = "<center><h3>"
                    + "Please review sections:"
                    + "</h3><table border=\"1\" cellpadding=\"10\" align=\"center\" valign=\"middle\" bgcolor=\"navy\">"
                    + "<tr><th><h4><br>"
                    + "Quantity"
                    + "</h4></th<th><h4>"
                    + "Item"
                    + "</h4></th><th><h4>"
                    + "Unit Price"
                    + "</h4></th></th><h4>"
                    + "Total Price"
                    + "</h4></th></tr>";
            pageBottom = "</body></html>";
        protected void processRequest(HttpServletRequest request,
                HttpServletResponse response)
                throws ServletException, IOException {
            HttpSession session = request.getSession();
            if (session.isNew() || session == null) {
                sessionError( request, response);
            String userID;
            if (session.getAttribute("userID") != null) {
                userID = (String)session.getAttribute("userID");
            } else {
                sessionError( request, response);
                userID = "";
            Integer cartCount;
            if (session.getAttribute("cartCount") != null)
                cartCount = (Integer)session.getAttribute("cartCount");
            } else {
                sessionError( request, response);
                cartCount = Integer.valueOf(0);
            if (session.getAttribute("pastOrders") != null)
                pastOrders = (Hashtable)
                session.getAttribute("pastOrders");
                } else {
                sessionError( request, response);
                pastOrders = new Hashtable();
            if (session.getAttribute("invTracker") != null)
                invTracker = (InvTrackerHW3)
               session.getAttribute("invTracker");
            String shiptoname;
            String streetaddress;
            String city;
            String state;
            String zip;
            String shipservice;
            String cctype;
            String ccname;
            String ccnum;
            String ccexpmonth;
            String ccexpyear;
            // Shipping information
            Hashtable shipHash;
            if ((session.getAttribute("shipping") != null))
                shipHash = ((Hashtable)session.getAttribute("shipping"));
            } else {
                shipHash = new Hashtable();
            String [] shipping = new String[5];
            if (shipHash.get(userID) != null)  {
                shipping = (String[])shipHash.get(userID);
                shiptoname = shipping[0];
                streetaddress = shipping[1];
                city = shipping[2];
                state = shipping[3];
                zip = shipping[4];
            } else {
                shiptoname = "";
                streetaddress = "";
                city = "";
                state = "";
                zip = "";
            if ((session.getAttribute("shiptoname") != null)) {
            shiptoname = filter((String) session.getAttribute("shiptoname"))
            // Credit information
            if ((session.getAttribute("shipservice") != null)) {
                shipservice = filter((String) session.getAttribute("shipservice"));
            } else {
                shipservice = "";
            if ((session.getAttribute("ccname") != null)) {
                ccname = filter((String) session.getAttribute("ccname"));
            } else {
                ccname = "";     
            if ((session.getAttribute("cctype") != null)) {
                cctype = filter((String) session.getAttribute("cctype"));
            } else {
                cctype = "";
            if ((session.getAttribute("ccnum") != null)) {
                ccnum = filter((String)session.getAttribute("ccnum"));
            } else {
                ccnum = "";
            if ((session.getAttribute("ccexpmonth") != null)) {
                ccexpmonth = filter((String) session.getAttribute("ccexpmonth"));
            } else {
                ccexpmonth = "";
            if ((session.getAttribute("ccexpyear") != null)) {
                ccexpyear = filter((String) session.getAttribute("ccexpyear"));
            } else {
                ccexpyear = "";
            if (session.getAttribute("cart") != null && session.getAttribute("cartKeys") != null)
                cartData = new ShopCartDataHW3((Hashtable) session.getAttribute("cart"), (Hashtable)
                session.getAttribute("cartKeys"));
            else {
                cartData = new ShopCartDataHW3(new Hashtable(), new Hashtable());
            String itemToAdd;
            itemToAdd = (findItemAttribute(request, response));
            if ((itemToAdd != null) && (cartData.getItemID(itemToAdd) == null)) {
                cartData.updateItemID(itemToAdd, 1);
            if (itemToAdd != null) {
                int defaultValue = (cartData.getQty(itemToAdd).intValue());
                int x = getIntParameter(request, itemToAdd, defaultValue);
                if (x < 0) {
                    // do nothing
                } else {
                    cartData.updateItemID(itemToAdd, x);
           Hashtable cart = new Hashtable(cartData.getCart());
           Hashtable cartKeys = new Hashtable (cartData.getCartKeys());
           session.setAttribute("cart", cart);
           session.setAttribute("cartKeys", cartKeys);
           Integer numberOfKeys = new Integer (cartKeys.size());
           session.setAttribute("cartCount", numberOfKeys);
           runningTotal = 0;
           Enumeration keyValues = cartKeys.elements();
           while(keyValues.hasMoreElements()) {
               String key = (String) keyValues.nextElement();
               if (key != null) {
                   setCartPage(key, cartData);
                   setConfirmItemList(key, cartData);
           if (numberOfKeys.intValue() == 0) {
               setCartPage(null, cartData);
           String shippingAndCredit = loadShippingAndCredit(shiptoname, streetaddress, city, state, zip, shipservice, cctype, ccname, ccnum, ccexpmonth, ccexpyear);
           if (numberOfKeys.intValue() == 0) {
               session.setAttribute("confirm", "");
           } else {
               setConfirm(session, cartKeys, numberOfKeys);
           showPage(request, response, userID, cartKeys, numberOfKeys, shippingAndCredit);
        private void showPage(HttpServletRequest request,
                HttpServletResponse response, String userId, Hashtable cartKeys, Integer numberOfKeys, String shippingAndCredit)
                throws ServletException, IOException {
            response.setContentType("text/html;charset=UTF-8");
            PrintWriter out = response.getWriter();
            out.println(pageTop01 + pageTop02 + userID + pageTop03 + numberOfKeys + pageTop04);
            out.println(shippingAndCredit);
            out.println(pageTable01Top);
            Enumeration keyValues = cartKeys.elements();
            while(keyValues.hasMoreElements()) {
                String key = (String)keyValues.nextElement();
                if (key != null) {
                    out.println(pageItemList.get(key));
            if (numberOfKeys.intValue() == 0) {
                out.println(pageItemEmpty);
            out.println(pageTable01Bottom + pageBottom);
            out.close();
        private String findItemAttribute(HttpServletRequest request,
                HttpServletResponse response)
                throws ServletException, IOException {
            Enumeration paramNames = request.getParameterNames();
            while(paramNames.hasMoreElements()) {
                String paramName = (String) paramNames.nextElement();
                CatalogHW3 item = new CatalogHW3();
                if (item.getItem(paramName) != null) {
                    return paramName;
            return null;
        private void setCartPage(String key, ShopCartDataHW3 cartData) {
            String pageItemFormat00 = "<form action=\"ShopCartServletHW3\" method=\"post\"><tr bgcolor=\"white\"><td align=\"center\">"
                    + "<input type=\text\" name=\"";
            String pageItemFormat01 = "\" value=\"";
            String pageItemFormat02 = "\" size=\"3\" align=\"right\">"
                    + "<input type=\"submit\" name=\"Update\" value=\"Update\" />"
                    + "<br>";
            String pageItemFormat03 = "</td><td><img src=\"";
            String pageItemFormat04 = "\" align=\"middle\" width=\"48\" height=\"48\"> ";
            String pageItemFormat05 = "</td><td align=\"right\">";
            String pageItemFormat06 = "</td><td align=\"right\">";
            String pageItemFormat07 = "</td></tr></form>";
            DecimalFormat f = new DecimalFormat();
            if (key != null)  {
                int qtyOnHand = invTracker.getQtyOnHand(key);
                int qtyAvailable = qtyOnHand - cartData.getQty(key).intValue();
                if (qtyAvailable < 0) {
                    cartData.updateItemID(key, invTracker.getQtyOnHand(key));
                    qtyAvailable = 0;
                double total = ((cartData.getQty(key).intValue() * cartData.getCost(key)));
                pageItemList.put(key,          pageItemFormat00
                + cartData.getItemID(key)
                                             + pageItemFormat01
                + cartData.getQty(key)
                                             + pageItemFormat02
                + qtyAvaliable + " More Avaliable "
                                             + pageItemFormat03
                + cartData.getImagePath(key)
                                             + pageItemFormat04
                + cartData.getDescription(key)
                                             + pageItemFormat05
                + "$" + f.format(cartData.getCost(key))
                                             + pageItemFormat06
                + "$" + f.format(total)
                                             + pageItemFormat07);
                runningTotal = total + runningTotal;
            } else {
                pageItemEmpty = "<tr bgcolor=\"white\"><td colspan=\"4\" align=\"center\">"
                        + "Your Shopping Cart is empty ... Please buy something."
                        + "</td></tr>";
                runningTotal = 0;
            pageTable01Bottom = "<tr><td colspan=\"4\" align=\"Right\"><h4> Total Order: $ "
                    + f.format(runningTotal)
                    + "</h4></td></tr></table>";
    private void setConfirmItemList(String key, ShopCartDataHW3 cartData) {
        confirmTableTop = "<center><h3>"
                + "Order Details"
                + "<table border=\"1\" cellpadding=\"10\" align=\"center\" valign=\"middle\">"
                + "<tr><th><h4><br>"
                    + "Quantity"
                    + "</h4></th<th><h4>"
                    + "Item"
                    + "</h4></th><th><h4>"
                    + "Unit Price"
                    + "</h4></th></th><h4>"
                    + "Total Price"
                    + "</h4></th></tr>";
        String confirmItemFormat00 = "<tr bgcolor=\"white\"><td align=\"center\">";
        String confirmItemFormat01 = "<td align=\"right\">";
        String confirmItemFormat02 = "</td><td>";
        String confirmItemFormat03 = "<img src =\"";
        String confirmItemFormat04 = "\" align=\"middle\" width=\"48\" height=\"48\"> ";
        String confirmItemFormat05 = "</td><td align=\"right\">";
        String confirmItemFormat06 = "</td><td align=\right\">";
        String confirmItemFormat07 = "</td></tr>";
        DecimalFormat f = new DecimalFormat();
        if (key != null) {
            double total = ((cartData.getQty(key).intValue() * cartData.getCost(key)));
            confirmItemList.put(key,
                                              confirmItemFormat01
                + cartData.getQty(key)
                                             + confirmItemFormat02
                                             + confirmItemFormat03
                + cartData.getImagePath(key)
                                             + confirmItemFormat04
                + cartData.getDescription(key)
                                             + confirmItemFormat05
                + "$" + f.format(cartData.getCost(key))
                                             + confirmItemFormat06
                + "$" + f.format(total)
                                             + confirmItemFormat07);
        confirmTable01Bottom = "<tr><td colspan=\"4\" align=\"Right\"><h4>TOTAL ORDER: $ "
                + f.format(runningTotal)
                + "</h4></td></tr></table>";
    private void setConfirm(HttpSession session,
            Hashtable cartKeys, Integer numberOfKeys)
            throws ServletException, IOException {
        StringBuffer confirm = new StringBuffer(confirmTableTop);
        Enumeration keyValues = cartKeys.elements();
        while(keyValues.hasMoreElements()) {
            String key = (String)keyValues.nextElement();
            if (key != null) {
                confirm.append((String)
                confirmItemList.get(key));
        if (key != null) {
            confirm.append((String)
            confirmItemList.get(key));
    confirm.append(confirmTable01Bottom);
    session.setAttribute("confirm", confirm.toString());
    private String loadShippingAndCredit(String shiptonmae, String streetaddress, String city, String state, String zip, String shipservice, String cctype, String ccname, String ccnum, String ccexpmonth, String ccexyear) {
        String credit01;
        String credit02;
        String credit03;
        String ship01;
        String ship02;
        String ship03;
        String ship04;
        String ship05;
        String ship06;
        credit01 = "<form action=\"PurchConfServletHW3\" method=\"post\">"
                + "<table border=\"1\" cellpadding=\"10\" bgcolor=\"navy\" align\"center\">";
        ship01  =   "<center><h3>"
                + "Please provide your billing and shipping information: "
                + "<input type=\"submit\" name=\"Submit Order\" value=\"Submit Order\" />"
                + "</h3></hr>";
        String
        bill01  = "<tr><td bgcolor=\"white\">"
                + "Card Type:"
                + "<br>"
                + "<select name=\"cctype\">"
                + "<option value=\"Visa\" selected=\"selected\"> Visa</option>"
                + "<option value=\"MasterCard\" selected=\"selected\"> MasterCard</option>"
                + "<option value=\"American Express\" selected=\"selected\">American Express</option>"
                + "</select><br>"
                + "Card Number:"
                + "<br>"
                + "<input type=\"text\" name=\"ccnum\" value=\"";
      credit02  = "\"><br>"
                + "Cardholder Name:"
              + "<br>"
              + "<input type=\"text\" name=\"ccname\" value=\"";
      credit03  = "\"><br>"
                + "Expiration Date:"
              + "<br>"
              + "<select name=\"ccexpmonth\">"
              + "<option value=\"Jan\">Jan</option>"
              + "<option value=\"Feb\">Feb</option>"
              + "<option value=\"Mar\">Mar</option>"
              + "<option value=\"Apr\">Apr</option>"
              + "<option value=\"May\">May</option>"
              + "<option value=\"Jun\">Jun</option>"
              + "<option value=\"Jul\">Jul</option>"
              + "<option value=\"Aug\">Aug</option>"
              + "<option value=\"Sep\">Sep</option>"
              + "<option value=\"Oct\">Oct</option>"
              + "<option value=\"Nov\">Nov</option>"
              + "<option value=\"Dec\">Dec</option>"
              + "</select>"
              + "</td>";
      String
      ship00  = "<td bgcolor=\"white\">"
              + "Ship To Name:"
              + "<br>"
              + "<input type=\"text\" name=\"shiptoname\" size=\"37\" value=\"";
      ship02  = "\"<br>"
              + "Street Address:"
              + "<br>"
              +  + "<input type=\"text\" name=\"streetaddress\" size=\"37\" value=\"";
      ship03  = "\"<br>"
              + "City State Zip:"
              + "<br>"
              + "<input type=\"text\" name=\"city\" size=\"20\" value=\"";
      ship04  = "\">"
              + "<input type=\"text\" name=\"state\" size=\"2\" value=\"";
      ship05  = "\">"
              + "<input type=\"text\" name=\"zip\" size=\"5\" value=\"";
      ship06  = "\"</td>";
      String
      ship00a = "<td bgcolor=\"white\">"
              + "<input type=\"radio\" checked=\"checked\" name=\"shipservice\" value=\"UPS Ground\">UPS Ground"
              + "<br><br>"
              + "<input type=\"radio\"  name=\"shipservice\" value=\"UPS 2nd Day Air\">UPS 2nd Day Air"
              + "<br><br>"
              + "<input type=\"radio\"  name=\"shipservice\" value=\"FedEx Priority\">FedEx Priority"
              + "<br><br>"
              + "<input type=\"radio\"  name=\"shipservice\" value=\"FedEx Ultra\">FedEx Ultra"
              + "</td>";
      String
      ship00c = "</tr>"
              + "</table></form>";
      return credit01
              + ship01
              + bill01
              + ccnum
              + credit02
              + ccname
              + credit03
              + ship00
              + shiptoname
              + ship02
              + ship03
              + streetaddress
              + city
              + ship04
              + state
              + ship05
              + zip
              + ship06
              + ship00a
              + ship00c;
    private void sessionError(HttpServletRequest request,
            HttpServletResponse response)
            throws ServletException, IOException {
        String sessionErrorForm;
        sessionErrorForm = "<form action=\"RegLoginServletHW3\" method=\"post\"><tr bgcolor=\"white\"> <td align=\"center\">"
                + "<h3 align=\"center\">Your request has not been processed - some isseues were found. <br> Please return to the Login page. </h3>"
                + "<input type=\"submit\" name=\"Go to Login\" value=\"Go to Login\" /></form>";
        response.setContentType("text/html;charset=UTF-8");
        PrintWriter out = response.getWriter();
        out.println(pageTop01 + sessionErrorForm);
        out.close();
    private String filter(String input) {
        StringBuffer filter = new StringBuffer(input.length());
        char c;
        for(int i=0; i<input.length(); i++) {
            c = input.charAt(i);
            if (c == '<') {
                filtered.append("<");
            } else if ( c == '>') {
                filtered.append(">");
            } else if ( c == '"') {
                filtered.append(""");
            } else if (c == '&') {
                filtered.append("&");
            } else {
                filtered.append(c);
        return(filtered.toString());
    private int getIntParameter(HttpSevletRequest request,
            String paramName,
            int defaultValue) {
        String paramString = request.getParameter(paramName);
        int paramValue;
        try {
            paraValue = Integer.parseInt(paramString);
        } catch (NumberFormatException nfe) { // null or bad format
            paramValue = defaultValue;
        return(paramValue);
    //<editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
    /** Handles the HTTP <code>GET</code>method.
    * @param request servlet request
    * @param response servlet response
    protected void doGet(HttpServletRequest request,
            HttpServletResponse response)
            throws ServletException, IOException {
        processRequest(request, response);
    /** Handles the HTTP <code>POST</code>method.
    * @param request servlet request
    * @param response servlet response
    protected void doPost(HttpServletRequest request,
            HttpServletResponse response)
            throws ServletException, IOException {
        processRequest(request, response);
    /** Returns a short description of the servlet.
    public String getServletInfo() {
        return "Short description";
    // </editor-fold>
    }

    When you have errors, you should post them.
    I got 72 errors when I tried to compile the code you posted. Many of them are due to syntax errors like { and } not lining up.

  • HT201303 I have changed all of my billing info to the correct info. Why am I still getting an error message that says invalid security code?

    I have changed all of my billing info to the correct info. Why am I still getting an error message that says invalid security code?  I have an IPod.

    Welcome to the Apple Community.
    The following article(s) may help you.
    Credit card security code or postcode issues.

  • Why am I still getting this message after logging in - This computer is no longer authorized for apps that are installed on the iPhone "Myron Liptzin's iPhone". Would you like to authorize this computer for items purchased from the iTunes Store?

    why am I still getting this message after logging in?  "This computer is no longer authorized for apps that are installed on the iPhone “*************s iPhone”. Would you like to authorize this computer for items purchased from the iTunes Store?"  - after I have logged in and get the message that the computer is already authorized!!!?? - and then the above message pops up again?

    Click here and follow the instructions.
    (71175)

  • HT204379 I have pointed to my pictures folder and all the pictures are 1mb in size with a lowest resolution 4416 × 3312. Why do I still get blury images in my shifting titles screen saver?

    Hello,
    I have just moved to mac and pointed my screen saver to my pictures folder and all the pictures are 1mb in size with a lowest resolution 4416 × 3312. Why do I still get blury images in my shifting titles screen saver?
    Regards,
    Jan

    finally found it
    http://lifehacker.com/5711409/how-to-search-for-hidden-packaged-and-system-files -in-os-x
    need app find any file
    link at bottam

  • Get Message no airport card installed

    I transported my Macbook and when I set it up again it does not connect to the Internet and i get the message "No airport card installed".  Does this mean the airport card needs replacing?
    It also does not read a USB stick.

    It may be a physical problem with the card or it's connections but try a System Management Controller reset first. Instructions are here .

  • HT3964 I am getting the error message "No AirPort card installed" Restarting my iMac desktop does not solve this (Apple help says I need to reset the SMC this way, but nothing changes. Can somebody advise, please?

    I am getting the error message "No AirPort card installed" Restarting my iMac desktop does not solve this (Apple help says I need to reset the SMC this way, but nothing changes). Can somebody advise, please?

    Thanks for the flag J.K. - they contaced me and solved my problem.  On this account (which I created just to ask this question), I log in with my email rather than my user name (mtalldud). On the account that I was having trouble with, they told me to use my user ID instead of my email to log in and it worked. This is a bit confusing and seems a bit inconsistent but at least I don't need this temporary account any more to get into this community and find answers!

  • Getting message "no airport card installed"

    I can't connect to my wi-fi network and internet. I'm getting the message "no airport card installed" on my 2010 13" MBP. There is a card installed. If the card has come unseated can I reseat it myself or  do I have to take it to the apple store
    Thanks

    I'm having a similar issue.  My airport card was working fine and then, hours later - it does not recognize it on my new MacBook pro.  Not sure what is up here ...anyone from Apple able to solve this one?

  • Why does the airport say there is no airport card installed?

    I have had my MacBook Pro for 4 years now and have never had an issue. I turned my laptop on the other day and all of a sudden I can no longer connect to wifi and the airport button just says there is no airport card installed?

    The usual reason is that the Airport card has failed and will need to be replaced.

  • Can't boot from install disk, and says no airport card installed, HELP!

    I bought a new Macbook Pro a few months ago, which recently had to go in for repair to have the screen changed. It came back with the new screen fitted but they had done a terrible job at aligning the lid, so it went back again. Came back and all looked good, until i booted up and realized that where my wifi icon is at the top of the screen, it wasn't connected. When clicking it to bring down the drop down menu of available wifi spots, all it said was "No Airport Card Installed"....Thinking a repair of disk permissions might be worth trying, I tried to boot from my OSX install disk holding down C, however when holding down C all it does is go on a constant loop of restarting, not even reaching the Apple logo. If I don't hold down C then it simply boots to the desktop, so i'm unable to access disk utility correctly to run a repair.
    Being pretty fedup with the whole situation, the laptop has now gone back for a 3rd time, as it never had these two issues before. I was just wondering if anyone had any idea what might have caused this? And how a status of no airport card installed and a drive that wont boot a disk normally can be related?
    I'll be getting it back on Tuesday, but i just wanted to know what the heck they might have done to have screwed things up.
    Thanks
    Phil
    Message was edited by: Philip Dexter

    Hi Phil,
    I can't say for sure, but it sounds to me like they didn't reconnect the WiFi hardware when replacing the screen. To my knowledge, the Airport "hardware" (including the antenna) is located inside the screen hinge. When the screen was replaced (and the hinge not properly aligned) perhaps someone improperly connected the Airport hardware, or forgot to connect it entirely.
    The reason the WiFi hardware is located in the hinge is because that is the only plastic area of the entire notebook. Radio signals do not travel well through aluminum, so some area of the computer has to be plastic to allow that signal to get through. The hinge is the only area where that's possible.
    As for the reason why the machine wouldn't boot up from the disc, I have no idea. Here's hoping it does when it comes back. If I were you, I'd have a chat with Apple Customer Relations about the situation.
    --Travis

  • HT1338 my mac book pro now says "no airport card installed "which is weird since I always had airport for the last year?Help?

    I get the message "No airport card installed "on my mac book pro even though I've been using it for a year? Help anyone

    It's still working right?
    You can choose to run through this list of fixes
    Step by Step to fix your Mac
    I suspect the OnyX routine is going to show promise if a corrupt cache file is responsible.

  • "No AirPort Card Installed" error message

    Please help--
    I have a PowerBook G4 12", recently refurbished, running Mac OX X 10.5.8, 1.33 GHz, PowerPC G3, 1.25 GB memory.
    It works great. But this evening, my daughter dropped it onto a hardwood floor. At first, I thought everything was fine.
    But now, I get a message, "No AirPort Card Installed" message when I try to turn AirPort on.
    I'm typing on it now, so I'm able to go online using an ethernet cable, but I need AirPort connectivity.
    I've been religious about backing up on Time Capsule. Would it help to go into my Time Capsule to bring back an old AirPort setting? Should I remove, then reinstall the old AirPort card? Or will I have to buy a new AirPort card? And do they still sell those for Macs this old?
    Any info you have would be helpful, thanks.

    Yes, you should remove and reseat the Airport Extreme card. It may just have been jostled in its slot and not be making good contact now.

  • "No AirPort card installed" message

    I've been using my new 13" MBP for five weeks and the AirPort card has worked fine. Today, however after waking it from sleep the connection was gone and the AirPort icon was blank. I clicked on the menubar icon to "Turn AirPort on" but nothing happened.
    After a quick permissions repair and a restart, the blank menubar icon reads "No AirPort card installed."
    I have tried to reset the PRAM.
    I have tried using my TechTool Pro eDrive to seek problems. None found. (The same AirPort card message was in eDrive mode as well)
    AirPort software specs are available in System Profiler:
    Software Versions:
    Menu Extra: 6.2.2 (622.2)
    configd plug-in: 6.2.5 (625.6)
    System Profiler: 6.0.1 (601.1)
    Network Preference: 6.2.2 (622.2)
    AirPort Utility: 5.5.2 (552.11)
    IO80211 Family: 3.2 (320.1)
    Airport configuration is still available in my Network prefs: "Status: OFF" - although the AirPort ID is zeroed out.
    Console report:
    4/14/11 9:09:04 PM Apple80211 framework[372] airportd MIG failed (PowerEnable Event) = 5 (Input/output error) (port = 29211)
    I suspect this is a hardware error and beyond the means of a software fix, unless somebody knows otherwise.

    So, as my laptop is still under warranty, I spoke to customer support, who were very helpful.
    The problem was that there was not enough power getting to my AirPort card. The solution was to shut down and restart by pressing the power button and then Shift-Control-Option. It started up, and the AirPort card was up and running as normal.
    We'll see if this is a recurring problem with the MBP, but, so far, so good.

  • Mac Pro with no airport card installed

    I have a Mac Pro with no airport card installed....Can I just purchase an Airport express and connect by ethernet to the Mac pro.... I use Air port Extreme as my router for other computers

    Yes, this is referred to as a ProxySTA in the business.
    HOWEVER, this only became available with the 802.11n Express. I haven't yet seen it OFFICIAL if the new second generation still supports ProxySTA. I'm a bit hesitant to say yes, because the new express leans a little closer to the Extremes which work quite differently.  (haven't had time to test this yet myself)
    I'm curious, why you don't just run an ethernet from your extreme to your Pro... I'm guessing because of the distance?

Maybe you are looking for

  • WSH FORMS compilation error while updating R12.1.13 patch

    Hi , I am updating the R12.1.3 patch in AIX server but I am getting the following error .Please help me out this problem.. The following Oracle Forms objects did not generate successfully: wsh forms/US WSHSTREF.fmx wsh forms/US WSHQSSUI.fmx wsh forms

  • ERROR in PI : No sender agreement found for , , , , ,

    Hello everybody, i'm working with SAP PI 7.1 it's a new installation. I created the first easy interface JDBC-Pi-File. when i activate the CC i don't see any message in SXMB_MONI but in RWM i see the messages in Waiting status and when i look inside

  • Dot source/calling a function with switch from the cmd line

    Hi This is driving me crazy and I know its something really obvious. If I have an example script like so, called myexample.ps1 [CmdletBinding()] param [Parameter(Mandatory=$false, HelpMessage="My Switch")] [switch] $Myswitch, [Parameter(Mandatory=$fa

  • How to handle f:FACET in the the TR:TABLE?

    Hi buddies, I have a tr:table in which every row will have a <f:facet>. we can add/delete the rows. Since i have the facet inside every row, that will show the parent & child in accordingly. In this scenario, i have expanded the facet by clicking the

  • Random Error Message..

    Everytime i sync my ipod to my mac i get this error message... i hit ok and everything syncs fine, but its driving me mad.. ive reset the ipod to factory default twice with no help http://www.chilternburt.com/downloads/ipoderror.jpg Message was edite