Very Odd Problem connecting to network please help

Ok so I have had my Macbook Pro for a while and I have both an Airport Extreme and an Airport Express in my room. So until recently I could turn on my computer and my Airport would automatically connect to the internet. Now recently I turn on or open my computer and I can still see my network but I cannot connect to it. I have restarted all the devices and my computer, but the only thing that eventually logs me on (after anywhere between 5 minutes - an hour) is waiting. But the second I close my laptop I will get booted off the Internet and I cannot connect again.
However I can still see the network I just cannot connect to it.
Also another problem I have noticed is that when in Network Setup Assistant it asks me for the password for the network, and I have entered this password many times in my life for my iPhone and for my other devices. And yet recently when I input the correct password (ive tried over 100 times) I get a message saying that the password is incorrect, when I know for a fact that I am putting the right password in.
If anyone could please help me I would be very grateful.

The Airport Extreme base station has 2 passwords, one for logging into the router, the other for your network access (assuming you have security switched on). Just make sure you are trying to enter the correct password (I know this sounds obvious and no offense is meant).
If you added the Extreme to your other router, make sure in Airport utility the Extreme is set to Bridge Mode, this will remove any incompatibility issues with 2 devices trying to obtain IP addresses from your ISP. Only one router should connect to your ISP, using password, username and relevant settings, the other is a bridge for your internal network allowing faster transfers between devices connected to say for example your extreme.
I have a Netgear DG834PN modem/router which is assigned control to connect to my ISP (as it is a modem, the Extreme Base Station isn't a modem). The Apple Extreme is connected through ethernet to the Netgear. I have all my 802.11g/b/a devices connected through the Netgear wireless network (2.4Ghz) and all my 802.11n devices connected through the Apple Extreme Base Station wireless network ('n' only @5Ghz). I also have my Mac Pro and my AppleTV connected through gigabit ethernet (through the Extreme ethernet). Everything works well. AppleTV and Mac Pro sync very quickly, my MacBook Pro connects to other computers or devices (AppleTV for streaming content) within the Apple Extreme network, wired or wireless, and allows fast transfer speeds, especially with no g/b/a devices slowing things up.
I also have a USB hub connected to the Extreme with USB printer attached and additional external storage connected, both available throughout the Extreme network to either wired or wireless devices.
It sounds a bit complicated but it is really easy to do.

Similar Messages

  • Odd problem in recive message, please help me

    i have a problem in N73.
    Some messages are displayed at Log application but not display in inbox!!!
    Please help me.

    Is there any SMS Blocking application active in your phone ?

  • Very big problem....please help me

    Hai,
    I am in big trouble... that I am developing site in jsp in that i need to print one htmltextarea editor.I am using ephoxlive editor that is third party tool.
    Here I am able to retrive all content from this editor then I need to print this content if it is successfully printed based on that I need to update the print_status column in database...
    Becaz i will allow the user to print only once... based on this column...
    How i can handle the printer status..
    please help...
    -Thiru

    http://forum.java.sun.com/thread.jsp?forum=45&thread=446990&tstart=0&trange=15

  • Scope of variales? confusing and very frustrating problem....please help?

    Below is my entire program (a simple pl/sql stored procedure) and for some reason the variable newpay is not appearing in SQL*Plus. Have have turned serveroutput on and have checked that the variable otpay contains values, it's just newpay doesn't seemed to want to print to screen. Is this something to do with varaible scope within cursor loops or something? Thanks a lot for your help.
    CREATE OR REPLACE PROCEDURE lab5d (pp_fname varchar2, pp_lname varchar2, pp_month varchar2) AS
              TYPE ot_rec_type is RECORD
                   fname          emptrig.fname%type,
                   lname          emptrig.lname%type,
         otime_rate     emptrig.otime_rate%type,
                   hours          overtime_sessions.hours%type,
                   o_date          overtime_sessions.o_date%type
              TYPE cur_type is REF CURSOR;
         c1          cur_type;
         firstdate     date;
         lastdate     date;
         otpay          number;
         newpay          number;          
         ot_rec          ot_rec_type;
    BEGIN
         firstdate := TO_DATE('01' || pp_month || '2002', 'DD-MON-YYYY');
         lastdate := LAST_DAY(firstdate);
         open c1 for     SELECT fname, lname, otime_rate, hours, o_date
                   FROM     emptrig, overtime_sessions
                   WHERE     etrigot_id = emptrig_id AND
                        fname = pp_fname AND
                        lname = pp_lname AND
                        o_date >= firstdate AND o_date <= lastdate;
         LOOP
              fetch c1 into ot_rec;
              exit when c1%notfound;
              otpay := ot_rec.hours * ot_rec.otime_rate;
              newpay := otpay + newpay;
         END LOOP;
              dbms_output.put_line(newpay); -- this line does not print but otpay contains values
    END;

    Michael,
    You already asked this question Re: Oracle EM 10g - Running an OS Command and you were given a (in my opinion) correct answer. If you don't agree with the answer, or if you have tested it and it did not work, then post a reply to that message.
    It is very frustrating for people who put in their time and effort to answer questions, to see the same question just being asked again by the same person, without receiving any feedback from the poster why his / her answer was neglected.
    Maybe I am reacting to strong, but then again it still early in the morning and I haven't had my coffee yet.
    regards,
    Freek D

  • Very confusing and very frustrating problem....please help?

    Below is my entire program (a simple pl/sql stored procedure) and for some reason the variable newpay is not appearing in SQL*Plus. Have have turned serveroutput on and have checked that the variable otpay contains values, it's just newpay doesn't seemed to want to print to screen. Is this something to do with varaible scope within cursor loops or something? Thanks a lot for your help.
    CREATE OR REPLACE PROCEDURE lab5d (pp_fname varchar2, pp_lname varchar2, pp_month varchar2) AS
              TYPE ot_rec_type is RECORD
                   fname          emptrig.fname%type,
                   lname          emptrig.lname%type,
         otime_rate     emptrig.otime_rate%type,
                   hours          overtime_sessions.hours%type,
                   o_date          overtime_sessions.o_date%type
              TYPE cur_type is REF CURSOR;
         c1          cur_type;
         firstdate     date;
         lastdate     date;
         otpay          number;
         newpay          number;          
         ot_rec          ot_rec_type;
    BEGIN
         firstdate := TO_DATE('01' || pp_month || '2002', 'DD-MON-YYYY');
         lastdate := LAST_DAY(firstdate);
         open c1 for     SELECT fname, lname, otime_rate, hours, o_date
                   FROM     emptrig, overtime_sessions
                   WHERE     etrigot_id = emptrig_id AND
                        fname = pp_fname AND
                        lname = pp_lname AND
                        o_date >= firstdate AND o_date <= lastdate;
         LOOP
              fetch c1 into ot_rec;
              exit when c1%notfound;
              otpay := ot_rec.hours * ot_rec.otime_rate;
              newpay := otpay + newpay;
         END LOOP;
              dbms_output.put_line(newpay); -- this line does not print but otpay contains values
    END;

    If calculating newpay is your ultimate goal, you can shift some of this
    procedural burden over to SQL:
    SQL> SELECT * FROM emptrig;
    EMPTRIG_ID FNAME LNAME
    7 Bob Smith
    10 Carol Jones
    14 Kim Lee
    SQL> SELECT * FROM overtime_sessions;
    ETRIGOT_ID OTIME_RATE HOURS O_DATE
    7 20.5 2.5 04-NOV-02
    7 20.5 1.5 06-NOV-02
    7 20.5 1 07-NOV-02
    14 31.33 2 04-NOV-02
    14 31.33 3.25 05-NOV-02
    14 31.33 2.75 06-NOV-02
    14 31.33 .5 07-NOV-02
    14 31.33 .5 08-NOV-02
    8 rows selected.
    SQL> SELECT
    2 et.fname
    3 ,et.lname
    4 ,SUM(NVL(os.hours,0) * NVL(os.otime_rate,0)) "Total for Month"
    5 FROM
    6 emptrig et
    7 ,overtime_sessions os
    8 WHERE et.emptrig_id = os.etrigot_id (+)
    9 AND os.o_date (+) BETWEEN TO_DATE('01-NOV-2002','DD-MON-YYYY')
    10 AND TO_DATE('30-NOV-2002','DD-MON-YYYY')
    11 GROUP BY et.fname
    12 , et.lname
    13 /
    FNAME LNAME Total for Month
    Bob Smith 102.5
    Carol Jones 0
    Kim Lee 281.97
    HTH
    T.

  • Very Odd WiFi connection problems - plus crashes

    Since Firefox 2.0.0.9 crashed yesterday, I have had very odd problems with my WiFi (Earthlink through an Apple Airport). Network Diagnostics says everything is okay, but Safari can no longer connect to the internet, and after Firefox crashes I can not even send Apple an error report. Yet I can get online with Firefox, as I am now.
    The problem apparently started EITHER when I upgraded to the latest Firefox or when I tried to place an order at <http://www.senacases.com/> (or both). After Firefox crashed multiple times while trying to place an order at <http://www.senacases.com/>, I opened Safari, which would not connect.
    I ran Network Diagnostics which said everything is fine. But Firefox continually crashes trying to place an order at <http://www.senacases.com/>, Safari continues not connecting, Network Diagnostics continues to say everything is fine, and now I can't file an Apple Error Report and trying to connect to some of the library services at Notre Dame (something I have always been able to do before), makes Firefox crash.
    The only other possible symptom I have noticed is that I could not connect to a Late Show video this morning. Otherwise, I can browse the web in Firefox, I can pick up my email with Entourage, etc.
    How do I fix this?

    PS: I once had a similar problem that was fixed by a simple restart.
    I have restarted numerous times now, with no change. My MacBook was off over night.

  • TS1538 I have tried everything but I can't connect my iphone to my laptop. It says that apple mobile device failed to be installed. I have read everything on the internet and did everything but still am facing the same problem. Can you please help me.

    I have tried everything but I can't connect my iphone to my laptop. It says that apple mobile device failed to be installed. I have read everything on the internet and did everything but still am facing the same problem. Can you please help me.

    Again without stating the trouble shooting steps you have taken, its hard to direct you with any information.
    Try a different port on the computer.
    Does the iphone beep when u plug it up. ?
    Plug iphone into computer and give it 3 to 4 minutes to see if it connects and is running slow.,
    Delete the apple mobile device from your computer.
    Upgrade itunes to newest version.
    Is you USB cord defective ?
    Any USB 3.0 on your system ? .
    Delete or Disable  any antivirus program on your computer ?
    I will tell u the problem is your computer not the phone.
    We could do this for hours.

  • Hi there, I am trying to connect to my server at work from home using a vpn connection. It connects fine and the time ticks along, but when i click go - connect to server, it comes up with connection failed. Please help!

    Hi there, I am trying to connect to my server at work from home using a vpn connection. It connects fine and the time ticks along, but when i click go - connect to server, it comes up with connection failed. Please help!

    ... when i click go - connect to server, it comes up with connection failed.
    If you're trying to connect to a Bonjour server on the remote network, that won't work over a layer 3 VPN. Use something like Hamachi or one of the SSH-tunnelling Bonjour proxy apps for that.

  • My FaceTime wit work.when people FaceTime me all I get is a missed notification. And when I try to FaceTime someone it tells me to connect to wifi please help..

    When I try using FaceTime it doesn't seem to work. When someone face times me all I get is a missed notification. An when I try to FaceTime someone it tells me to connect to wifi please help.

    Alright, when you are attempting to FaceTime someone, are you connected to WiFi? With the iPhone 4, it does not support using FaceTime over the cellular network, you will need to be connected to Wi-fi.

  • Problem with my macbook -PLEASE HELP!

    when i swtch my macbook on the sceen lits up for two seconds and then goes black. i tried all the instructions in the booklet but when i was installing the mac os x again (had the first disc in) there came a note that i have to replase disc 1 by disc 2. then i checked that i had the right setting that all my info wouldnt disappear when installing again and then it just started to install the thing even tho i still had disc 1 inside and before that it told me to change the disc. ok that was probably ok but then in the middle of installing disc one my macbook's sceen went dark again. when i started it again it seemed that i was in the same point where i started from. how can i continue from this? can my precious info still be saved? if i now continue installing do i start from the beginning? i live in a small town and no one else here has a mac and im not very good with any computers. PLEASE HELP!
    macbook   Mac OS X (10.4.8)  

    Your data could possibly be saved....If the installation didn't full complete, your data should still be on your hard drive. As for you MacBook, it sounds like a MAJOR problem and should be brought to an Apple Genius at once.
    It is possible for them to obtain your data and get it to you somehow. You should bring this to your Apple store, and, judging that you have the service plan, they will replace or repair your laptop accordingly.
    I haven't heard anything of the sort for the MacBook, so, hopefully someone has and can further your troubleshooting procedures before you take it in and risk being away from your laptop for a week or so. I would opt for taking it to your Apple Store.
    Remember to mark as helpful or solved.
    -benny

  • After the IOS7 update, i can no longer use my imessage and facetime. It says "waiting for activation" and tried to log in on my apple id but it turned out to connection error. Please help me guys! Thank you.

    After the IOS7 update, i can no longer use my imessage and facetime. It says "waiting for activation" and tried to log in on my apple id but it turned out to connection error. Please help me guys! Thank you.

    Have you tried to reboot your phone(hold home and lock button simutainiously)?

  • HT201363 Hello I forgot my Security question of my Apple ID ? I don't kow what should I do and how to solve this problem ? could you please help  ?

    Hello I forgot my Security question of my Apple ID ? I don't kow what should I do and how to solve this problem ? could you please help  ?

    You need to ask Apple to reset your security questions; ways of contacting them include phoning AppleCare and asking for the Account Security team, clicking here and picking a method for your country, and filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (104569)

  • Developer 6 Timer Problem... Please help

    Hi all,
    I have installed Developer 6(Oracle Product) on my system. I am facing a strange problem whenever I try to use Create_Timer built in. The cursor moves to starting of the Item being modified as soon as the space bar is pressed (timed for timer expiration). If I remove the Built-in the problem is resolved.
    Please help urgently.
    Regards
    Anand

    Upgrade to the latest patch and the problem shoudl go away - this issue was fixed I think in 6.0.8.13+
    You can also try setting Keey Cursor position to Yes on the item.

  • HT1926 i've tried so many times but the problem still exists! please help!!

    i've tried so many times but the problem still exists! please help!!

    Could you describe what your problem is, please?

  • I have MacBookpro with OSX 10.9, and my Tata Photon plus  is not working on it. When I try to connect, Its not connecting.. Please Help

    I have a MacBookPro with OSX 10.9, and my Tata Photon plus  is not working on it. When I try to connect, Its not connecting.. Please Help
    <Email Edited by Host>

    Current Firefox versions require a Mac with an Intel processor and OS X 10.6 (Firefox 16 runs on Intel Mac OS X 10.5).
    *http://www.mozilla.org/firefox/25.0/system-requirements/
    For an unofficial Firefox 17.0.10 ESR compatible version that runs on a PowerPC Mac with OS X 10.4.11 or OS X 10.5.8 you can look at TenFourFox.
    *http://www.floodgap.com/software/tenfourfox/
    *http://www.macupdate.com/app/mac/37761/tenfourfox
    *http://code.google.com/p/tenfourfox/wiki/ReleaseNotes1710
    See also:
    *http://code.google.com/p/tenfourfox/wiki/PluginsNoLongerSupported
    *http://code.google.com/p/tenfourfox/wiki/QuickTimeEnabler
    *http://code.google.com/p/tenfourfox/wiki/AAATheFAQ

Maybe you are looking for

  • Bad audio connection

    I have a 1st gen ipod shuffle, and it seems that the audio connection is bad. My left ear bud is not working. I even tried different earbuds. if I push the audio connection to one side, I can hear audio on the left side. How can I fix this? I looked

  • FlexPMD not working in Ant 1.7

    When attempting to run FlexPMD in Ant 1.7.0, we receive this error message: Couldn't find that class Can't find resource com/adobe/ac/pmd/rulesets/architecture.xml. Make sure the resource is a valid file or URL or is on the CLASSPATH However, switchi

  • NAS support: Synology

    My basic info: 1. Network Magic: 5.5.9195.0 trial version 2. Internet connection: DSL   3. Modem: Speedstream 5100 4. Router: Linksys WRT160N  v1.02.2   5. Connection: wired 6. n/a 7. OS: Windows XP, SP3 8. Firewall: Windows Firewall 9. AV/Spy: Micro

  • Provisioning profile select missing in 2.2??!

    I've just upgraded to the 2.2 SDK and the options in the target info screen for selecting a provisioning profile is now missing in all my projects and any new projects I create Is it moved? is it a bug? How do I get this option back?

  • Super Class of Java

    can any one tell what is the super class of JAVA?