Iweb Doesn't Work in Internet Explorer?

I threw my site onto the server and opened it to test it on a pc using internet explorer....The pages dont work...stuff doesnt show.....and the navigation link is all wack...try it....www.totalautomationav.com

Well not really. Even if you did "convert" these images, iWeb would overwrite them again as soon as you published again. You see, iWeb converts to PNG anytime you let iWeb do anything to an image.
The secret is to have your images "iWeb-ready" before dropping them into iWeb. That means using some other program to properly size your images and apply any effects to them (like shadows, rotation, reflections, frames, etc). It's a pain in the neck, but it works. This is a limitation of iWeb that we all have to work around for IE users.
If it's any consolation to you, the next version of Internet Explorer comes with full PNG support and will bring the unwashed masses of PC users into a more modern era of browser technology (if the technology hasn't advanced even more by that time).

Similar Messages

  • Muse CC 2014.1 slideshow--why doesn't work in Internet Explorer on a PC?

    I have created several slideshows on my Muse websites but the one I just did yesterday doesn't work on Internet Explorer. It works on all other browsers though. Any ideas why or perhaps a workaround?

    Well not really. Even if you did "convert" these images, iWeb would overwrite them again as soon as you published again. You see, iWeb converts to PNG anytime you let iWeb do anything to an image.
    The secret is to have your images "iWeb-ready" before dropping them into iWeb. That means using some other program to properly size your images and apply any effects to them (like shadows, rotation, reflections, frames, etc). It's a pain in the neck, but it works. This is a limitation of iWeb that we all have to work around for IE users.
    If it's any consolation to you, the next version of Internet Explorer comes with full PNG support and will bring the unwashed masses of PC users into a more modern era of browser technology (if the technology hasn't advanced even more by that time).

  • Response.sendRedirect doesn't work with Internet Explorer

    I do posts like advised here: http://www.theserverside.com/tt/articles/article.tss?l=RedirectAfterPost. GET-POST-REDIRECT-GET. Now I have a problem when do redirecting to the same page in Internet Explorer. It works good with Mozilla Firefox but not with Internet Explorer. When user click to "Enable"/"Disable" link and do submit, application makes changes on the database. Changes occurs, but redirect to the page doesn't work. When I refresh page, I see that, the changes was occurred. When I use Mozilla Firefox with same JSP, there is no need to refresh page, because, redirect works. When I change redirect URL to other, for example http://www.google.com/, redirect doesn,t work in Internet Explorer too.
    Code of users.jsp JSP:
    <%@ page import="az.ub.ccs.beans.User" %>
    <%@ page contentType="text/html;charset=UTF-8" language="java" %>
    <%@ page errorPage="error.jsp" %>
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <jsp:useBean id="bc" scope="page" class="az.ub.ccs.beans.BreadCrumb" />
    <jsp:useBean id="user" scope="request" class="az.ub.ccs.beans.User"/>
    <c:if test="${sessionScope.active == null}"><c:redirect url="login.jsp" /></c:if>
    <%
       if(request.getParameter("stateAction") != null)
          int state = (request.getParameter("stateAction").equals("enable")) ? 0 : 1;
          User.changeUserState(Integer.parseInt(request.getParameter("itemID")), state);
          response.sendRedirect("users.jsp");
          //response.setStatus(HttpServletResponse.SC_SEE_OTHER);
          //response.setHeader("Location", "users.jsp");
       bc.add("Users");
    %>
    <jsp:include page="top.jsp" flush="true">
       <jsp:param name="breadCrumbString" value="${bc.breadCrumbsAsHTML}"/>
       <jsp:param name="pageTitle" value="Users"/>
    </jsp:include>
    <tr>
       <td>
          <table border="1" width="100%">
             <tr class="tableHeader">
                <td>ID</td>
                <td>&#1048;&#1084;&#1103; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103;</td>
                <td>&#1051;&#1086;&#1075;&#1080;&#1085;</td>
                <td>&#1053;&#1086;&#1084;&#1077;&#1088; &#1075;&#1088;&#1091;&#1087;&#1087;&#1099;</td>
                <td>&#1053;&#1072;&#1079;&#1074;&#1072;&#1085;&#1080;&#1077; &#1075;&#1088;&#1091;&#1087;&#1087;&#1099;</td>
                <td>Email</td>
                <td>&#1053;&#1086;&#1084;&#1077;&#1088;</td>
                <td colspan="2">&#1044;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1077;</td>
             </tr>
             <c:forEach items="${user.userList}" var="user">
             <tr>
                <td align="right">"${user.userID}"</td>
                <td><c:out value="${user.userName}"/></td>
             </c:forEach>
             <tr>
                <td colspan="7"> </td>
                <td colspan="2"><a href="addEditUser.jsp">[Add new]</a></td>
             </tr>
          </table>
          <form name="stateForm" method="post" action="users.jsp">
             <input type="hidden" name="itemID"/>
             <input type="hidden" name="stateAction"/>
          </form>
       </td>
    </tr>
    <jsp:include page="bottom.jsp" flush="true"/>

    I use HttpWatch to see request and response details. Link to the report file of HttpWatch http://tasadar8.googlepages.com/CCSHttpWatch.rar

  • SharePoint Apps doesn't work in Internet Explorer

    SharePoint Apps Internet Explorer
    Hi all,
    we are development SharePoint-hosted app, we have a problem that works in all the browsers except Internet Explorer (sometimes). 
    The strang is that when you debug with Visual Studio or IE developer toolbar, the app if it works.
    I add the sites to the same security zone in Internet Explorer and all it says this article and doesn't work.
    http://msdn.microsoft.com/en-us/library/office/jj612823(v=office.15).aspx
    This is the code where I do the call:
    $(document).ready(function () {
    var call = getInfo();
    call.always(function (EmployeesInfo) {
    if (EmployeesInfo != "ERROR") {
    var t = JSON.parse(EmployeesInfo);
    $get("EmployeeInfoDiv").innerHTML = fillEmployeeInfo(t);
    function getInfo() {
    var def = new $.Deferred();
    var executor;
    var hostweburl;
    var remotedomain;
    remotedomain = "http://sharepointdev:8090/";
    hostweburl = decodeURIComponent(getQueryStringParameter("SPHostUrl"));
    executor = new SP.RequestExecutor(remotedomain);
    executor.iFrameSourceUrl = "CustomProxy.aspx?SPHostUrl=" + hostweburl;
    executor.executeAsync(
    url: remotedomain + "SimpleContent.aspx",
    method: "GET",
    headers: { "Accept": "text/plain" },
    success: successHandler,
    error: errorHandler
    function successHandler(data) {
    var EmployeesInfo = data.body;
    def.resolve(EmployeesInfo);
    function errorHandler(data, errorCode, errorMessage) {
    document.getElementById("TextData").innerText =
    "Could not complete cross-domain call: " + errorMessage;
    def.reject("ERROR");
    return def.promise();
    Anyone know it is because this issue? 
    Thanks and regards,
    rmves

    Hi rmves,
    According to your description, my understanding is that your SharePoint hosted app not work in Internet Explorer sometimes.
    I suggest you can try as followings:
    1. When you debug with Internet Explorer Developer Tools, you can check whether there is any error in the script.
    2. I suggest you can check the web request using Fiddler when the app work correctly. Then you can check if there is something wrong when the app not work in Internet Explorer.
    Best Regards
    Zhengyu Guo
    TechNet Community Support

  • IQ512sc doesn�t work in Internet Explorer, Google Chrome and some parts in Safari.

    Hello.
    Our Toucshsmart IQ512 has stopped working in Internet Explorer and Google Chrome. Cannot get the writing-fields active. Some functions are also missing in Safari.
    Do you have a solution? I will really keep the PC, it is perfect in the kitchen.

    Hello LarM:
    I sent you an email. HP would not like it if I posted here.They would only remove it from here. That's what they do best. You try to help others out. They do not like your advise or agree to it they remove it because it makes HP Technical Support look bad. I would add more but it would be removed. That's why I stop posting here. frrw.

  • Flash doesn't work on Internet Explorer after updating

    Hello everybody
    I work in a professional environment
    I have a Terminal server Windows 2008 R2 and I update Flash player to 11.5.502.146 (usinag command change user /install like usual)
    Since this update, Internet Explorer is very very slow and we can not use it anymore
    If I disable Flash player, it works perfertly
    I tried to uninstall it / reboot / reinstall it but it doesn't work
    For the moment we use Firefox, but we need Internet Explorer for our intranet
    Do you have any idea ?
    Does anyone know how I can get an older version 11.5 ?
    Thanks for your help
    Aurelie

    Hi Aurelie,
    Could you give our 11.6 beta a try to see if that improves the situation?  If not, try reverting back to a known working previous version (or our latest 10.3) to verify it's directly related to 11.5.502.146.
    http://labs.adobe.com/downloads/flashplayer.html
    How do I revert to a previous version of Flash Player?
    Thanks,
    Chris

  • FingerPrint Utility - OmniPass - Doesn't work with Internet Explorer 7

    OmniPass website password saving/autologin for Internet Explorer 7 Beta 2 doesn't work correctly (it seems microsoft has changed the way their forms work for username and password submission etc)
    OmniPass loaded slow in the earlier version it actually took about 30seconds or so for the FingerPrint dialogue to popup at logon, once i upgraded to v3.50.43 it loads in 10 seconds now, however when i first bought my notebook it use to load immediately, now that i've installed programs it's slower (not many programs).
    Now i have done full registry cleans, spyware and virus scans, full cleanups, defrags etc...
    I have tried editing the registry key for the OmniPass service - all with out success. It still hasn't gotten any faster.
    Anyone got any ideas?

    Hi
    The fact is that the Internet Explorer 7 is not official on the market and Toshiba doesnt support any Beta versions. In this case if you use any test versions on your notebook so you can do it only at your own risk!
    Im sure that if you use the IE6 and other applications from the Toshiba recovery CD, all should works properly.

  • IWeb 09 not working with Internet Explorer

    Spent quite a bit of time creating a site in iWeb 08, which worked fine with Firefox and IE. Decided to upgrade to the '09 version because of few new features (widgets, etc.) Update install went well. No problems using Firefox and Safari but IE now will not work.
    Site (home page) can be accessed using IE but links to other pages are not live. A real pain. I did nothing new to site (e.g., did not add widgets, photos, files, etc.) except to add a comment to my blog. A friend told me about the problem. Unsure what version of IE he is using but I tried it using Parallels running XP with IE v.6 and had the same problem.
    Do I need to reinstall the '08 version? If so, will it just overwrite '09 or is there some other procedure required to install an earlier version? Any help would be greatly appreciated. Thanks.

    Didn't intend this to be as much a venting as a warning to others.
    The iLife 09 suite is very flawed. And it's not just iWeb.
    iPhoto does not deliver. Face recognition failed to correctly identify even one person in over 250 photos. Not a minor thing since it was trumpeted so loudly at it's announcement.
    iMovie corrupted the preview of a project I was working on in a prior version.
    Turned it gray and 'staticky'. Starting over now.
    I don't see quick fixes coming down the pipe because Apple has been absent from any news or comments for over a month.
    So if someone is contemplating an upgrade to iLife09 and happens upon my rant, maybe I've save someone from wasting their money.
    As far as knowing what I'm doing?
    I've been in IT for 20 years. Unix, Linux, Windows, backup/recovery, etc... I've led a very rich IT life. I bought a Mac because of the 'Just works' promise, not to add another OS to my debugging repertoire.
    I can get around the FTP problem manually (another problem with iWeb), but the ftp on 09 was a big reason I purchased it. And the problem with IE and Firefox not being able to even view any iWeb 09 sites now? That's going to be a bit more difficult to fix and is a show stopper.
    Apple has not responded to anyone's support questions (including mine), and it's been about a month.
    Not even a "Hey customers, we know about the problems and are getting right on it!".
    So, when something like this happens, I like to put the word out there on every medium possible. kind of warns people and hopefully get's back to Apple.
    And if Apple doesn't monitor these Support Discussions, they really should.
    At the very least, my comments may bring up issues others have yet to discover.
    And it makes me feel better...

  • Popup doesn't work in Internet Explorer

    Hi everyone
    My site is www.caveataudiens.net, in the music section there
    is a button called Jukebox which has this code to open a popup
    window:
    on (release) {
    getURL ("javascript:NewWindow=window.open('
    http://www.caveataudiens.net/music/mp3player.html','Caveat
    Audiens','width=300,height=420,left=0,top=0,toolbar=No,location=No,scrollbars=No,status=N o,resizable=No,fullscreen=No');
    NewWindow.focus(); void(0);");
    The popup works fine in Firefox, but when I try it in
    Internet Explorer the window crashes and closes and I get this
    error message:
    DrWatson Postmortem Debugger has encountered a problem and
    needs to close. We are sorry for the inconvenience.
    Any idea how I can fix the problem so the popup will open in
    Internet Explorer too?
    Many thanks

    What have you done to troubleshoot this problem? Can you get
    ANY popup to
    work?
    "Lyle Christine" <[email protected]> wrote
    in message
    news:f31a98$89n$[email protected]..
    > Hi everyone
    >
    > My site is www.caveataudiens.net, in the music section
    there is a button
    > called Jukebox which has this code to open a popup
    window:
    >
    > on (release) {
    > getURL
    > ("javascript:NewWindow=window.open('
    http://www.caveataudiens.net/music/mp3player
    > .html','Caveat
    >
    Audiens','width=300,height=420,left=0,top=0,toolbar=No,location=No,scrollbars=No
    > ,status=No,resizable=No,fullscreen=No');
    NewWindow.focus();
    > void(0);");
    > }
    >
    > The popup works fine in Firefox, but when I try it in
    Internet Explorer
    > the
    > window crashes and closes and I get this error message:
    >
    > DrWatson Postmortem Debugger has encountered a problem
    and needs to close.
    > We
    > are sorry for the inconvenience.
    >
    > Any idea how I can fix the problem so the popup will
    open in Internet
    > Explorer
    > too?
    >
    > Many thanks
    >

  • Web.SHOW_DOCUMENT('URL', '_blank') doesn't work for Internet Explorer 7

    Hello,
    In my company, we are using Oracle Forms 10.1.2.0.2.
    After inserting a URL, users are logged in. There is one page in the application that uses a button to open a PDF in a new page.
    Code behind this button:
    web.SHOW_DOCUMENT('URL', '_blank');
    For internet explorer 6, there is no problem, but last week, some users have upgraded their browser to Internet Explorer 7. When they now push the PDF button, nothing happens. No error is given.
    Could someone please help me..

    Actually, I think a couple of my colleagues have seen this with IE7 recently... It seemed to be related to individual PCs rather than anything in our software, and was sort-of sporadic. I think on one of the PCs, there'd been an update to the Google toolbar and that had caused problems (and of course, if you have Google toolbar, that has its own popup blocker that you need to disable for the site in question.)
    Sorry to be vague, but I would look for any other browser plug-ins on the machine that might be causing issues.
    James

  • Reader doesn't work in Internet Explorer

    Greetings,
    When I click on a PDF link in Internet Explorer 11, I get the following error:
    This webpage wants to run 'Adobe PDF Reader' which isn't compatible with Internet Explorer's enhanced security features. If you trust this site, you can disable Enhanced Protected Mode for this site and allow the control to run.
    I think the problem is that the Adobe Reader ActiveX control is 32-bit, whereas Internet Explorer is 64-bit. Is there a 64-bit version of the ActiveX control?
    Thanks,
    Shane.

    The article says its possible to have an individual tab fall-back to 32-bit by tweaking the registry.
    So... Adobe Reader's ActiveX controls don't support 64-bit?
    Shane.

  • New flash player 11 update doesn't work with internet explorer 8

    I have Windows 7 and IE 8. This is a home desktop computer.
    When the latest update of FlashPlayer 11.5.502.146 was automatically installed on Jan 9, IE8 stopped working. I can navigate to a site, but then it just freezes. I can not click any toolbar or other buttons or links--I can not even close IE--I have to use task manager. If I disable Flashplayer, IE works fine, but then of course no content can be displayed. If I go to a site and then enable Flashplayer, I can't click on anything again, so that doesn't work. HELP. Does the newest update not work with IE8?

    I have a similar problem. I've Win XP SP3 with IE 8. For last few months I've noticed that Flash Player is not able to play flash audio/video on a webpage i.e., upon visiting a page the flash player starts loading but it does not finish - a circle keeps rotating - player does not manage to display 'Play' button. I've uninstalled and reinstalled Flash Player 11.5.502.146. Also, installed Flash Player 11.6.602.161 from above link. But, with same result.
    Same behaviour is repeated in FireFox 18.0.1 with Flash Player 11.5.502.146. It seems that something else is not allowing flash player to play. I've latest Java 7 Upd 13, ZoneAlarm 11 and Avast 7.0.1474.
    (Note: I've another PC with Win XP SP3, IE 8 and FireFox 18.0.1 and Flash Player 11.5.502.146 works well. It has Java 7 Upd 13. It has ZoneAlarm 11 and Windows Defender AV)
    Can anyone help?

  • KeyListener not working In Internet Explorer

    I made a small game
    Play it here
    It works fine in Firefox but the KeyListener doesn't work in Internet Explorer.
    I include the applet with this code:
    <!--[if !IE]>-->
    <object classid="java:Shotgun.class"
            type="application/x-java-applet"
            id="ShotgunApplet" >
    <!--<![endif]-->
    <object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
            id="ShotgunAppletIE" >
             <param name="code" value="Shotgun" />
    </object>
    <!--[if !IE]>-->
    </object>
    <!--<![endif]-->But also tried this:
    <applet id='ShotgunApplet' code='Shotgun.class'></applet>
    The full source code is available from here
    Thanks in advance,
    Frederik Vanderstraeten

    --- Solved ---
    Had to remove the e.consume(); in mousePressed()

  • AS3 image upload & encode - doesnt work with Internet explorer.

    So I was looking for a way our clients to upload their Logo
    into a flash application we are designing and I found
    -this-.
    However, I later found that it doesn't work in Internet Explorer,
    however does work in every other browser. Is there something in the
    AS3 code I am missing? :(

    This is a oracle maps bug. The workaround is to add the image as a separate marker foi.
    pointClicked = MVSdoGeometry.createPoint(mouseLocationX, mouseLocationY, 8307);
    pointClickedFOI = new MVFOI("ID:" + (FOICount++), pointClicked, "MY.STYLE.NAME");
    pointClickedFOI.setWidth(48);
    pointClickedFOI.setHeight(48);
    mapview.addFOI(pointClickedFOI);
    markerFOI = MVFOI.createMarkerFOI("ID:" + (FOICount++), pointClicked, "./pin.png");
    mapview.addFOI(markerFOI );

  • Zzxc: When I click on a link in my email it doesn't go to the page. It is a blank page. It will work in internet explorer. When I sign in at certain sites, it doesn't redirect. Why is that?

    <blockquote>Locked by Moderator.
    Please continue the discussion in this thread: [tiki-view_forum_thread.php?locale=en-US&comments_parentId=688606&forumId=1]
    Thanks - c</blockquote>
    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    zzxc: When I click on a link in my email it doesn't go to the page. It is a blank page. It will work in internet explorer. When I sign in at certain sites, it doesn't redirect. Why is that?
    I am still having the same problem. I did what you said to do, but it didn't help. I cleared all of firefox's cache and still doesn't work.
    == Firefox version
    ==
    most recent
    == Operating system
    ==
    Windows 7
    == Plugins installed
    ==
    just windows,itunes, flash

    I have not found a way for the email hypertext to go to the FaceBook App, but I no longer click on the hypertext as I know whatever information or posting it is directing me to in FaceBook will show up when I open my FaceBook App.  I also have noticed that many pop-ups on the Browser don't actually know if you already have the software they are promoting. 

Maybe you are looking for

  • Freetype - once and for all

    OK, so according to everyone, this cant be fixed with freetype. We have to fix every freetype-requiring package we need to compile. I dont like this, but I guess I have no choice. I dont know C, so I can't really do this on my own. Could the people w

  • XY graph response slows with dashed plot

    I have an xy graph displaying multiple plots. I find that if at least one of the plots uses a dashed line as the line type, and that this plot has zero values displayed, then the response of the graph slows significantly. Redraws seem to take 5 to 10

  • How to change song title

    Today I downloaded Nickelback's new album from itunes and one of the songs is listed as the song previous to it, go figure. Anyway, just wanted to know if anyone knew how I could change it. I tried double clicking it and nothing and of course right c

  • Deployment error:Error Code:-17500, Unknown System Error in TestStand - Read Seq Files in Workspace.vi-

    Help! When trying to deploy a test system i got the following error: Error Code:-17500 Unknown System Error in TestStand - Read Seq Files in Workspace.vi->TestStand - Find Dependent Files.vi->TestStand - Add File and Dependent Files.vi->TestStand - A

  • OLE Library Interface

    Hi, I insert an OCX element ,and i insert the object "Microsoft Web Browser".Then import OLE Library Interfaces and i choose the Shell.explorer.2 to display a pdf file. It's work properly. Can i use a procedure or a property from OLE Library to inser