Won't display-MS Internet Exploder Does...

I've had a problem from time to time with Safari not showing pages where Explorer does or will. For example, I'm trying to access a page from a realtor in Maui. The link is:
http://maui.fnismls.com/publink/default.asp?GUID=36b045dc-9909-4ac3-8c2f-8e028e5 b1f89&Report=Yes
The largest frame with the real content doesn't display.
When I paste this link in Explorer, the window comes up fine. This isn't the first time stuff like this has happened.
Any ideas??
Safari Version 2.0.3 (417.8)
Internet Explorer 5.2.3 (5815.1)
iMac G5 2.1 GHz 20"   Mac OS X (10.4.4)  

Hi Ducky, Welcome to Apples User to User Help Forums
I clicked on your link in Safari, page came up mostly empty expect for header? & little on side bars, opened Safari Activity window double clicked on URL that said not found & it open all garbled in that MS way that i have noticed when a site is IE specific.
It shows up fine in (PBs) Firefox netcraft extension shows its MS webserver/ site so no suprise the that we Safari users are squeezed out.
Perhaps downloading Firefox will be a good addition to your browser collection, for IE is no longer supported for us. Ipod envy?
I do not think Safari is the problem in this circumstance.
Hope this helps, Eme:~{)

Similar Messages

  • Won't display my gadgets - explorer does - so not gadgets - what gives - use to all the time - not anymore - how do I get them back

    All of a sudden my gadgets don't display in my igoogle home page. Use to all the time and they will if I use internet explorer it just happens with mozilla firefox.
    How do I get them to display properly they just are listed on the left hand side of the screen.

    Symantec need to update their Firefox add-ons so that they are compatible with Firefox 4. They have indicated that for Norton 360 they plan to release an update to Norton 360 to support Firefox 4 in early May - http://us.norton.com/support/kb/web_view.jsp?wv_type=public_web&docurl=20100720113635EN&ln=en_US
    Pending the update by Symantec, if you want to use the Norton add-ons you will need to downgrade to Firefox 3.6.
    To downgrade to Firefox 3.6 first uninstall Firefox 4, but do not select the option to "Remove my Firefox personal data". If you select that option it will delete your bookmarks, passwords and other user data.
    You can then install the latest version of Firefox 3.6 available from http://www.mozilla.com/en-US/firefox/all-older.html - it will automatically use your current bookmarks, passwords etc.
    To avoid possible problems with downgrading, I recommend going to your profile folder and deleting the following files if they exist - extensions.cache, extensions.rdf, extensions.ini, extensions.sqlite and localstore.rdf. Deleting these files will force Firefox to rebuild the list of installed extensions, checking their compatibility, and reset toolbar customizations.
    For details of how to find your profile folder see https://support.mozilla.com/kb/Profiles

  • Applet won't display in Internet Browser.

    import javax.swing.JTextField;
    import java.util.ArrayList;
    import javax.swing.*;
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    public class Quiz extends JApplet implements ActionListener {
        int AnswersCorrect=0;
        JTextField textfields[] = new JTextField[18];
        JLabel labels[] = new JLabel[18];
        JLabel score = new JLabel();
        JLabel questions[] = new JLabel[18];
        JFrame frame = new JFrame();
        JScrollPane scroller = new JScrollPane(frame);
        JButton button = new JButton("Check Answers");
        GridLayout layout = new GridLayout();
        //ArrayList that will contain the User's Answers
        ArrayList<String> UsersAnswers = new ArrayList<String>(18);
        //Array of Strings that are the correct answers for the quiz
        String[] answers={
        "Answer 1 goes here",
        "Answer 2 goes here",
        "Answer 3 goes here",
        "Answer 4 goes here",
        "Answer 5 goes here",
        "Answer 6 goes here",
        "Answer 7 goes here",
        "Answer 8 goes here",
        "Answer 9 goes here",
        "Answer 10 goes here",
        "Answer 11 goes here",
        "Answer 12 goes here",
        "Answer 13 goes here",
        "Answer 14 goes here",
        "Answer 15 goes here",
        "Answer 16 goes here",
        "Answer 17 goes here",
        "Answer 18 goes here",};
    public void init() {
    //Makes the components
    for(int ii=0;ii<questions.length; ii++){
        textfields[ii] = new JTextField();
        questions[ii] = new JLabel();
        textfields[ii].setColumns(50);
        questions[ii] = new JLabel((ii + 1) + "." + " Question" + (ii + 1) + " goes here");
        frame.add(questions[ii]);
        frame.add(textfields[ii]);
    button.addActionListener(this);   
    frame.add(button);
    frame.add(score);
    frame.setLayout(layout);
    this.add(frame);
    //frame.add(scroller);
    frame.setVisible(true);
    this.setVisible(true);
    frame.setSize(500,500);
    this.setSize(500,500);
    public void actionPerformed(ActionEvent e){
    //checks to see if button was pressed
    if(e.getSource()==button){
        for(int ans=0; ans<questions.length; ans++){
        //Adds answers to the arraylist so that they can be checked
        UsersAnswers.add(textfields[ans].getText());
        //Checks for right answers
        for(int foo=0; foo<questions.length;foo++) {
            if(answers[foo].equalsIgnoreCase(UsersAnswers.get(foo))) {
            textfields[foo].setText("Correct");
            textfields[foo].setEditable(false);
            AnswersCorrect++;
             else {
            textfields[foo].setText("Incorrect");
            textfields[foo].setEditable(false);
    //Displays the score
    score.setText(AnswersCorrect + "/18");
    }When I run this applet in a browser, I get this error:
    Java Plug-in 1.6.0_13
    Using JRE version 1.6.0_13 Java HotSpot(TM) Client VM
    User home directory = C:\Users\Matthew
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    java.lang.IllegalArgumentException: adding a window to a container
         at java.awt.Container.checkNotAWindow(Unknown Source)
         at java.awt.Container.addImpl(Unknown Source)
         at javax.swing.JViewport.setView(Unknown Source)
         at javax.swing.JScrollPane.setViewportView(Unknown Source)
         at javax.swing.JScrollPane.<init>(Unknown Source)
         at javax.swing.JScrollPane.<init>(Unknown Source)
         at Quiz.<init>(Quiz.java:16)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at java.lang.Class.newInstance0(Unknown Source)
         at java.lang.Class.newInstance(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.lang.IllegalArgumentException: adding a window to a container
    I am using this html code to run my applet:
    *<html>*
    *<head>*
    *<title>Lets take a Quiz*
    *</title>*
    *</head>*
    *<body>*
    *<applet code="Quiz.class" width=500 height=500></applet>*
    *</body>*
    *</html>*
    Does anyone know what is wrong?

    Here is what I have now. I think I changed the things you told me to (I am probably wrong), but it is still not working.
    import javax.swing.JTextField;
    import java.util.ArrayList;
    import javax.swing.*;
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    public class Quiz extends JApplet implements ActionListener {
        int AnswersCorrect=0;
        JTextField textfields[] = new JTextField[18];
        JLabel labels[] = new JLabel[18];
        JLabel score = new JLabel();
        JLabel questions[] = new JLabel[18];
        JFrame frame = new JFrame();
        JScrollPane scroller = new JScrollPane();
        JButton button = new JButton("Check Answers");
        GridLayout layout = new GridLayout();
        JPanel panel = new JPanel();
        //ArrayList that will contain the User's Answers
        ArrayList<String> UsersAnswers = new ArrayList<String>(18);
        //Array of Strings that are the correct answers for the quiz
        String[] answers={
        "Answer 1 goes here",
        "Answer 2 goes here",
        "Answer 3 goes here",
        "Answer 4 goes here",
        "Answer 5 goes here",
        "Answer 6 goes here",
        "Answer 7 goes here",
        "Answer 8 goes here",
        "Answer 9 goes here",
        "Answer 10 goes here",
        "Answer 11 goes here",
        "Answer 12 goes here",
        "Answer 13 goes here",
        "Answer 14 goes here",
        "Answer 15 goes here",
        "Answer 16 goes here",
        "Answer 17 goes here",
        "Answer 18 goes here",};
    public void init() {
    //Makes the components
    for(int ii=0;ii<questions.length; ii++){
        textfields[ii] = new JTextField();
        questions[ii] = new JLabel();
        textfields[ii].setColumns(50);
        questions[ii] = new JLabel((ii + 1) + "." + " Question" + (ii + 1) + " goes here");
        panel.add(questions[ii]);
        panel.add(textfields[ii]);
    button.addActionListener(this);   
    panel.add(button);
    panel.add(score);
    panel.setLayout(layout);
    scroller.add(panel);
    this.add(frame);
    frame.getContentPane().add(scroller);
    panel.setVisible(true);
    frame.setVisible(true);
    this.setVisible(true);
    frame.setSize(500,500);
    this.setSize(500,500);
    public void actionPerformed(ActionEvent e){
    //checks to see if button was pressed
    if(e.getSource()==button){
        for(int ans=0; ans<questions.length; ans++){
        //Adds answers to the arraylist so that they can be checked
        UsersAnswers.add(textfields[ans].getText());
        //Checks for right answers
        for(int foo=0; foo<questions.length;foo++) {
            if(answers[foo].equalsIgnoreCase(UsersAnswers.get(foo))) {
            textfields[foo].setText("Correct");
            textfields[foo].setEditable(false);
            AnswersCorrect++;
             else {
            textfields[foo].setText("Incorrect");
            textfields[foo].setEditable(false);
    //Displays the score
    score.setText(AnswersCorrect + "/18");
    }

  • Never saw Safari doing this before! Won't display some images !!! *** ??

    So I am using Safari for quite some time. All of a sudden, in the middle of the day, Safari won't display all the images on any given web page. For example, I go to flickr.com and see that half the photos on the page wont load. The status indicator says that Safari is done trying to load the page, yet half it is empty. Resetting, and then restarting Safari does nothing to help the situation.
    I really want to like Safari but am bewildered by all the problems it has (massive memory leaks, CPU runs at 100% every other day).
    But not showing photos is too much!
    See this > http://farm4.static.flickr.com/3026/24292326189cfa374007o.jpg
    Message was edited by: iAyan

    I, myself am not crazy about Firefox, because it's a resource hog. Safari on the other side is simple, neat and clean. I have uninstalled the Apple Updater that gets installed with the Safari installation and that ensures that Safari doesn't give me any hassles.
    It is just this image problem that I am experiencing at the moment. I really hope that someone can resolve this before the final release of Firefox 3.

  • Does anyone know why all of a sudden any new parent divs I add won't display in browser preview?

    Does anyone know why all of a sudden any new parent divs I add won't display in browser preview?

    yes styles are applied. What does not show up are the container divs - they all have the thin purple borders.
    The "Blog Lovers" image shows up but it is inside the #blogindex div - which seems to be invisible because the elements inside #blogindex div are just piled on top of each other. (see below html) This is now happening on all the pages of this site.
    (I test a different site in DW and I was able to add divs and borders and content inside divs just fine.)
    <!-- start #blogindex --> 
         <div id="blogindex">
            <div id="blog_image1"><img src="images/bloglovers.gif" alt="Blog Lovers" /></div>   
             <div id="blog_image2"><img src="images/gcblogheader350x70.jpg" alt="Gina Charles Blog" /></div>
          <div id="blogindex_text">
          <p class="blackbolditalic">Visit the blog for happenings, highlights and conversation! </p></div>
          </div>     
       <!-- end #blogindex -->
    http://www.newworldapparel.com/tests/  -scroll 1/2 way down page to see the "Blog Lovers" pile up!

  • HT1600 update Apple TV via settings general update software advise Apple support.  But Airplay won't display the Apple Tv because it needs an updated compatible software. Catch 22. How does one resolve this contradiction please? Paul

    update Apple TV via settings>general>update software advise Apple support.  But Airplay won't display the Apple Tv because it needs an updated compatible software. Catch 22. How does one resolve this contradiction please? Paul

    only the following macs support airplay mirror
    http://support.apple.com/kb/ht5404

  • Firefox won't access the internet but [as now with this question] IE does - this has happened before where I used IE to fix firefox

    firefox won't access the internet but [as now with this question] IE does - this has happened before where I used IE to fix firefox

    See if this helps you - [[Cannot connect after upgrading Firefox]]

  • Content of site does not display in Internet Explorer

    I am designing the local Budget rent a car site in the Virgin
    Islands using Dreamweaver CS3 and the help of CSS.
    In the beginning it displayed well on every browser even
    Internet Explorer. Then as I fine-tuned it I must've changed
    something in my coding, cause now only the front page displays in
    Internet Explorer and all the other pages only show a white block.
    I've been sitting on this issue for a few days already, so
    any help would be much appreciated.
    The test site is
    http://64.225.234.146/test/index.html
    Username: user1596972
    Password: v8tqnpcmmz

    Honestly, it looks OK to me in IE7. Is that the browser you
    are using?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Guperman" <[email protected]> wrote in
    message
    news:g2rrk2$qjf$[email protected]..
    >I am designing the local Budget rent a car site in the
    Virgin Islands using
    > Dreamweaver CS3 and the help of CSS.
    >
    > In the beginning it displayed well on every browser even
    Internet
    > Explorer.
    > Then as I fine-tuned it I must've changed something in
    my coding, cause
    > now
    > only the front page displays in Internet Explorer and
    all the other pages
    > only
    > show a white block.
    >
    > I've been sitting on this issue for a few days already,
    so any help would
    > be
    > much appreciated.
    >
    > The test site is
    http://64.225.234.146/test/index.html
    > Username: user1596972
    > Password: v8tqnpcmmz
    >

  • I'm also having a music issue.  When my phone is attached to the computer (mac running 10.6.8) it looks like my music is there but its gray and I can't play anything.  I've tried to delete it and it won't let me but it does not show up on my phone.

    I'm also having a music issue.  When my phone is attached to the computer (mac running 10.6.8) it looks like my music is there but its gray and I can't play anything.  I've tried to delete it and it won't let me but it does not show up on my phone.

    By the way, I have tried shutting of the display switching in the power settings.  That was basically the only real answer I found anywhere.  It didn't work.

  • Difficulty using a projector. I have a MBP 17" and am running 10.6.8. Often I need to make a Powerpoint or other presentation  at a client and I want to connect my computer to their projector. Either it won't display on the projector at all. HELP!

    Difficulty using a projector. I have a MBP 17" and am running 10.6.8. Often I need to make a Powerpoint or other presentation  at a client and I want to connect my computer to their projector. Either it won't display on the projector at all. Once it displayed but the presentation mode was on the big screen and the presentation I wanted to show was on my MBP screen. I have the adapter( white ones) to attached to the projector cables.  I am so frsutrated...it looks so silly not to have a computer work during a presentation..
    Another problem one the rare occasion that it shows on the screen is that the presentation does show just my desk top.  Any ideas?
    Thanks !

    You often have to turn off Mirroring to be able to set the second "screen"s resolution to something reasonable. When you do, the two screens become an "Exceeded Desktop" joined along one edge, and the Arrange pane in displays prefs can allow you to specify what edge. Initially, it will show a vacant extension of the built-in screen's desktop.
    The mouse moves freely across that shared edge, and can allow you to drag the presentation window across to the the projector screen and re-size it to fit.

  • Private Photos App - pictures not displaying This app was working fine, then suddenly it won`t display any of the photos.

    This app was working fine, then suddenly it won't display any of the photos. One day the photos were there, gone the next. It still shows how many photos are there but just shows a white screen. I can't export anything to the photo album. Adding photos to existing folders yields the same result, only white screen displayed. However, I can create new albums and add photos to those without issue. Does anybody know how to recover the "missing" photo"  I was going to try reinstalling the app but it's no longer available in the iTunes App Store. Thanks, Tracy

    1, you can't at the moment, though with iOS 5 in the Autumn, from http://www.apple.com/ios/ios5/features.html#photos :
    Even organize your photos in albums — right on your device
    2, by removing it from you synced from and re-syncing. Only photos taken with the iPad, copied to it via the camera connection kit, or saved from emails/websites etc can be deleted directly on the iPad (either via the trashcan icon in the top right corner if viewing the photo in full screen, or via the icon of the box with the arrow coming out of it in thumbnail view)
    3, the location of the photos that you synced to the iPad should be listed on the iPad's Photos tab when connected to your computer's iTunes.
    4, you can copy the photos from your iPad to your computer : http://support.apple.com/kb/HT4083 . You should also be able to delete them from the iPad as part of the transfer process to your computer, and it's then your choice whether to add them to your sync photo list so as to copy them back to the iPad. Copying them to your computer would allow you to organise them into folders and therefore be able to sync them back into separate albums.
    5, I don't use Dropbox either. There are some third-party browser apps in the iTunes App Store that allow you to download pages so that you can view them when offline e.g. Atomic Web (the whole page is saved within Atomic Web, it doesn't place a photo into the Photos app)
    6, deleting content should help. If you remove an app from your iPad then you also remove the content that it's got on the iPad - so if you then decide to reinstall it back onto the iPad then you will need to manually add back any content that you want in it. None of the Apple built-in apps (including Photos) can be removed from the iPad

  • Image with foreign characters in name won't display

    I have an image on my drive whose name has foreign characters ("c�pia de frente.jpg"). To display the image my JSP reads the image name from the database and generates the following html:
    <img src="../pictures/c�pia de frente.jpg">The page then displays a broken image icon for this image. Images in the same list which do not have foreign chars get displayed accurately. When I choose "show image.." in my browser I see that the image name has been rewritten into the following: c%C3%B3pia%20de%20frente.jpg. The rewriting that will display the image is instead c%F3pia%20de%20frente.jpg. I found the correct rewriting on another of my JSP where the image with the foreign chars actually gets displayed correctly although the code to generate the html is the same on both pages and looks something like this (simplified):
    <logic:iterate id="listelement" name="list" property="rows" scope="request" type="org.apache.commons.beanutils.DynaBean">
    <%         
    out.write("<img src=\"../pictures/"+listelement.get("name").toString()+"\">");
                             %>  <br>                     
                            </logic:iterate> Every image that doesn't have foreign chars in its name gets displayed accurately but images with foreign chars in their names won't display. What am I doing wrong?
    Thanks
    Niklas

    Thanks, but it doesn't seem necessary to replace foreign characters. It works without replacing in one place but not in another which is confusing. I think it is something with the enconding but can't see what the difference is between the working and non-working code. In both pages I have put <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">I'd greatly appreciate any more suggestions to solve this problem.

  • My safari won't display home page

    My safari won't display my webpage.Just blank.But firefox is fine.Wonder why? I tried the reset on safari but it does nothing at all..Once my safari icon moved to the right all by itself to the right side of the dock.Why? Anyone.

    Safari: Mac OS & System Software: Apple Support Communities

  • Yahoo's sign-in seal won't display in Firefox but will in I.E.

    My Yahoo sign-in seal worked fine 'til this morning. It'll change the color but won't display the same or new text. Yahoo tech said it's a Firefox problem because it works in Internet Explorer. He dbl-checked that I wasn't on a phishing site.
    Any ideas to correct this?
    Thx-Kate

    Is the seal a Flash object?
    Update the Flash plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    *http://helpx.adobe.com/flash-player.html

  • OS X Server Wiki pages do not display in Internet Explorer 9

    I recently did a clean instalof OS X Server 10.8.2 on my Mac Mini using the recently released version 2.2 (build 166) of the Server App.  Today - after enabling the Wiki - I noticed that the body of the Wiki pages no longer display on Internet Explorer 9 - only the Please Login banner displays.  The Wiki Page body shows only as a squashed down blank rectangular box near the top of the screen.  This happens on all of the PC's that I have tried - both internal and external.
    There were a number of Wiki Enhancements listed in the release notes for Version 2.2 of the Server App.  These enhancement appear to have made it impossible to acess the Wiki using Internet Explorer.
    The Wiki pages are fine using Safari (Mac or Windows) - Firefox (Mac or Windows) and Chrome (Mac or Windows).  The problem is only with IE 9.
    Out of curiosity - I restored an image of my server from last week - prior to the Server App 2.2 udpate - and Wiki (from version 2.1.x) pages work fine in Internet Explorer 9.  (At this point I'm not sure if it is just IE 9 - or other versions of IE.
    Additionally - if I disable the Wiki - and just enable the default website - the default website displays fine in IE 9 - but as soon as I click on "change password" at the bottom of the page - the Enter Old and New Password window - also does not display - similar rectangular box - with just Change Password text in it.
    So the problem is not just with the Wiki.  Unfortunately I do not have any websites set up yet to test with.
    Here is what I see (in IE 9) on the main Wiki page as of version 2.2 of the server app:
    Is anyone else experiencing this?  I will probably open a support issue - because my brand new Mac Mini is covered under AppleCare.
    ~Scott
    Message was edited by: SBeattie2  (Reinserted Screen Print)

    If I save the page as a web archive and then open it MS Word - I see the following text at the bottom:
    <div class="noscript"> To use wikis, enable JavaScript.</div>
    JavaScript is enabled - via Tools / Internet Options / Security - the checkbox for Active Scripts is set to enabled.

Maybe you are looking for

  • Importing rotated pictures from iphoto

    Hello everyone. I'm a new mac user and I am in love with my new mac. I'm mainly using it for the imovie application. I have a question I'm hoping someone can answer... Does anyone know how to take a rotated picture, pull it into imovie and then have

  • I am trying to sync an audio book. I cant find it on my phone?

    i am trying to sync an audio book. I cant find it on my phone?

  • New 2 Mac Just A few Questions.

    So I have a new macbook. I just ordered the apple wireless keyboard and mouse and the dvi adapter. I plan on hooking it upp to my 42inch lcd. What settings do I have to go in and change for all of this to happen and me being able to close my macbook

  • Do I need a new graphics card?

    Despite calibration, my monitor cannot distinguish subtle whites, greys or creams. I did the white saturation test on http://www.lagom.nl/lcd-test/white.php and can only see the checkerboard and nothing else.

  • Simple Hard Drvie upgrade question

    I have an iMac 300 (no firewire) I got off eBay, and according to the boards my HD is on the way out (I can hear the whirring). Because it came off of eBay I don't have the Panther install disks, so would it be possible to upgrade to something larger