Safari works fine in one account, but not another

In one account ONLY, Safari doesn't work. I get a "can't connect to internet" error message. In that same account, email works fine, so I know I am connected. Tried emptying Safari folders, re-setting Safari, and downloading the latest Safari. Nothing helps.
Any suggestions?
Many thanks.
RSF

Hi
The usual remedy for "can't connect to Internet" is to add DNS numbers to the Network panel.
Go to System Preferences>Network. Select your connection, then select "advanced". In the DNS panel add these codes:
If you live in the United States: 4.2.2.1 and 4.2.2.2
Outside the US: 208.67.222.220 and 208.67.220.222
Select "OK", then select "apply".
Restart Safari.

Similar Messages

  • Paypal button code works fine for one button but not another

    Hey there, I have a paypal btn with this code on it:
    on(release){
    mylv = new LoadVars();
    mylv.cmd = '_s-xclick';
    mylv.encrypted = '-----BEGIN
    PKCS7-----MIIH0QYJKoZIhvcNAQcEoIIHwjCCB74CAQExggEwMIIBLAIBAD
    CBlDCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYD
    VQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW
    5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2 ==-----END
    PKCS7-----';
    mylv.send('https://www.paypal.com/cgi-bin/webscr', 'POST');
    (i took a few characters out of the encrypted string--just in
    case and to shorten the post)
    This button works fine.
    Now, I need a second button for a different item.
    So, I went on to paypal last night and generated a "buy now
    button" several different times. Copied and pasted the encrypted
    string where the old one is. When I have the site live and click on
    the new button it takes me to a paypal pages that says "We were
    unable to decrypt the certificate id."
    Any one have this issue before? And does anyone have any idea
    of how to correct it?
    Thank you in advanced,
    hutch

    HI Bob,
    You can test your settings by clicking the big "Test My DNS" button at <https://www.dns-oarc.net/oarc/services/dnsentropy>. If you see "Poor" on any of the tests, don't use that domain name server! Remove it from Apple Menu => System Preferences =>Network =>DNS Servers or similar location in your router if you've got a 'home network'. If all you have is "poor" DNS servers in your list, call your ISP and insist that they give you the address of a name server which is protected against the recently exposed DNS cache-poisoning threat.
    Also, open System Preferences/Network. Click the DNS tab. Add these numbers in the DNS Servers box.
    208.67.222.222
    208.67.220.220
    See if that helps.
    Carolyn

  • Program is working fine in one version but not in other how to handle this

    hi all,
    i have a program which works fine in ECC5. in that program i have used some XML related classes and interfaces. but when i try to execute this in 4.6c version its showing lot of all errors saying that so and so class or so and so interface is not supported in 4.6c version like that.
    how to overcome these errors, means how to make the classes and interfaces which work fine in ECC5 to work well in 4.6c version.

    Hello Mr. Rich,
    the coding which u provided was very helpful it almost solved my problem,but at
    the the last iam stuck up with a small problem. i wrote the coding like this for my
    program
    tables:mara.
    type-pools: truxs.
    parameters: p_matnr like mara-matnr.
    data: ixml type truxs_xml_table.
    data: xxml like line of ixml.
    data: size type i.
    data: file_str type string.
    file_str = 'C:\simp.xml'.
    data: begin of itab_mara occurs 0,
              matnr like mara-matnr,
              ernam like mara-ernam,
              aenam like mara-aenam,
              vpsta like mara-vpsta,
          end of itab_mara.
    select matnr ernam aenam vpsta from mara into table itab_mara up to 5
    rows where matnr = p_matnr.
    CALL FUNCTION 'SAP_CONVERT_TO_XML_FORMAT'
    EXPORTING
      I_FIELD_SEPERATOR          =
      I_LINE_HEADER              =
      I_FILENAME                 =
      I_APPL_KEEP                = ' '
      I_XML_DOC_NAME             =
    IMPORTING
       PE_BIN_FILESIZE            = size
      TABLES
        I_TAB_SAP_DATA             = itab_mara
    CHANGING
       I_TAB_CONVERTED_DATA       = ixml
    EXCEPTIONS
      CONVERSION_FAILED          = 1
      OTHERS                     = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
       BIN_FILESIZE                  = size
        FILENAME                      = file_str
       FILETYPE                      = 'BIN'
      APPEND                        = ' '
      WRITE_FIELD_SEPARATOR         = ' '
      HEADER                        = '00'
      TRUNC_TRAILING_BLANKS         = ' '
      WRITE_LF                      = 'X'
      COL_SELECT                    = ' '
      COL_SELECT_MASK               = ' '
      DAT_MODE                      = ' '
    IMPORTING
      FILELENGTH                    =
      TABLES
        DATA_TAB                      = ixml
    EXCEPTIONS
      FILE_WRITE_ERROR              = 1
      NO_BATCH                      = 2
      GUI_REFUSE_FILETRANSFER       = 3
      INVALID_TYPE                  = 4
      NO_AUTHORITY                  = 5
      UNKNOWN_ERROR                 = 6
      HEADER_NOT_ALLOWED            = 7
      SEPARATOR_NOT_ALLOWED         = 8
      FILESIZE_NOT_ALLOWED          = 9
      HEADER_TOO_LONG               = 10
      DP_ERROR_CREATE               = 11
      DP_ERROR_SEND                 = 12
      DP_ERROR_WRITE                = 13
      UNKNOWN_DP_ERROR              = 14
      ACCESS_DENIED                 = 15
      DP_OUT_OF_MEMORY              = 16
      DISK_FULL                     = 17
      DP_TIMEOUT                    = 18
      FILE_NOT_FOUND                = 19
      DATAPROVIDER_EXCEPTION        = 20
      CONTROL_FLUSH_ERROR           = 21
       OTHERS                        = 22
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    but when i try to open the XML file into which the data has to be downloaded it shows the following error.
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    A name was started with an invalid character. Error processing resource 'file:///C:/simp.xml'. Line 1, Position 23
    <?xml version="1.0"?><%_TYPE0000000019><%_TYPE0000000019><MATNR Datatype="C" Length="18">00000000008...
    help me to resolve this problem.
    thanks,
    anil.

  • I want to bcc myself when sending mail from one account but not another. When I check "automatically bcc myself", it bcc's me from both accounts.  Can I set this to work with only one account?

    I have two mail accounts on my Mac.  I want one account to bcc me when I send emails from that account.  I checked "automatically bcc myself" under mail>preferences>composing, but both accounts bcc me when sending mail.  Can I set this to only bcc myself from one specific email account? Thanks.

    It does not make sense that your ssh does not have a dash capital Y (-Y) option. It is in "man ssh", and my 10.6.6 has the -Y option, and I've had a -Y option since at least Tiger (10.4) days.
    My ssh is in /usr/bin/ssh
    I'm not very good at X11 issues, so I'm just throwing ideas out there.
    Does your broken account have a $HOME/.ssh/config file, and if so, what is in it?
    Does the broken account have any $HOME/.x* or $HOME/.X* files that X11 might be reading to configure your X11 behavior differently from the new test account?
    $HOME/.Xauthority
    $HOME/.Xdefaults-<hostname>
    $HOME/.Xresources
    $HOME/.ICEauthority
    $HOME/.keymap.km
    The above are a few names I found looking through "man X"
    While I'm thinking about it, I assume that when going to the server, you are using the exact same user account on the server, so that you have a constant at least at that end.
    Have you tried trashing your
    $HOME/Library/Preferences/org.x.X11.plist
    file, to see if that is affecting the broken account?
    Again, I am just throwing out ideas to see if anything sticks.

  • Home sharing works with one account but not another?

    My family has an apple tv, we've been having problems setting up the home sharing and tried everything. We eventually decided to try my brother's apple id instead of my mother's and it worked. So my question is; why does home sharing not work with one id but works with the other? any suggestions to get it to work with my mother's id?

    Try resetting the Apple TV. enter your mother's ID again. Then remove her ID on iTunes and re-add it. Then see if it works this time.

  • Why does a program run in one account but not another?

    I am trying to run Prism (from graphpad) on my macbook pro. The application is hosted on a server accessed using an adress beginning with smb:// . I have copied the application shortcut to the dock and am able to run it absolutely fine on one user account. In my other user account, the program starts and goes through an initialization screen, then freezes (colourwheel when the mouse is over the menu bar). This application has run fine for the last 18 months, and has only now developed a problem. I have spoken with our institute's IT professionals, and they have suggested some things, but none have worked. My network connection is stable and, as far as I can, I have repaired all permissions.
    Any ideas? I really, really don't want to have to flip between accounts to use this somewhat essential graphing program!
    Thanks in advance!

    again,
    "start debugging by using the following in both functions:
    trace(this);  // to check if you're still within scope of your class in both."
    Ambari wrote:
    public function geoPieceBegin (e:MouseEvent): void {
                this.startDrag();
                this.addEventListener(MouseEvent.MOUSE_MOVE, geoPieceMove);
                this.addEventListener(MouseEvent.MOUSE_UP, geoPieceEnd);
                PuzzleGlobals.pieceActive = true;
                MovieClip(root).nameDisplay.text = this.fullName;
                if (PuzzleGlobals.currentLevel == "Name") {
                    MovieClip(this).nameOfState.textColor = 0xFFFCCE;
                trace (this); //traces [Object myGeoPieceObject].  this is helpful
                MovieClip(root)["bmc"+PuzzleGlobals.puzzleAbbrev].addChild(this); //works just fine
    public function geoPieceEnd (e:MouseEvent): void {
                //removing extraneous code
    trace(this);
                MovieClip(root).nameDisplay.text = PuzzleGlobals.currentPuzzle; //works just fine
                this.stopDrag();
                if (this.dropTarget.parent is GeoPuzzle) {
                    if (GeoPuzzle(this.dropTarget.parent).abbrev == this.abbrev) {
                        //removing extraneous code
                        MovieClip(root)["bmc"+PuzzleGlobals.puzzleAbbrev].removeChild(e.targe t); //removes object

  • Can signon with one account but not another one

    Been using iChat for years, the other day I installed both Adium and Fire but neither of them would signon my main AIM account but would signon my secondary AIM account. NOW, though, iChat refuses to signon my primary AIM account either! The only way to signon with that account is to use the AOL IM application, it signs on flawlessly. Password IS correctly entered, just the one AIM account won't authenticate.
    I deleted iChat prefs, ran Cocktail, turned off the firewall, still no joy.
    Ideas?

    Hi ClarkDV,
    In iChat prefernces > Accounts section
    Is the tick box to Allow Multiple logins of the account name actually ticked ?
    Do Adium and Fire have similar settings ?
    Ralph

  • Search is working fine on one server but not giving results from other servers. moss 2007?

    hi,
    we have multi server or wfe architecture. configured search service on one server 01, central admin is 02, and query as 03, now crawled content with hostname:port of 01. everything is fine.
    but now when we trying to search results its giving results on server 01 which is index and query role. but didnt return any results in other servers.
    help is really appreciated.
    Thanks,
    SJ

    I thought you are posting question in wrong forum. Please move the question to
    https://social.technet.microsoft.com/Forums/en-US/home?forum=sharepointsearch. There some one will help
    Ravin Singh D

  • Safari (7.0.1) is non-responsive (spinning pinwheel) upon start up.  It will work in temp user account but not in my main user acct.  I tried reinstall via comman-r prompt on start up but the problem persists.  Any suggestion for reinstall or repair?

    Safari is non-responsive after intitial start up.  Before it can load the homepage (google), it will hang and give a perpetual pinwheel until I force quit the program.  Safari works in temporary user account but not in my primary user account.  I have reinstalled osx via the command-r upon start up and the problem still persists.  Any suggestions on how to reinstall or repair safari?

    Thanks for thinking about my problem. I've already experimented with creating a new user, a co-administrator. The programs don't crash when that account is running, just as they don't crash when the guest-user's account runs. So it seems that the problem is limited to the default user's account, which is the one that was running when I installed the updates to the OS and the firmware. Another clue is that the programs that crash as soon as they are launched are *probably* the ones that were open at that time in that account. Yet deleting Saved Application States does not keep the programs from crashing when next launched.
    So the mystery continues, but these additional facts will help with the diagnosis, I hope.
    Thanks again for your suggestion.
    Gordon

  • Safari works for one user but not another on same computer

    MacBook with multiple user accounts. Safari (and Firefox) work fine for one user but are unable to open web pages when the other user is logged in. The error in Safar is "Safari can't open the page "http://xxxxxxxxx/" because it could not connect to the server "/xxxxxxx/" . DNS is working for this user. I am able to ping any number of sites from Terminal. Network Preference pane is configured to not require any proxy. This is a case of it was working but now it's not.
    Can anybody help with this? I know I can fix this by simply creating another user and transfering the affected user's data to the new account but I would rather not. TIA

    HI Bob,
    You can test your settings by clicking the big "Test My DNS" button at <https://www.dns-oarc.net/oarc/services/dnsentropy>. If you see "Poor" on any of the tests, don't use that domain name server! Remove it from Apple Menu => System Preferences =>Network =>DNS Servers or similar location in your router if you've got a 'home network'. If all you have is "poor" DNS servers in your list, call your ISP and insist that they give you the address of a name server which is protected against the recently exposed DNS cache-poisoning threat.
    Also, open System Preferences/Network. Click the DNS tab. Add these numbers in the DNS Servers box.
    208.67.222.222
    208.67.220.220
    See if that helps.
    Carolyn

  • How do I connect to Net Flix? I put in my user name and password which work fine with my iMac but not on my Apple TV?

    How do I connect to Net Flix? I put in my user name and password which work fine with my iMac but not on my Apple TV?

    Can you give me a screenshot of the User Accounts window in Control Panel?
    Please create a screenshot by following the guide mentioned at [[How do I create a screenshot of my problem?]].
    Once you've done this, attach the saved screenshot file to your forum post by clicking the '''Browse...''' button below the ''Post your reply'' box. You really help us to visualize the problem.

  • WHEN I GO TO PRIVACY SETTINGS AND CLICK ON EXCEPTIONS AND TYPE IN A WEB ADDRESS TO ALLOW ALL THE TIME IT DOES NOT SAVE IT THE NEXT TIME I SIGN ON TO FIRE FOX IT IS LOST. IT WORKS FINE ON MY DESKTOP BUT NOT ON MY LAPTOP THAT I JUST BOUGHT in English.

    Question
    WHEN I GO TO PRIVACY SETTINGS AND CLICK ON EXCEPTIONS AND TYPE IN A WEB ADDRESS TO ALLOW ALL THE TIME IT DOES NOT SAVE IT THE NEXT TIME I SIGN ON TO FIRE FOX IT IS LOST. IT WORKS FINE ON MY DESKTOP BUT NOT ON MY LAPTOP THAT I JUST BOUGHT in English.

    I just updated my whatsapp...clicked on whatsapp in appstore and now can access my whatsapp

  • BDC with call transaction VD02 works fin in A mode but not in N mode

    Hi All,
        I have BDC program developed in 4.6c using call transaction VD02 works fine with mode A but not with mode N.
    Now we upgraded to ECC 6.0.Do I need to change anything?

    No, you don't have to change anything for ECC. BTW, I wonder why VD02 is not working in the background for you?

  • Implicit read with assembly module instance working on one computer, but not another

    Hi,
    I'm trying to set up an on-site computer to run a VI which uses assembly instances for data communication, but for some reason I'm unable to establish a connection to the PLC.
    I'm running the example vi "CreateAssemblyInstance.vi" to try and get the communication set up before I start using my actual program.
    When I run this code on my development machine, I'm able to establish a connection to the PLC and read data. I then go into RSLogix 5000 and change the IP address to the on-site machine and try to run the test VI there, but I'm unable to make a connection. LabVIEW-side, the program thinks that it's established a connection and is reading/writing data, but PLC-side I'm getting a "Connection Failed" message in RSLogix.
    I find it weird that LabVIEW thinks the connection was established just fine, which the RSLogix says it can't connect to the VI.
    Just wondering if anyone else has had this happen. We aren't sure why the same VI runs on one machine but not another. We used RSLogix to change the IP address of the target machine, so we don't think that's the issue. And both computers are on the same network, so we don't think it's a firewall issue either.
    LabVIEW-side, things should be identical. I'm running the same example VI that came with the Ethernet/IP module. PLC-side, we're changing the target IP of the module within RSLogix 5000 (and we're sending the updated information to the PLC) to match the machine we're trying to make a connection with. Are we missing any steps? This is the first time we've tried using an assembly module, so we're having a hard time troubleshooting.
    Any ideas on why this is happening?

    I'm pretty sure we're using a generic ethernet module:
    I can communicate explicitly with the problem computer, it's able to use 'Tag Read' and 'Tag Write' to communicate with the PLC.
    We started having another problem just recently too. The Tag Read and Write commands are almost always timing out. I keep getting the error message -251723752:
    Detailed error info: Error -251723752 occurred at EthernetIP Tag Read REAL.vi;Details: The request response was not received in the requested timeout period    Possible reason(s):  Ethernet/IP Industrial Protocol: (Hex 0xF0FF0018) The request response was not received in the requested timeout period
    I can't figure out what's causing this all of a sudden, could these issues be related?

  • How do I send group emails from my iPad? They work fine from my MacBook but not the iPad.

    How do I send group emails from an iPad? They work fine on my MacBook but not my iPad.

    You need a third party app to do that. Look at Mail Shot or Group Email in the app store. You cannot do it with the built in mail app and the contacts app in iOS 5 without a third party app.

Maybe you are looking for

  • Remote rejected error with git

    I'm trying to get a git public repository installed on server and can't seem to push an update. I have my server local user with ssh access and file transfers seem to go fine. I have git 1.6.0.4 installed on both development iMac PPC (10.5.5) and ser

  • WLC 7.4.100.60 and roaming problems on 8500

    Hello, After installing an 8500 controller on 7.4.100.60 and migrating 1000 APs do this controller, we have the following problems: [1] clients get disconnected and loose sessions (note: client is mobile gun and is heavily mobile). I have the impress

  • Nokia music subscription problem

    Hello, I am Mayur I purchased nokia lumia 720 on 5th January 2014 my nokia music was working fine but from last 3 days whenever i try to download music it shows a message that there is problem with your nokia music subscription try again latter... wh

  • Material restriction by Customer

    Hello Gurus - I have a biz requirement where they would want a specific customer (sold to) to be able to order specific materials only. At first, I got a thought to define a division wherein that sold to and material be defined on that division. I am

  • Can't restore from 7.1.2 to 7.1.1

    I'm having problems with iOS 7.1.2, which I've confirmed by reading other similar reports online.    I'd like to downgrade back to 7.1.1; however, despite the fact that I have the correct file (ipsw), iTunes continues to error telling me it's not com