I have a problem when opening a profile on Facebook. when I open the main page and facebook all ok but when I try to open your Firefox profile my block! what the problem ????? before me it was happening but now when I installed Firefox 4

I have a problem when opening a profile on Facebook. when I open the main page and facebook all ok but when I try to open your Firefox profile my block! what the problem ????? before me it was happening but now when I installed Firefox 4

WiFi signals get stronger the closer the machine is to the router and the less interference/blocking of the signal like via walls with metal in them or of thick concrete.
Since the signal emanates outwards in a sphere, your supposed to place the wireless router in a central location in the building so it covers all areas.
The power of the router also has a affect, if your router is old or something not that powerful like a Airport Express, it doesn't have the ability to filter out other signals or enough punch to get through walls etc. or cover a large area as effectively.
If you buy/have a powerful router of newer make and have issues where there is metal in the walls or thick concrete, then you can buy something like OpenMesh and by using Ethernet cables from the back of the router, extend the WiFi signal into other rooms and areas past the blockage.
https://www.open-mesh.com/

Similar Messages

  • Trying to make a purchase form the apple store and I keep being asked to answer my security questions. I don't remember what the answers are. Is there a way to reset your security questions or get the answers to the current ones?

    I have been trying to make a purchase from the apple store and I keep being asked to answer my security questions. I don't remember what my answers are. Is there a way to reset your questions or find out the answers to your old ones?

    Yes, go to the AppleID FAQ for how to reset the questions.

  • How to delete an icon which is always visible even on the internet pages , and cannot be deleted ?, how to delete an icon which is always visible even on the internet pages , and cannot be deleted ?

    Hi,
    I've got a little problem since monday.
    I put a text.docx on my desk and since I did that the icon stay displayed even when I am on the Internet.
    I can't click on it or delet it. It's a bit (extremly) annoying and I would like to know what I have to do if I want to not have this icon displayed anymore.
    Finally when I put a movie in full screen mode, the icon isn't visible, but as soon as I quit the full screen mode it reappears.
    Thank in you in advance for your answers !
    P-S : as an example, the icon stay displayed even when I am on the Dashboard.

    G'day Scott,
    Can you please provide some more information, to assist us with helping you.
    Where is the file?  /Applications or /Applications/subfolder
    What is the exact error message that you get when you attempt to move it to the trash?
    Is the application running at the time that you attempt to trash it?
    Cheers.
    Rodney

  • When i go to the icloud page and click find my phone, i get a box that says "can't load find my iphone.  There was a problem loading the application".  What do I do now?  Thank you

    When i go to the Icloud page and i click on find my Iphone, I get a message that says "Can't load Find my Iphone. There was a problem loading the application." What do I do now.  Thank you

    Mail has been down all morning. Pacific time. California here.
    Since 7am PST - it's 11:36 am right now. still down.
    It's a routine maintenance issue I was told. - but very frustrating not to know ahead of time.

  • I have just upgraded to the new OS X V. 10.10.3 but cannot access my iCloud Drive documents using the resident Pages and Numbers software on my MacBook Pro. Help needed.

    I have just upgraded to the new OS X V. 10.10.3 but cannot access my iCloud Drive documents using the resident Pages and Numbers software on my MacBook Pro. Help is needed to access those documents using the resident software on my MacBook Pro rather than the Beta software on iCloud.com.

    I have iCloud Drive set on the Finder sidebar and use that to open the Numbers Spreadsheet on iCloud.
    OSX 10.10.3
    Best.

  • Find the iViews, Pages and Folders assigned to Role

    Hi,
    Does any one has the idea about how to retrieve the worksets, pages and iviews assigned to a role.
    I found a piece of code that will retrieve the roles, worksets, pages and iviews from PCD.
    Here is the code, that is to retrieve the roles, worksets, pages and iviews from PCD
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, IPcdContext.PCD_INITIAL_CONTEXT_FACTORY);
    env.put(Context.SECURITY_PRINCIPAL, WDClientUser.getCurrentUser().getSAPUser());
    env.put(com.sap.portal.directory.Constants.REQUESTED_ASPECT, PcmConstants.ASPECT_ADMINISTRATION);
    InitialContext initialContext = null;
    DirContext dirCtx;
    initialContext = new InitialContext(env);
    dirCtx = (DirContext) initialContext.lookup("pcd:portal_content/");
    PcdSearchControls pcdSearchControls = new PcdSearchControls();
    pcdSearchControls.setReturningObjFlag(false);
    pcdSearchControls.setSearchScope(PcdSearchControls.SUBTREE_WITH_UNIT_ROOTS_SCOPE);
    dirCtx.addToEnvironment(Constants.APPLY_ASPECT_TO_CONTEXTS,Constants.APPLY_ASPECT_TO_CONTEXTS);
    // Gets the full path of the iViews from the PCD
    NamingEnumeration ne =      dirCtx.search("","(com.sap.portal.pcd.gl.ObjectClass=com.sapportals.portal.iview)",     pcdSearchControls);
    while (ne.hasMoreElements())
         IPcdSearchResult searchResult = (IPcdSearchResult) ne.nextElement();
         String location = "pcd:portal_content/" + searchResult.getName();
         wdComponentAPI.getMessageManager().reportSuccess("View ="+location);
    // Gets the full path of the pages from the PCD
    NamingEnumeration nePage = dirCtx.search("","(com.sap.portal.pcd.gl.ObjectClass=com.sapportals.portal.page)",pcdSearchControls);
    while (nePage.hasMoreElements())
         IPcdSearchResult searchResult = (IPcdSearchResult) nePage.nextElement();
         String location = "pcd:portal_content/" + searchResult.getName();
         wdComponentAPI.getMessageManager().reportSuccess("Page ="+location);
    // Gets the full path of the worksets from the PCD
    NamingEnumeration neWorkSet = dirCtx.search("","(com.sap.portal.pcd.gl.ObjectClass=com.sapportals.portal.workset)",pcdSearchControls);
    while (neWorkSet.hasMoreElements())
         IPcdSearchResult searchResult = (IPcdSearchResult) neWorkSet.nextElement();
         String location = "pcd:portal_content/" + searchResult.getName();
         wdComponentAPI.getMessageManager().reportSuccess("WorkSet ="+location);
    But my requirements is, if I have the role as "Sales Role", I want to find the iViews, Pages and worksets assinged to this role.
    Your help is really appreciated.
    Thanks in Advance,
    Chinna.

    Hi,
    All you need to do is to change the search root object:
    DirContext dirCtx;
    initialContext = new InitialContext(env);
    dirCtx = (DirContext) initialContext.lookup("pcd:portal_content/mypath/myrole");
    PcdSearchControls pcdSearchControls = new PcdSearchControls();
    pcdSearchControls.setReturningObjFlag(false);
    pcdSearchControls.setSearchScope(PcdSearchControls.SUBTREE_WITH_UNIT_ROOTS_SCOPE);
    dirCtx.addToEnvironment(Constants.APPLY_ASPECT_TO_CONTEXTS,Constants.APPLY_ASPECT_TO_CONTEXTS);
    all the rest stays the same.
    BTW - you can also retrieve all the objects using one search by putting
    (|(com.sap.portal.pcd.gl.ObjectClass=com.sapportals.portal.iview),(com.sap.portal.pcd.gl.ObjectClass=com.sapportals.portal.page),(com.sap.portal.pcd.gl.ObjectClass=com.sapportals.portal.workset))
    In the search query. Then you can get the type using PCM (portal content model) APIs.
    Hope this helps, Elisha

  • When reading my downloaded paper the Safari page sometimes comes up and I have to press the Home button and start all over again but same thing happens.  I even made sure the the paper download was the first thing I did on my Ipad

    When reading my downloaded paper the Safari page sometimes comes up and I have to press the Home button and start all over again but same thing happens.  I even made sure the paper download was the first thing I did on my Ipad and that no other apps were open.

    Have you tried a Reset (No Data will be Lost)
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430

  • I just got the new itunes and I can open itunes and see my music but whenI try and go to the itunes store it just loads to a white page. I try and refresh and go to the home page and nothing happens. I can sign into my account and the tabs for the itunes

    I just got the new itunes and I can open itunes and see my music but whenI try and go to the itunes store it just loads to a white page. I try and refresh and go to the home page and nothing happens. I can sign into my account and the tabs for the itunes store pop up like they normally would when browsing the itunes store but when I click on one of them, it is a blank page. Is there a setting I need to change? Does it just take an extremely long time to load? Please help!!

    Bucktr09:
    I'm having the exact same problem.  I upgraded to the newest version of iTunes on my iMac and ever since I did the store is a blank white screen.  I can get my library content but the store is a no go.  Is there any one out there with a solution?

  • I have Thunderbird 24.5.0. When I double click the desktop item to open it up, it opens immediately, but when I'm in the main page with all the folders on the

    I have Thunderbird 24.5.0. When I double click the desktop item to open it up, it opens immediately, but when I'm in the main page with all the folders on the left & the corresponding email details on the right of that same page, it seems to have problems. Before, when I would highlight a certain box / folder (whether it would b “inbox”, “sent” folder, “trash” folder, or whatever, it takes a good 5 min (minimum) to open that certain folder so I can see the emails of that folder.
    Can u help me determine what is causing this? Just 3 days ago, it was fine.
    Thank you

    What is your anti-virus software?

  • I used to open many tabs in the same page and i move from one to other by mouse but since3 two days the tabs open in the same page normaly but i can't move from one to other when i clik with mouse on any tab it don't open/ do u have any solve for this?

    i used to open many tabs in the same page and i move from one to other by mouse but since3 two days the tabs open in the same page normaly but i can't move from one to other when i clik with mouse on any tab it don't open/ do u have any solve for this

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • I have bought a dvd of photoshop elements 12. I have installed it both as the licensed version and again as a trial version. I can open organiser but when I try to open editor it asks me to sign in. Ive tried it with my ID and also tried creating a new ID

    I have bought a dvd of photoshop elements 12. I have installed it both as the licensed version and again as a trial version. I can open organiser but when I try to open editor it asks me to sign in. Ive tried it with my ID and also tried creating a new ID with another email address. However i cant get past this screen  - it just freezes and wont load or do anything.

    Hi,
    Can you please elaborate what happens when you try to Sign in?
    Also , Can you please share the following logs at [email protected]:
    Go to %temp% folder and share PDApp.log , oobelib.log and amt3.log
    Thanks,
    Shikha

  • I purchased Lightroom 5 in December 2014.  It was my understanding that I would get free upgrades when new versions come out.  I attempted to download LR 6 and it said that the download was happening but there was no progress bar showing.  I left the down

    I purchased Lightroom 5 in December 2014.  It was my understanding that I would get free upgrades when new versions come out.  I attempted to download LR 6 and it said that the download was happening but there was no progress bar showing.  I left the downloading screen open for 3 hours but nothing happened.

    Robert,
    You can purchase Lightroom 6 as a part of the creative cloud photography package, part of creative cloud, as a stand alone product or as a product upgrade.
    If you purchased lightroom 5 as a perpetual product rather than the creative cloud, you would need to purchase an upgrade to Lightroom 6. Udpates are free for stand alone versions, but upgrades need to be purchased.
    If you need to purchase an upgrade to a perpetual license that you downloaded or purchased at a store, see this link: Products .  Scroll down to lightroom and click "buy". Click on the selectable text by " I want to: "and select "upgrade".
    If you are trying to install Lightroom CC 2016 as a part of a creative cloud subscription, you should be able to download and install Lightroom CC 2015 from the Creative Cloud site. Since Lightroom CC is a new product, it will not show as an update in the Adobe Application Manager. Instead, press the  install button next to Lightroom in the Application manager. If you don't see "install" by Lightroom in the application manager, please first try signing out and back in: sign in and sign out of the Creative Cloud desktop app
    If you still have issues, see option 2 in this link:
    Lightroom doesn't launch or quits automatically after splash screen
    Regards,
    Pattie

  • About a month ago, Mavericks had an automatic update. I have a Windows 7 partition bootcamped on my macbook pro. Before the update, everything was fine. Now, when I attempt to start Windows partition, as soon as I touch the keyboard or mouse the scre

    about a month ago, Mavericks had an automatic update. I have a Windows 7 partition bootcamped on my macbook pro. Before the update, everything was fine. Now, when I attempt to start Windows partition, as soon as I touch the keyboard or mouse the screen goes black and I can't go any further. I have tried to re-load the bootcamp drivers and try again. It does the same thing. Any help would be great.

    i sue windows 7 and my orignal macintosh formated and get online same window

  • I use lion 10.7.2 and iPhoto latest version but when I export a slide show when I play it . It plays about half of the slide show and screen become white ? How can I solve it ? Is it bug or my computer problem

    I use lion 10.7.2 and iPhoto latest version but when I export a slide show when I play it . It plays about half of the slide show and screen become white ? How can I solve it ? Is it bug or my computer problem

    I would also like to know the answer to this. I am having the exact same problem.

  • I can't log into my iTunes account. I logger out a few days ago to trouble shoot because I was trying to redeem some iTunes cards but when i pressed redeem nothing happened. Now when i press sign in and then choose existing Apple ID, nothing happens

    I can't log into my iTunes account on my iPhone 5s. I logged out a few days ago to trouble shoot because I was trying to redeem some iTunes cards but when i pressed redeem nothing happened. I then tried to log back in immediately afterwards. I was unable to do so. After clicking "sign in" at the bottom of the apps main page, it brought up another menu where I clicked "Choose existing Apple ID". After pressing this the menu disappeared and nothing happened. I tried this multiple times and received the same result each time. I tried the other available option of creating a new AP ID to log in with and that one worked perfectly fine. I am clueless as to why the log in for me is either not able to load or just completely blocking me from getting back into my iTunes account on my phone. Not only can I not listen to the music I currently have, but I cannot log in to purchase the new music that I wanted to with my unused iTunes gift cards

    I have the same problem too and tried alot of things like time zone , restarting or changing DNS of wifi connection to 8.8.8.8 still nothing happens .. !!
    iPhone 5s, iOS 8.3

