Other users/devices using my bt wifi with fon?

Hi
Im wondering how many users/devices can log into BT wifi with fon from my account?
Thanks

If you want to give someone access on a compatible device, using the BT WiFi app and entering the password yourself privately should keep it secret.
You can click the white star next to this message if you think it was helpful.

Similar Messages

  • My iPad 3rd Generation significantly drains the wifi when in use for other members/devices using the same wifi in the house. Does anyone know why? How it can be resolved? Or is it even an iPad problem or a router problem.

    Would be very helpful if anyone could help me out! Thanks fellow iPad users.

    It it's only happening on one specific account, that means something about that account is causing the problem. Sounds obvious, right? But the implications and how to fix it aren't necessarily obvious.
    It's not likely to be third-party kernel extensions causing the problem, since those will run for all user accounts. If it's a third-party software issue, it's going to be something that is running on just that account. First place to check is your login itmes (System Preferences -> Accounts). Remove items you don't need from that list, and if that doesn't help, remove ALL items from that list.
    If that still doesn't help, there's one other thing to check. There are things called LaunchAgents that can be used to keep specific tasks running (possibly re-opening them if they crash or are made to quit by the user), run them at specific times, etc. In the Finder's Go menu, hold down the option key and choose Library. In that folder, find the LaunchAgents folder. What's in there? You can move all the items there temporarily to a folder on the desktop (or anywhere else), then log out and log back in. Does that fix the problem?
    Of course, it sounds like the account you're using may be so badly messed up that you can't perform these checks. And the problem may not be third-party software anyway, it could be something that has gotten badly corrupted in your user account, and that can be difficult or impossible to pin down. If you have another admin account that you can use, it may be easiest to simply start using that account, and delete the one that's not working. For some help moving files from one account to the other, see:
    Transferring files from one User Account to another
    Also, regardless of what the problem is and how you solve it, since one possibility is some kind of corruption, it wouldn't be a bad idea at all to repair your hard drive with Disk Utility.

  • HT204387 Why can't my ipad2 and iPhone4 and 5 recognise each other as devices using bluetooth?

    Why can't my ipad2 and iPhone4 and 5 recognise each other as devices using bluetooth?
    Bluetooth should allow me to connect to other devices to transfer data like photo's, music, files, whatever between my apple devices and non apple devices.
    Other phones allow me to do this..........what is happening here?
    An unhappy apple devices owner.
    I want to know who I complain to if this is how Apple devices operate.
    Any answers anyone.

    This is not a supported profile...
    See Here  >  http://support.apple.com/kb/HT3647
    More Info in the User Manuals...
    and there is this Discussion...
    https://discussions.apple.com/message/16294930#16294930
    You can leave Feedback for Apple here...
    http://www.apple.com/feedback/

  • Lock the plant so that other user cannot use the same plant.

    Hi Gurus!
    I ahve this small report which shows the pro-rate factor . In this report I need to block the plant or lock it(a soft) lock witha  message that some other user is using the plant so that other cannot use the same plant to post.Following is the report and if soemone can help me out would be very kind enough.I ahve added teh code where validation of plant is doen , so it must be somewhere here the locking should be done as per my thinking . Kindly suggest please.
    *&      Form  get_pro_factor
    *       get pro rate factor from the given
    *       combination of plant/sloc/mat#/period
    form get_pro_factor .
      select single zpr_factor zpr_disp_factor zpr_pipe_net zpr_pipe_gross
      from zprfactor
      into (zprfactor-zpr_factor, zprfactor-zpr_disp_factor,
            zprfactor-zpr_pipe_net, zprfactor-zpr_pipe_gross)
      where zpr_werks = p_werks    and
            zpr_lgort = p_lgort    and
            zpr_matnr = p_matnr    and
            zpr_mjahr = p_mjahr    and
            zpr_monat = p_monat.
      v_subrc = sy-subrc.
      if zprfactor-zpr_factor = 0.
        if c_wp = p_lgort+0(2).
          zprfactor-zpr_factor = 1. " Don C added this routine
        endif.
      endif.
      if zprfactor-zpr_disp_factor is initial.
        if not zprfactor-zpr_pipe_gross is initial.
          zprfactor-zpr_disp_factor = zprfactor-zpr_pipe_net / zprfactor-zpr_pipe_gross.
        endif.
        if zprfactor-zpr_disp_factor is initial.
          zprfactor-zpr_disp_factor = 1.
        endif.
      endif.
    endform.                    " get_pro_factor
    *&      Form  valid_plant
    *       validate whether plant entered in selection screen
    *       exists in database or not
    form valid_plant .
      if not ( p_werks is initial and
                 p_lgort is initial and
                 p_matnr is initial and
                 p_mjahr is initial and
                 p_monat is initial ).
        select single werks from t001w into t001w-werks
               where werks = p_werks.
        if sy-subrc ne 0.
          message e048(zmm) with p_werks.
        endif.
      endif.
    endform.                    " valid_plant
    *&      Form  FIND_MATKL
    form find_matkl .
      select single matkl into v_matkl from mara where matnr = p_matnr.
    endform.                    " FIND_MATKL
    *&      Form  UPDATE_ZPRFACTOR
    form update_zprfactor using p_flag.                         "DEVK903224
      call function 'ENQUEUE_E_TABLEE'
        exporting
          mode_rstable   = c_e
          tabname        = 'ZPRFACTOR'
        exceptions
          foreign_lock   = 1
          system_failure = 2
          others         = 3.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      else.
        select single * from zprfactor where zpr_werks = p_werks
                                       and   zpr_lgort = p_lgort
                                       and   zpr_matnr = p_matnr
                                       and   zpr_monat = p_monat
                                       and   zpr_mjahr = p_mjahr.
        if sy-subrc = 0.
          zprfactor-zpr_rate_flag = p_flag.                     "DEVK903224
          update zprfactor.
        endif.
      endif.
      call function 'DEQUEUE_E_TABLEE'
        exporting
          mode_rstable = c_e
          tabname      = 'ZPRFACTOR'.
    Thanks
    Aarav

    call function 'ENQUEUE_E_TABLEE'
        exporting
          mode_rstable   = c_e
          tabname        = 'ZPRFACTOR'
        exceptions
          foreign_lock   = 1
          system_failure = 2
          others         = 3.
    ENQUEUE_E_TABLEE   } E_TABLEE is the name of the lock object, it starts with character "E".

  • I wanted to use verizon hotspot wifi with my ipad, but verizon states not compatible with operating system. States that needs windows 7 , Vista, or windows xp. Any ways around this? Any ideas?

    I wanted to use verizon hotspot wifi with my ipad (it searaches for hotspots when ur on the go) but verizon states not compatible with operating system. States that it needs windows 7, Vista, or windows XP. Any ways around this? Any ideas?

    Thank you everyone for reaching out and apologize for being unclear. Let me rephrase. There is NO MiFi.
    I have an ipad3 and a PC
    I am trying to connect the iPad3 to the PC for HotSpotting reason (the ability to use the internet on the PC)
    Turning on HOT SPOT on the Apple ipad works GREAT when using it through WI-Fi and through Blue Tooth. But connecting it directly through the included iPad 3 USB Cable to the USB side of the PC does NOT work. I tried several PCs, and several Cables. Any other ideas

  • Other vendor devices using Prime Infrasctructure 2.0

    What level of monitoring can I have with other vendor devices using Prime Infrasctructure 2.0?

    Hi,
    Third-Party Support in PI :
    • Third-party support permits the discovery and monitoring of non-Cisco switches that support RFC 1213 and wireless controllers/access points from Aruba Networks.
    check the below link::
    http://www.cisco.com/c/en/us/products/collateral/cloud-systems-management/prime-infrastructure/data_sheet_c78-729088.html
    Thanks
    Afroz
    ***Ratings Encourages Contributors ***

  • Will apex_application.stop_apex_engine affect other users to use that APEX?

    Hi, guys:
    I wonder if I call apex_application.stop_apex_engine to execute wpg_docload.download_file in order to download RTF file, would it affect other users to use that APEX application at the same time? I checked the article and did experiment, I think it won't, but I still want to get your comments about it.
    http://www.talkapex.com/2011/12/apexapplicationstopapexengine.html
    APEX 4.1
    Oracle 11G R2
    appreciate your advice!
    Sam
    Edited by: lxiscas on May 17, 2013 9:34 AM
    Edited by: lxiscas on May 17, 2013 9:35 AM

    lxiscas wrote:
    Could you give me more detail about the affects on current session? as I found I have no problem to get to other pages through navigation, and I can still use the current page. The apex_application.stop_apex_engine is called at last in the procedure. and the procedure is called when user click one of two links.I think the API documentation and Martin's post fully cover the effects on the current "session" ("request" would be a more accurate term). Is there something specific that's bothering you?
    <tt>apex_application.stop_apex_engine</tt> does not exert any global control over APEX or the current session (see +{thread:id=2401000}+ for previous discussion on this). It simply stops further APEX page processing of the current request. This is necessary because you want to send the contents of a downloaded file, or redirect it to a new resource, not display an APEX page.

  • BT wifi & BT Wifi with Fon connection issue

    in the last 5 days I've had  issues connecting to BT Wifi and BT Wifi with Fon. I'm connecting using an iPhone and iPad so when I use the BT Wifi app for logging in it constantly says check details (which are correct) and then it will connect but then log off and won't connect for ages. It will sometimes connect one device but not the other.
    When I try connect using the browser page I get a message ' maximum number of sessions reached'. 
    Has anyone any idea what causes this, what it means and a possible solution?
    ps I tried email BT but they don't seem to care as i've not received a reply,  thanks BT

    Hi Gioabb,
    Welcome to the forum.
    Can I just check, is this problem happening with several hotspots or just the one?
    Stephanie
    Stephanie
    BTCare Community Manager
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post. If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Why is BT wifi with fon so slow?

    Why is my BT wifi with fon so slow? Normally it works ok and is fast but then it suddenly starts to drag and nothing ever loads, the connection always dropping and it says "Limited Access" with a little yellow triangle.  This happens mainly in evenings and afternoons.

    terrorangel99 wrote:
    Why is my BT wifi with fon so slow? Normally it works ok and is fast but then it suddenly starts to drag and nothing ever loads, the connection always dropping and it says "Limited Access" with a little yellow triangle.  This happens mainly in evenings and afternoons.
    Its most likely because whoever owns the broadband connection, is using it a lot. They get priority over any BT Wifi connection, so you will get a very slow connection, or one which drops.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Hi im in uk and have i pad. on internet i have 3 networks to choose to connect to. first is my bt homehub second is bt wifi third is bt wifi with fon, my problem is when im at home it connects me to home hub no prob but when im on the move what do i have

    Hi. I have i pad. I have 3 choices of connection for internet. btwifi, bt wifi with fon and my home hub. Home hub is fine but how do i get internet on the movbe cause when i try to connect to bt wifi outside my house i get the message i have no connection. Ive got the bt wifi app and it works fine. can anybody help me with my wifi so i can use it whilst away from home

    Just login to get started, and the BT Wi-fi app will automatically connect you to the UK’s largest wi-fi network whenever you're in range . **IMPORTANT: TO ACCESS BT WI-FI YOU MUST USE YOUR BT ID, @BTINTERNET.COM OR @BTCONNECT.COM EMAIL ADDRESS. THIS WAS SENT TO YOU IN YOUR ORDER CONFIRMATION EMAIL*
    Please go through the Description once mentioned by the App developer in the iTunes store link : https://itunes.apple.com/gb/app/bt-wi-fi/id384404559?mt=8

  • Bt Wifi with Fon reappeared

    Hi. I have a Home Hub 4 which I received in a previous property about 4 months ago. At the time I opted out of Fon and the signal disappeared from the vicinity. Follwing this we moved to a new house. No problem for a while and then about a week ago, the wifi with Fon reappeared. I've tried resetting the Home Hub, unplugging it etc and it refuses to disappear. Using software I can see two dual bands for my router and two for Fon. Why has this come back on and how should I get rid of it? Thanks for your help.

    Meerkatdawg wrote:
    Hi. I have a Home Hub 4 which I received in a previous property about 4 months ago. At the time I opted out of Fon and the signal disappeared from the vicinity. Follwing this we moved to a new house. No problem for a while and then about a week ago, the wifi with Fon reappeared. I've tried resetting the Home Hub, unplugging it etc and it refuses to disappear. Using software I can see two dual bands for my router and two for Fon. Why has this come back on and how should I get rid of it? Thanks for your help.
    Probably this: https://community.bt.com/t5/Other-Broadband-Queries/BT-Home-Hub-5-and-FON/td-p/1086830
    If you want to help with testing you can offer your services in the thread.
    Oliver.

  • BT Wifi with FON signal lost

    Hi all, forgive me if this has already been answered.  I have a BT home hub 3 and am opted in with bt wifi with fon. It has been working fine since I started, however the last few days, the signal has just disappeared from my home.  I don't always have the modem on, and sometimes if I want to quickly search for something online on my phone, I would just get connected to wifi with fon straight away, however the last few days this no longer works.
    If I have the modem on, wifi with fon shows up and I can connect. It's just when I turn it off, so too does the fon which is both strange and annoying as it has never done that before. I have tried a hard reset on the hub, reinstalled the wifi app and have also opted out and opted straight back in. I am aware that apparantely it takes a couple of days to 'reactivate', yet also noticed some people saying they had waited months and still nothing.
    I also noticed when I first went to opt out, it showed 0 zero, but when I opted in, it then showed "unlimited". However when I left and checked the status again, it then showed 0 again [which I have no idea what that is]
    Any help would be greatly appreciated.
    Solved!
    Go to Solution.

    Presumably when you mention the modem you are referring to the Homehub. If that is the case you should just leave the Homehub switched on 24/7 for best results.
    You must have your Homehub turned on for the BTWifi - Fon signal to be transmitted. If you have been able to connect to BTWifi-Fon with your Homehub turned off you have probably been connecting to a neighbours BTWifi signal. It may be that the neighbour's Homehub is now no longer transmitting for any number of reasons hence the reason you can not now see it.
    If you are at home do you have a particular reason why you use the BTWifi-Fon network and not your own wireless network that is broadcast from your Homehub.

  • BT Wifi with FON doesn't work through Wi-Fi Extend...

    With a Wi-Fi Analyzer app I can see a BT Wifi with FON signal on the same channel as my home WiFi signal coming out of the Home Hub 5.
    I have several Power line Wi-Fi Extenders. However I only see my own home Wi-Fi signal repeated through them.
    Therefore nobody externally can benefit from more powerful signal through my extenders.
    BT - Comments Please.

    What is there to comment about. Wifi extenders will only repeat one signal and you will have logged them onto your Homehub SSid and they'll be repeating that signal. If you want them to repeat your BTWifi  signal you will have to disassociate them from the Homehub SSid and associate them with the BTWifi signal.

  • Hi, Cannot communicate with other instrument devices (Using AT-GPIB card)

    Using AT-GPIB card to communicate with instruments that the running program is in C. After installed 488.2 software and test Hardware Diagnostic Test and Software Diagnostic Test. Everything is OK but after I run execute file the errors appeared. They displayed "GPIB cannot find Amplifier,or Unidex". My main task is transfer the AT-GPIB card from PC 386 to PC windows 98. Please help me to solve these problems. May I still use the old execute file to put in drive C in new PC Wins 98 and run that program. Thanks

    Hi,
    It is hard to say what this could be. Everything tests OK so it is likely that your card is correct. Does MAX detect the instruments? I am not familiar with that error message. Is it the output of some custom program or the driver itself? It seems like it is not a driver level problem, but it is hard to say given the information.
    By "May I still use the old execute file to put in drive C in new PC Wins 98 and run that program" do you mean keep an old application? If yes, then you should be able to use the old applicatoin with teh win98 driver. If you are refering to the driver itself, then no. You will need the windows 98 driver. This can be found at http://www.ni.com/support/gpib/versions.htm
    Hope this helps out.
    Best Regards,
    Aaron K.
    A
    pplication Engineer
    National Instruments

  • BT Wifi with FON very useful

    Having recently signed up to BT for their Infinity package, I thought I'd take a look into setting up BT WiFi on my Samsung Galaxy as 3G can be hard to get where I live, luckily there are a few BT WiFi and FON hotspots
    At first I was a little concerned that using BT Wifi / Fon would affect our usage allowance but was pleasantly surprised to see that it's usage is separate and calculated in minutes. I also found out that having it enabled on your HomeHub does not affect your usage and only uses a small portion of your bandwidth.
    All in all it seems a great idea to create a country wide community based Wifi network that we (the community) can all use when out and about it sure is better than a phone without 3G!, Thumbs up BT.

    Well I was on holiday week ago, in a place called Mellis, in Suffolk, miles away from anywhere. I took a 3G MIFI unit with me as I expected that there would be no BT hotspots, even though the map showed one about a quarter of a mile away.
    Arrived at the cottage and there were TWO very strong BT wifi signals from adjacent houses, so I did not have to use the 3G unit at all, even though there was average coverage.
    No problem in connecting to either of the hotspots (coming from HH2s), and getting a good speed.
    So yes. a very useful facility.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

Maybe you are looking for