Unable to access internet on all my mobile devices

I recently installed Hub5 with Infinity. At first install, no problems, all devices connected to Wi-fi and online.
Next day, all mobile devices are connecting to Hub5 but cannot get online.  Laptops ok and not affected and all wired devices ok.  Devices affected are: 2 x Samsung mobile S3 mini, Samsung Tablet, i-pad and 2 x i-phones.  I have rebooted Hub5 and all affected devices, also removed wi-fi credentials from devices and re-entered but still no joy.  PLEASE HELP...!!
Solved!
Go to Solution.

Turn off "Smart Set Up" on the homehub. It can cause problems on mobile devices.
http://bt.custhelp.com/app/answers/detail/a_id/44328/~/switching-smart-setup-on-and-off-on-the-bt-ho...

Similar Messages

  • I have restored my i pad 2 and am now unable to access internet banking. the message tells me my browser is not supported. how do I correct this please?

    I had to restore my i pad to delete restrictions on facetime. I am now unable to access internet banking with Natwest due to my browser not being supported? How do I correct this? It was working ok before i did the restore. Thankyou.

    You are most welcome

  • When iWorks for iCloud Beta become available I subscribed to it. After that I become unable to access iCloud at all as in all my devices I get messages to install it and other apps (find my phone, etc) that are already active. Anyone could help?

    When iWorks for iCloud Beta become available I subscribed to it. After that I become unable to access iCloud at all as in all my devices I get messages to install it and other apps (find my phone, etc) that are already active. Anyone could help?

    The first time an iPhone is connected to iTunes that is used to sync with another iPhone or iOS device, you are prompted to transfer the backup for the other iPhone or iOS device or to set up the iPhone as a new iPhone.
    The former does as provided - it transfers the backup for the other iPhone or iOS device to the iPhone replacing all data on the iPhone that is included with the backup being transferred. The latter does nothing allowing you to make your various selections for the iPhone sync preferences with iTunes.
    This is designed to be done right away with a new iPhone.
    If you don't have a backup for the iPhone with iTunes on your computer and don't have an iCloud backup that hasn't been updated since choosing to transfer the backup for your iPod Touch to the iPhone, the data that was on the iPhone is gone.

  • How to Make Flash CS4/Dreamweaver CS4 Website Function on all Latest Mobile Devices

    Hello!
    I am trying to add code into my Dreamweaver CS4 file and/or Flash CS4 file in order to have the website I have created work across all of the latest mobile devices as well as traditional online systems. My flash file has a transparent stage, and my dreamweaver file has a full-screen background image. I have reviewed various tutorials and articles available online, and some advocate simply adding code, which does not seem to be working for me, while others suggest having a similar separate site created solely for mobile devices. If this is the best option, I don't know how that should be set up. What is the best path to take with this?
    This is the collection of various pieces of code I have tried adding to my files:
      <meta name="viewport" content="width=device-width" user-scalable="yes" initial-scale="1.0" /> <!-- iphone,android -->
       <meta name="HandheldFriendly" content="true" /> <!-- blackberry -->
    </style>
       <param name="allowScriptAccess" value="sameDomain" />
          <param name="allowFullScreen" value="true" />
    <param name="allowScriptAccess" value="sameDomain" />
            <param name="allowFullScreen" value="true" />
            <param name="var params = {          id: "flashID", name: "flashcontent", menu: "false", allowFullScreen: "true", fullScreenOnSelection: "true", scale:"noscale", salign:"middle"};"
    stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;
    //or//
    this.stage.scaleMode = StageScaleMode.NO_SCALE;
    this.stage.align = StageAlign.TOP_LEFT;
    next_btn.width = 133 * .5;
    next_btn.height = 133 * .5;
    //flash//
    next_btn.width = Capabilities.screenDPI * .5;
    next_btn.height = Capabilities.screenDPI * .5;
    //flash//
    this.stage.addEventListener(Event.RESIZE, doLayout);
    //flash://
    <initialWindow>
       <width>320</width>
       <height>480</height>
       <!-- several other properties... -->
    </initialWindow>
    * Convert inches to pixels.
    private function inchesToPixels(inches:Number):uint
       return Math.round(Capabilities.screenDPI * inches);
    var button:Sprite = new Sprite();
    button.x = 20;
    button.y = 20;
    button.graphics.beginFill(0x 003037);
    button.graphics.drawRect(0, 0, this.inchesToPixels(.75),
       this.inchesToPixels(.25));
    button.graphics.endFill();
       this.addChild(button);
    //hard-code title://
    var titleBar:Sprite = new Sprite();
    titleBar.x = 0;
    titleBar.y = 0;
    //stage width determines width of title://
    var titleBar:Sprite = new Sprite();
    titleBar.x = 0;
    titleBar.y = 0;
    titleBar.graphics.beginFill(0x003037);
    titleBar.graphics.drawRect(0, 0, this.stage.stageWidth,
       this.inchesToPixels(.3));
    titleBar.graphics.endFill();
    this.addChild(titleBar);
    //footer://
    var footer:Sprite = new Sprite();
    footer.graphics.beginFill(0x003037);
    footer.graphics.drawRect(0, 0, this.stage.stageWidth,
       this.inchesToPixels(.3));
    footer.graphics.endFill();
    footer.x = 0;
    footer.y = this.stage.stageHeight - footer.height;
    this.addChild(footer);
    * Center one DisplayObject relative to another.
    private function center(foreground:DisplayObject,
       background:DisplayObject):void
          foreground.x = (background.width / 2) -
             (foreground.width / 2);
          foreground.y = (background.height / 2) +
             (foreground.height / 2);
    //cont.//
    var title:SimpleLabel = new SimpleLabel("My Application",
       "bold", 0xffffff, "_sans", this.inchesToPixels(.15));
    this.center(title, titleBar);
    this.addChild(title);
    //override width and height getters
    public override function get width():Number
       return this.textLine.textWidth;
    public override function get height():Number
       return (this.textLine.ascent - 1);
    if (Capabilities.manufacturer == "Android Linux" && Capabilities.screenResolutionY == 1024)
    next_btn.width = 85;
    next_btn.height = 85;
    This is the code for my Dreamweaver CS4 file (without the additional erogenous code attempts!):
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <?xml version="1.0" encoding="utf-8"?><!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.2//EN"
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>My Website Title and Slogan.</title>
    <style type="text/css">
    <!--
    body {
              background-image: url(bground%20_img3.jpg);
              background-repeat: no-repeat;
    -->
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    </head>
    <body>
    <img src ="image.gif"  width=90% height=auto>
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    <meta name="Keywords" content="keywords…" />
    <div align="center"></div>
    <div align="center">
      <p> </p>
      <p>
        <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="900" height="630">
          <param name="movie" value="FlashFile.swf" />
          <param name="quality" value="high" />
          <param name="wmode" value="transparent" />
          <param name="swfversion" value="6.0.65.0" />
          <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
          <param name="expressinstall" value="Scripts/expressInstall.swf" />
          <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
          <!--[if !IE]>-->
          <object type="application/x-shockwave-flash" data="FlashFile.swf" width="900" height="630">
            <!--<![endif]-->
            <param name="quality" value="high" />
            <param name="wmode" value="transparent" />
            <param name="swfversion" value="6.0.65.0" />
            <param name="expressinstall" value="Scripts/expressInstall.swf" />
            <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
            <div>
              <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
              <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
            </div>
            <!--[if !IE]>-->
          </object>
          <!--<![endif]-->
        </object>
      </p>
    </div>
    <div align="center"> </div>
    <script type="text/javascript">
    <!--
    swfobject.registerObject("FlashID");
    swfobject.registerObject("FlashID");
    //-->
    </script>
    </body>
    </html>
    I have tried various combinations of the code listed above, but nothing seems to be working. I am not sure as to the correct positioning of the code, and maybe that is the problem, or maybe it is because this code in not for CS4, or not appropriate for my project. I also do not know what code should be inside the Flash file, nor what should should be inside the Dreamweaver file.
    Thank you in advance for any assistance!

    There is no simple code to add that will display the same on all mobile devices....
    you do know that the iProducts (iPhone, iPad, etc) don't display Flash at all, right?
    So as a start for "functioning on all latest mobile devices" you should drop any Flash content you have and move on.
    Adninjastrator

  • When will the Adobe flash player return to all Apple mobile devices?

    I think that Apple should very well eliminate these restrictions by reintroducing the Adobe Flash Player back into all Apple mobile devices sometime this spring or summer.
    Kevin Silvestris
    Worcester, MA

    Yeah.
    And everybody should be nice to each other beginning Wednesday.
    And no more taxes beginning next year.
    Oh.. and cheap gas by the end of summer.
    Adobe does not make a flash player for iphone.  They never have.

  • Accessing Webdynpro ABAP application using Mobile Device..........

    Hi,
      Can any please let me know if we can access Webdynpro ABAP application using mobile device. If yes, what are the steps/procedure to be followed.
    Thanks.
    NP

    Hello,
    after 4 years in 2012, i bought a tablet pc (aldi lifetab), installed a firefox-browser, the add-on cert-manager, installed a client certificate. After doing this i can accces webdynpro for abap applications without any problems.

  • Since yesterday I have been unable to use FaceTime across all my Apple devices: Iphone 5s, MAC Notebook, and Ipad Mini.  It does not connect nor make the ringing sound. Why is this and how can it be fixed?

    since yesterday I have been unable to use FaceTime across all my Apple devices: Iphone 5s, MAC Notebook, and Ipad Mini.  It does not connect nor make the ringing sound. Why is this and how can it be fixed?

    I am haveing same problem canot find itunes.msi

  • Unable to access Internet using a Mobile Network

    Hello friends
    I recently updated my SE Xperia mini pro 17i (2011 model) to ICS, initially there were some issues and I had to re-update it to finally get authentic interface of ICS. Even after the successful update I am unable to use the mobile network to access Internet, the only way  is to use a Wifi instead. Can somebody please help me out with this issue?
    Karan

    The first thing I would advise doing is contacting your current network provider and have them send you through the relevant internet settings.
    What are your thoughts about this forum? Let us know by doing this short survey.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Unable to Access Internet Despite Adapter Showing "Connected".

    Hi, I have a Lenovo "G"-Series notebook, Type 4446-38U which has suddenly stopped allowing me to access my internet connections.  The PC is only about a month old.  It is running XP Professional. 
    I have three connection options:  1) dial-up (using an onboard HDAudio Soft Data Fax Modem with Smart CP); 2) ethernet or Local Area Connection (using an onboard Broadcom Netlink Fast Ethernet); and 3) wireless (using an onboard Intel WiFi Link 5100 AGN) -- none of these components are showing that they have conflicts/problems in the System Properties/Device Manager. 
    At my home, which is located in a rural area where I can only get dial-up, I tried checking my e-mail last week (with Mozilla Thunderbird), but received an error notice stating that the e-mail server could not be found; it was the same issue, when I tried to get Norton virus updates (Internet Security 2009), XP updates on the Microsoft website (using Microsoft Updates with Internet Explorer), and simply accessing the web (using Mozilla Firefox) -- i.e., "Server Not Found."  The odd thing is that I can not only hear the connection being made by the modem, but can also see that the device is 'Connected', when I check the connection in Control Panel/Network Connections.  The following day at my office, I checked the other connection options (ethernet & WiFi), and found that I had the same problem -- i.e., they were shown as "Connected" in Control Panel/Network Connections, but I was unable to access anything on the web (e.g., e-mail, Google, virus/Microsoft updates, etc.).  It's as if there is something blocking the internet connection to these programmes/utilities. 
    When I ran the Microsoft Networking Troubleshooter ('Diagnose Network Configuration & Run Automated Networking Tests), all the Network Adapters were shown as having passed.  Ditto, when I ran the "Test a TCP/IP Configuration Using the Ping Command" -- pinging 127.0.0.1, the results showed 4 packets sent and 4 received.
    I spent several hours on the phone with Lenovo Tech Support to no avail, and their instruction that I uninstall Norton Internet Security made no difference either.  When they instructed me to open a Command Prompt and ping 192.168.1.1, the results showed that there were 4 packets sent and 4 received.  When I was instructed to ping the IP Address for the wireless adapter, the results showed 4 packets send and 4 received.  When I was instructed to ping www.google.com, the results showed that the ping request could not find the host www.google.com.  Lenovo Tech Support stated that there was nothing further they could do, and that I needed to use a utility to set everything back to factory specs (i.e., have a utility programme erase everything on the hard drive and reinstall XP ... and even then I was told that there was no guarantee that would fix things, meaning that the PC would then have to be sent into their repair depot).  Before I do this, I was hoping that someone here might know as to what's going on with my connection problems and how it could be fixed, without having to erase everything.
    I would appreciate any insight or advice anyone might have.  Thanks so much!
    ~ Jack

    I did do a complete uninstall of Norton (i.e., didn't save any of the settings), but that didn't resolve the connection problem.  I also turned off Microsoft's firewall as well, once Norton was uninstalled (it had been turned off, when Norton was installed, and once Norton was uninstalled, MS firewall defaulted back to an on/active status).
    I also forgot to mention in my initial description of the problem and actions taken thus far to try and correct it, that I additionally tried the "ping" procedure described in paragraph five above in Windows Safe Mode with Networking, but was still unable to connect to the internet.

  • Ipad is connected to the wifi but unable to access internet or receive mail.

    Recently set up new broadband connection. Wifi set up and iphone, computer all able to connect to wifi and internet. Ipad recognises old networks and able to connect for wifi access, but for this new connection I am able to connect with the ipad but it does not seem to be able to receive or transmit any information, hence I am unable to access any internet, update any apps or check my email. Can anyone help? I've tried rebooting the system, forgetting the network and shutting the ipad off, all to no avail!

    I've rebooted the router, I've made the ipad forget previous settings, rebooted the ipad, called the useless talktalk technical help. I have used this ipad previously with a previous talktalk connection. I'm not sure why this time I can't connect - perhaps its the security setting on the new router that isn't competible with the ipad? I'm using a D-link DSL-3680 router if that helps

  • Unable to access Internet from LAN - Cisco ASA 9.1(2)

    Hi,
      I have Cisco 5515 IOS 9.1(2). I had configured out-to-in rule with 'ssh' and able to access the Internet server, but the same server is unable to access the Internet. Not sure what i am missing here. Please look in to the configuration below and suggest.
    10.4.20.2 is the host i am trying to access the Internet and it fails, but able to 'ssh' to this IP from the internet.
    ASA Version 9.1(2)
    interface GigabitEthernet0/0
     description OUTSIDE
     nameif outside
     security-level 0
     ip address 1.1.1.1 255.255.255.248
    interface GigabitEthernet0/1
     description BACKUP
     nameif backup
     security-level 0
     ip address 2.2.2.2 255.255.255.248
    interface GigabitEthernet0/4
     description INSIDE
     nameif inside
     security-level 100
     ip address 10.4.20.1 255.255.255.0
    boot system disk0:/asa912-smp-k8.bin
    ftp mode passive
    clock timezone PT -8
    clock summer-time PT recurring
    dns domain-lookup outside
    object network 2.2.2.4_10.4.20.2
     host 10.4.20.2
    access-list out2in extended permit icmp any any inactive
    access-list in2out extended permit ip 10.4.20.0 255.255.255.0 any
    access-list out2in_bkp extended permit icmp any any inactive
    access-list out2in_bkp extended permit tcp any object 2.2.2.4_10.4.20.2 eq ssh
    pager lines 24
    logging enable
    logging timestamp
    logging standby
    logging monitor debugging
    logging trap debugging
    logging history debugging
    logging asdm debugging
    mtu outside 1500
    mtu backup 1500
    mtu inside 1500
    mtu management 1500
    no failover
    icmp unreachable rate-limit 1 burst-size 1
    asdm image disk0:/asdm-713.bin
    asdm history enable
    arp timeout 14400
    no arp permit-nonconnected
    object network 2.2.2.4_10.4.20.2
     nat (inside,backup) static 2.2.2.4 net-to-net dns
    access-group out2in in interface outside
    access-group out2in_bkp in interface backup
    access-group in2out in interface inside
    route outside 0.0.0.0 0.0.0.0 1.1.1.2 10 track 100
    route backup 0.0.0.0 0.0.0.0 2.2.2.3 20 track 101
    timeout xlate 3:00:00
    timeout pat-xlate 0:00:30
    timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
    timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
    timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
    timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute
    timeout tcp-proxy-reassembly 0:01:00
    timeout floating-conn 0:00:00
    dynamic-access-policy-record DfltAccessPolicy
    user-identity default-domain LOCAL
    aaa authentication ssh console LOCAL
    aaa authentication http console LOCAL
    http server enable
    http 192.168.1.0 255.255.255.0 management
    http 0.0.0.0 0.0.0.0 outside
    http 0.0.0.0 0.0.0.0 backup
    no snmp-server location
    no snmp-server contact
    snmp-server enable traps snmp authentication linkup linkdown coldstart warmstart
    sla monitor 100
     type echo protocol ipIcmpEcho 8.8.8.8 interface outside
    sla monitor schedule 100 life forever start-time now
    sla monitor 101
     type echo protocol ipIcmpEcho 8.8.4.4 interface backup
    sla monitor schedule 101 life forever start-time now
    service resetoutside
    crypto ipsec security-association pmtu-aging infinite
    crypto ca trustpool policy
    track 100 rtr 100 reachability
    track 101 rtr 101 reachability
    telnet timeout 5
    ssh 0.0.0.0 0.0.0.0 outside
    ssh 0.0.0.0 0.0.0.0 backup
    ssh timeout 60
    ssh version 2
    ssh key-exchange group dh-group1-sha1
    console timeout 0
    dhcpd address 192.168.1.2-192.168.1.254 management
    dhcpd enable management
    threat-detection basic-threat
    threat-detection statistics access-list
    no threat-detection statistics tcp-intercept
    ntp server 123.108.225.6 source outside
    ssl encryption rc4-sha1 aes128-sha1 aes256-sha1 3des-sha1
    username xyz password ***** encrypted privilege 15
    class-map inspection_default
     match default-inspection-traffic
    policy-map type inspect dns preset_dns_map
     parameters
      message-length maximum client auto
      message-length maximum 512
    policy-map global_policy
     class inspection_default
      inspect dns preset_dns_map
      inspect ftp
      inspect h323 h225
      inspect h323 ras
      inspect rsh
      inspect rtsp
      inspect esmtp
      inspect sqlnet
      inspect skinny
      inspect sunrpc
      inspect xdmcp
      inspect sip
      inspect netbios
      inspect tftp
      inspect ip-options
    service-policy global_policy global
    prompt hostname context
    no call-home reporting anonymous
    Cryptochecksum:9b63e3cfc9f98800d2bb3efa34c75906
    : end

    Hi Anand
    Could you please do a packet tracer on the Asa?
    Packet-tracer input inside icmp 10.20.4.2 8 0 4.2.2.2 detailed
    Are you able to ping 4.2.2.2 from the server ?
    Please use the following command
    "fixup protocol icmp"
    And then check whether you are able to ping the Internet.
    Regards
    Aditya

  • Unable to access internet via my airport extreme base station

      I have an AirPort Extreme Base Station which is hard wired to a Mac and which communicates wirelessly to a Mac in another room.  My internet access is via comcast.  Direct connection from this computer to my modem works fine, but not if I go through the AirPort.  The LED lights of the AirPort indicate normal network activity, (flashing/on/flashing).  I have tried disconnecting and reconnecting everything and rebooting the computer.  The system has been working normally through the AirPort until today.

    I would recommend that you do the following as a minimum:
    Power-down the modem, AirPort base station, and computer(s).
    (OPTIONAL) Disconnect the AirPort base station from the Internet broadband modem.
    (OPTIONAL) While all of the devices are powered-down, perform a "factory default" reset on the base station. This will get it back to its "out-of-the-box" configuration and make setting it up much easier, especially if you use the "Assist me" process within the AirPort Utility. (ref: Resetting an AirPort Base Station or Time Capsule)
    (OPTIONAL) After the base station resets, go ahead and power it back down.
    (OPTIONAL) Reconnect the AirPort base station to the Internet broadband modem. For the Extreme and Time Capsule, be sure to connect the cable to the base station's WAN (circle-of-dots) port.
    Power-up the modem; wait at least 10-15 minutes to allow it adequate time to initialize.
    Power-up the AirPort base station; wait at least 5-10 minutes. Note: The AirPort's status light may continue to flash amber after it has intialized. That is because, there may be some additional configuration items necessary, like setting up wireless security, before the overall setup is completed to get a green status.
    Power-up your computer(s).
    In this basic configuration, the AirPort base station will broadcast an unsecured wireless network with a Network Name (SSID) of Apple Network NNNNNN. Network clients, connected to the base station either by wire or wireless, should now be able to access the Internet through the ISP's modem. Once Internet connectivity has been verified, you can use the AirPort Utility to configure the base station for wireless security and any other desired options. Please post back your results.

  • IPad & iPhone 4s unable to access internet on wi-fi

    My iPad and iPhone 4s (both on iOS 6.0.1) don't seem to be able to access the internet on my home wifi network (WPA). My iPod Touch (also iOS 6.0.1) works just fine with the network. This is the first time it's happened, I've reset network settings multiple times on both devices to no avail.
    They both connect and access fine on other wifi networks.
    They automatically sign into the home network as usual but browsers and apps always time out. What's even stranger is that on my iPhone I do get pop-up notifications (from Twitter and Facebook) when the phone is on standby but once I open the notifications the request times out :-(
    No other Apple device or in the household is having an issue with the home wifi network.

    Turn off "Smart Set Up" on the homehub. It can cause problems on mobile devices.
    http://bt.custhelp.com/app/answers/detail/a_id/44328/~/switching-smart-setup-on-and-off-on-the-bt-ho...

  • Able to backup to Time Capsule - unable to access internet

    I have the following devices that need to connect to the internet using the Time Capsule:
    1) iMAC purchased in 4/09 - need to access internet wirelessly;
    2) MacBook Pro - 5 years ago; and - need to access internet wirelessly;
    3) Lenovo laptop with Windows XP - work assigned laptop - need to access by ethernet, tunnel into work with iPass.
    4) Apple TV -just connected today - am able to get my music, but haven't been able to access iTunes store.
    My cable modem is a Motorola. If the model # is important, I can get it, I'm just too tired right now.
    I installed the Time Capsule this morning, was able to configure it to my iMac and back it up; then was able to connect to the internet until I tried to set up the MacBook Pro. During that configuration Airport Utility diagnostics instructed me to disconnect the modem and I lost connection with the iMac and never was able to get a connection with my MacBook Pro. I don't even want to think about the Lenovo laptop until I get the MAC's worked out.
    I have no spaces or dashes in the names of my MacBook, iMac, Time Capsule or Apple TV, I've been at this for over 14 hours and I'm exhausted.
    My cable modem connects to the Time Machine WAN port; and I have a cable connected from a Time Capsule ethernet port directly to my Lenox laptop.
    I have not tried to connect my Linksys wireless router to the Time Capsule.
    I had to disconnect the Time Capsule and reconnect my Linksys router to get back on the internet to read all the discussions which are not helping me.
    HELP!

    This issue has been resolved...talk to someone at Apple and we had to unplug the broadband coax cable and finally got it up and running.

  • MacBook Air unable to access internet

    My MacBook Air is showing full strength on wifi but I cannot access internet.  I have also tried to connect via Ethernet cable and iPhone hotspot and the problem persists.  Please help

    Power Cycle
    Power off the router. Unplug it from the wall. Wait for few  minutes.
    Connect the router back to to the wall.
    Power the router back on. Wait  until all lights are lit properly. It will take a while.
    Restart the computer.
    Start up in Safe Mode.
    http://support.apple.com/kb/HT1455

Maybe you are looking for

  • Is SAP capable of sending a TEXT file in different modes like DOS ?

    Is SAP capable of sending a TEXT file (.txt)  in different modes like DOS ?

  • PCI wireless card does not work after restart - FM2-A55M-E33

    Installed TP-LINK WN751ND wireless PCI card onto FM2-A55M-E33 motherboard. The card works fine after cold start, but does not work after restart. Windows recognises the card, but it gets code 10, cannot start. BIOS is updated (v.11.1), as well as dri

  • Purchase  Order - Freight costs

    Hi Gurus. I am supposed to show the 'FREIGHT' charges on the P.O. I am working on. In which table do I get this value ? Points will be awarded. Thanks.

  • Rendering HTML to PDF Document?

    Hey all, I really didn't know the correct place to post this but here goes: I need to be able to issue an HTTP Request through Java, and what comes back is going to be HTML with JavaScript embedded. Okay, that's easy, done. Now I need to take that HT

  • Using Skype number as caller ID

    I have a skype number that works great. One question, the phone number people see on their caller i.d. is different than my number. How do I get my skype number to show up on someone's caller i.d.?