Maybe you are looking for

  • Setting query datasource at runtime for FORM Datablock

    Hello all, we have below requirement - the Form datablock is build on a customized table. we need to populate some of the fields of the form by writing a view which joins tables across variousl modules. the form data will be queried by giving po numb

  • Is there any way to re-install an app on my iPad 2 without synching?

    I deleted and now want to re-install an app on my iPad 2. The App store tells me it's installed and I didn't see any way to re-install it from there. Is there any way to re-install just one little app without having to haul out the big ol' laptop and

  • How do I search for a string in the Text tab of the Layers panel

    I have a world map with a text layer for country names.  I hide the country names as needed by clicking on the 'eye' icon for Toggle Visibility in the Layers panel.  I've inadvertently hidden one name and I need to know how to find it in the Text pan

  • Not turning off

    my i-pod doesn't turn off all the way... it just goes into a "sleep" mode. I was told when you turn it on you should see the apple logo.. but i dont, it just kinda flips back into life. does anyone know how to help me?

  • Can't use SecKeyRef and similar functions, when "Compile sources as" is set to "Objective c  "

    Hi, need to access SecKeyRef funcion and some other similar ones, but i can't access them, when my compiler option "Compile sources as" is set to "Objective c++". When it is set to "According to a file type", i dont get any errors with those funcions