IWeb 09 any cleaner code?  Any faster loading pages?

Just wondering if iWeb 09 has improved in writing cleaner\faster code? Are the pages loading any more quickly than in earlier versions. I've got half a dozen fairly complicated sites done with whatever the last version of iWeb was before 09 ... I'm wondering if I rework them, reload and republish them with 09, whether I will see any improvement in end-user performance (faster-loading pages)?
Ben

I have upgraded to iLife '09 seems that pages load EVEN slower than before! Especially on I.E. 6 and 7 browsers. I downloaded the trial of Maestro to see if that would help. No dice.
Site after Maestro: http://www.only2degrees.com/kktmp/Only2Degrees/Home.html
you don't even want to know how much worse it was before I ran Maestro on it. .iWebSite.js seems to be what super-bloats this iWeb. I can remove it, but then it disables all the links and buttons.
the java script seems to just loop and loop and loop and loop and... well you get the picture, all through each page causing it to load slowly. I too at each new release of iWeb hope that Apple has heard us and fixed this problem. They have not. I call and they tell me they will look into it and report it, etc...
In an ideal world everyone would own a Mac and use Safari or FireFox as their browsers. But it's not ideal, sure wish there was a better way for those of us who don't hand code or have the time to hand code to be able to use iWeb or anything similar to create decent websites.
Any suggestions or answers would be awesome!
Kerilyn

Similar Messages

  • Does iWeb automatically compress photos for faster loading? Or should I do it first? Thx

    Hi everyone, when I look at the large photo in the "white" theme's Welcome template, I wonder when I drag and drop one of my photos in, does iWeb compress the photo for faster loading? Or should I compress them before adding to site?
    By "compress" I mean, make photo file size smaller! :)
    Thx! :)

    In iWeb Preferences you can optimze images on import. But I always scale most of my images to 800 x 600 pixels prior to importing. I do this in Graphic Coverter which also makes the image files smaller by taking unneeded information out of the file, which also reduces the file size.
    In Graphic Converter

  • Loading page........

    Hi,
    Is there any way to show the "Loading page......." text instead of white page when the page is loading.
    Is there any particular solution in JSP or java.

    No,
    My jsp page take some time to display the contents as it has somany database hits. In the meanwhile it shows a blank page.
    Instead of blank page, I would like to show the user that the page is loading or some message. and it should be gone as soon as the page is completely loaded and displayed what it is intended to
    Hope this is clear.
    Thanks in advance

  • IWeb site remade in Dreamweaver - cleaner code, faster loading?

    I love iWeb. But iWeb sites load slow ... and there is a LOT of messy code in there (my web experts and html whiz friends tell me this). I've tried optimizers, but found they often create odd and unpredictable glitches on individual pages. And only speed up the load process by 10%.
    I'm experimenting with designing the site in iWeb, then transferring all the materials\text\graphics into Dreamweaver ... to see if this gives me a faster loading site. I wonder if I'm wasting my time?
    And I'd love to know a way to have the iWeb sites load faster ...
    Ben

    I don't think you can pin it down to a percentage for each page. If you watch WSM as it optimizes your files you will see the saving for each file in the window - if you are quick!
    I publish my websites to Mobile Me to test them and then optimize and upload them to a commercial server. The difference in download time is noticeable.
    Where WSM really scores is when trying to get your website to load in IE - the World's Worst Browser.
    Pages that hang and lock up IE will usually load after optimizing.
    I have had the band of missing background occasionally. Usually I would just run the files again and mistakes are corrected - sometimes it takes two or three passes.
    After running the files again I launch the offending page in my browser directly from the WSM output folder (by double clicking the .html file) so that I can check it before uploading again.

  • When i put firefox in offline mode, and then click on pages saved in history , it can't load any pages or any images. i put cach size to 250mb but the problem is the same, it saves history for two months, but can't load pages.

    when i put firefox in offline mode, and then click on pages saved in history , it can't load any pages or any images. i put cach size to 250mb but the problem is the same, it saves history for two months, but can't load pages.

    Hi there,
    When I inspect your site in browser tools, I'm getting 404 errors from your page:
    [Error] Failed to load resource: the server responded with a status of 404 (Not Found) (jquery-2.0.3.min.map, line 0)
    [Error] Failed to load resource: the server responded with a status of 404 (Not Found) (edge.4.0.0.min.map, line 0)
    BarnardosIreland wrote:
    I would have thought that publishing should give a complete package that doesn't need any further edits to the code and can just be directly ftp'ed to the web - is this correct?
    In general, you are correct - but also your server does need to be properly configured (and those errors above lead me to think it may not be) to serve the file types that your uploading - but it could be something else entirely. Can you zip up your composition folder, upload it to your Creative Cloud files, set it to share, and then post a link here so I can download it? If you'd rather not share it publicly, can you PM me with a link to your composition files?
    Thanks,
    Joe

  • Loading xml data before any other code

    I am able to load xml but i want to load xml data before any other code so that i can use xml data in other time line......
    In output i am getting like that.....
    hiiiiiiiiiiiiiiiiiiiii in vertical
    xmlData.servername in verr=undefined
    hiiiiiiiiiiiiiiiiiiiii in vertical
    xmlData.servername in verr=undefined
    sunil
    sunil
    sunil
    sunil
    hiiiiiiiiiiiiiiiiiiiii in vertical
    xmlData.servername in verr=DIN66003188
    sunil
    sunil
    sunil
    sunil
    xmlData.servername   is loading so late that it is taking undefined value.
    So please suggest somthing.

    the code is like that
    import com.utils.GlobalVarContainer;
    import flash.display.Loader;
    import flash.events.Event;
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    var _xml:XML;
    var xmlData:XML = new XML();
    loadXMLFile();
    var server;
    var msgListGroup:XMLList;
        function loadXMLFile():void
       var loader= new URLLoader(new URLRequest("server.xml"));
       loader.addEventListener(Event.COMPLETE, loadedCompleteHandler);
       function loadedCompleteHandler(e:Event):void
       xmlData = new XML(e.target.data);
         GlobalVarContainer.vars.servername=xmlData.servername;
       GlobalVarContainer.vars.projectname=xmlData.projectname;
       msgListGroup=xmlData.servername;
    i want to use this GlobalVarContainer.vars.servername within other movieclip.....so i m taking global variable but it is also not working.
    this i m using in other movieclip...
    var localhost=GlobalVarContainer.vars.servername;
    var prjectName=GlobalVarContainer.vars.projectname;
    compare_btn.addEventListener(MouseEvent.CLICK,compare_btnClick);
    function compare_btnClick(e:Event){
      trace("hi");
      navigateToURL(new URLRequest("http://"+localhost+":8080/"+prjectName+"/web/vertical45.jsp?page=1"), "_self");
    and this i cant put in COMPLETE event handler function bcoz this compare_btn code is in three frame.
    plz advise.

  • Firefox 8.0 loading MSN Homepage gives error 'problems loading page' every timebut the page eventually loads - Any solution?

    Firefox 8.0 gives error message "problem loading page" when loading MSN homepage. This occurs every time.
    The error is: "Firefox can't find the server at www.%3ciframe%20marginheight=%220%22%20marginwidth=%220%22%20name=%22wxbuttonframe%22%20id=%22wxbuttonframe%22%20height=%22283%22%20src=%22http.com."
    Is there a solution?

    I get an e-mail with go-comics and the ones I want to post links to I'll open in the browser as I read them in the e-mail so I regularly have a dozen tabs open (all the same site) by the time I'm through the e-mail. Every third or fourth page will hang up on something (connecting to or waiting for) sometimes not loading a single image, sometimes loading half the page, sometimes loading everything but the comic (because, hey, why put that as the first thing to load when you've got all these ads and crap to throw at your paying customers?).
    At some point a couple of months ago I got some malware associated with trovisearch (I do not know how that got past security and java blocker but it did, probably some hidden crap in something from CNET) that somehow spoofed a page for Housecall and added five or six pieces of malware and adware. I cleaned for two days after and still can't find anything left on the computer even though I've been running scans constantly to try to make Firefox work right. I downloaded and ran a scan using Kaspersky during that time and then uninstalled it. That very well may be the cause of the post-refresh SSL issue.
    I have Spybot and Malwarebytes scan logs from the time of the infection if that would help in any way. It doesn't look like there's a way to attach .xml files in this forum, though.
    I can also run hijack this and copy and paste if that would help.
    I'm currently running Windows Defender and rely on that and Noscript and adblocker plus to keep me isolated from most attacks (I don't have those add-ons re-installed yet). I also run Peerblock because they add malicious sites and known hacking sources (like Chinanet) to what they block as well as all the fake p2p stuff that's constantly pinging the computer. If I'm treading around in perilous waters I run Sandboxie.
    Chrome is working as normal but Firefox feels like dial-up or worse right now and without adblocker I might as well be using IE.

  • Firefox 3.6.8 fails to load any page if I open Outlook2003 after starting Firefox. Outlook also fails to send/receive although I am able to load pages in another browser. These problems do not seem to occur if I open Outlook first and then firefox.

    I have used Firefox and outlook for years, but this is a recent problem. I can't recall if it started after the latest Firefox update or not. Firefox seems to work fine until I open Outlook. Then it is impossible to load any pages; the loading icon appears and persists indefinately. The only way to load pages is to shut down and restart my pc. Simply exiting and reopening Firefox does not work.
    Additionally, the send/recieve process in outlook fails. My ISP has checked my line and there is no fault. I have confirmed this, since I am able to access the internet on another browser while Firefox is hanging.
    I have tried disabling add-ons, clearing the cache and checked connection settings (I use system proxy settings), but the problem persists.
    I'd be grateful for any help.

    I have used Firefox and outlook for years, but this is a recent problem. I can't recall if it started after the latest Firefox update or not. Firefox seems to work fine until I open Outlook. Then it is impossible to load any pages; the loading icon appears and persists indefinately. The only way to load pages is to shut down and restart my pc. Simply exiting and reopening Firefox does not work.
    Additionally, the send/recieve process in outlook fails. My ISP has checked my line and there is no fault. I have confirmed this, since I am able to access the internet on another browser while Firefox is hanging.
    I have tried disabling add-ons, clearing the cache and checked connection settings (I use system proxy settings), but the problem persists.
    I'd be grateful for any help.

  • I am unable to load some web pages, I get an error message saying unable to load page due to invalid or unsupported form of compression, this happens on the BBC news page for example. Any ideas how to overcome???

    OS is Windows7. I'm using the latest version of Mozilla Firefox
    I am unable to load some web pages, I get an error message saying unable to load page due to invalid or unsupported form of compression, this happens on the BBC news page for example. Any ideas how to overcome???

    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"

  • Firefox ver. 3.6 stopped loading pages of any kind. Even Google or Facebook! Maybe it's because I tried to download a program that didn't even open up. All other browsers work normally.

    My Firefox ver. 3.6 stopped loading pages of any kind. Even Google or Facebook! I don't know how this happened. May it is because I tried to download a program that didn't even open up.... But I don't know how to make it work. All other browsers work normally, and I'm scanning for viruses even though my anti-virus did not warn me of anything... I tried to download a keygen and this is what happened. I can't figure out what it is. Not a connection problem. I even tried to uninstall an re-install firefox, but still nothing worked.

    Your issue may be caused by Malware. You can run and update the following '''free''' anti virus software:
    1. Malwarebytes (Free version) - http://www.malwarebytes.org
    2. Spybot Search & Destroy - http://www.safer-networking.org
    3.Spyware Terminator - http://www.spywareterminator.com
    In addition, there are a number of forums you can use to help get rid of your infection. These include:
    *http://www.bleepingcomputer.com/forums/
    *http://forums.spybot.info/
    *http://www.spywarewarrior.com/index.php

  • Windows Vista Home ( with SP2) constantly reporting that Safari 5.1.2 has crashed ( usual Windows prompt to close program) yet Safari is still running although loading pages slowly. Any one seen this recently ( note no recent install or changes to Windows

    Windows Vista Home ( with SP2) constantly reporting that Safari 5.1.2 has crashed ( usual Windows prompt to close program) yet Safari is still running although loading pages slowly. Any one seen this recently ( note no recent install or changes to Windows

    Windows reports that Safari stopped working . Windows Task Manager shows webkit2webprocess.exe  process still running even after I respond to Windows prompt and close Safari ( Safari continues running after this action )

  • I uninstalled Norton 360 under windows xp and now I'm getting this problem that firefox will no longer load pages. IE and Outlook still work and I can access the internet with them, I can ping any website I like successfully but Firefox won't load any pa

    I uninstalled Norton 360 under windows xp and now I'm getting this problem that firefox will no longer load pages. IE and Outlook still work and I can access the internet with them, I can ping any website I like successfully but Firefox won't load any pages ... N
    == This happened ==
    Every time Firefox opened
    == I uninstalled Norton 360 ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)

    I found a fix for this, not only firefox but several other networking programs were broken as well (Outlook and IE were ok for some reason) so I reasoned that the Norton uninstall was incomplete somehow - I had done it from the add/remove programs in the control panel. Sure enough that's not enough to release Norton's tentacles in your system, there's an uninstall tool on their website (a whole set of them actually) that managed to carve it out completely and after a restart everything was back to normal. My machines will definitely be Norton-free from now on ... N

  • Safari version 5.1.2 keeps loading pages slowly and eventually freezing. Any ideas on what the problem is?

    I recently updated safari to version 5.1.2. And now all the time it loads everything frustratingly slow and then eventually freezes with the spinning wheel icon, forcing me to restart the computer (MacBook pro 2009). I am running Mac OSX Lion latest version.

    Several things to try...
    From your Safari menu bar click Safari / Preferences then select the Security tab. Deselect: Enable plug ins Quit then relaunch Safari. If Safari speeds up loading pages, troubleshooting help for > Unsupported third-party add-ons may cause Safari to unexpectedly quit or have performance issues
    Check Safari / Preferences - Extensions. If you have any installed, turn that off, quit, relaunch Safari.
    Quit Safari. Open a Finder window select your Home folder in the Sidebar on the left. Then open the Library folder, then the Caches folder, then the com.apple.Safari folder. Move the cache.db file from the com.apple.Safari folder to the Trash. Relaunch Safari.
    From the Safari menu bar click Safari / Reset Safari. Select the top 7 buttons, click Reset.
    Check for Login Items:  Open System Preferences/Accounts then select the Login Items tab. Delete any files or apps you have listed there. And go to /Library/Startup Items. Move any files in the Startup Items folder to the Trash.
    Right or control click the MacintoshHD icon. Click Get Info. In the Get Info window you will see Capacity and Available. Make sure you always have a minimum of 15% free disk space.
    Try Safari in another user account. Same problems there, then log back into your admin account, launch Disk Utility.  /Applications/Utilities
    Select MacintoshHD in the panel on the left then select the First Aid tab.
    Click: Verify Disk  (not Verify Disk Permissions). If the startup disk needs repairing, follow the instructions for Using Disk Utility to verify or repair disks

  • Is any way in CFML send cfmail not code but rather a page.cfm

    is any way in CFML send cfmail not code but rather a page.cfm... one way is convert page.cfm (and server side code) to code lines and append in cfmail? if yes, how this? or any other way for first?

    shows below with eight smaller boxes 7px square about at the top, space and after the html....boxes can not copied  
    used:
    <cfsavecontent variable="theHTML">
         <cfinclude template="index.cfm">
    </cfsavecontent>
    <cfmail from="[email protected]" subject="Confirmation" to="[email protected]"><cfoutput>#trim(theHTML)#</cfoutput></cfmail>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/storeTempl1.dwt" codeOutsideHTMLIsLocked="false" --> <head>
    <!-- InstanceBeginEditable name="doctitle" --><meta name="google-site-verification" content="YMuLX_G2GYYC5vHgAVqEIoOE7xw6CBU6nKOaXXuJUyE" /> <title>Home Page - PolisPhotos.com new Layout Nov. 2010</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Script-Type" content="text/javascript" /> <meta name="description" content="new Layout - NOV 2010 - Photo Images of Polis, Pafos  District, Cyprus" /> <meta name="abstract" content="Polis, CY Photo Prints & Downloads Online Shop" /> <meta name="keywords" content="polis photos, polis fotos, polis chrysochous, pafos photos, paphos photos, Cyprus photos, polis images, polis fotos, polis chrysochous photos, polis chrysochous images, pafos images, paphos images, Cyprus images, polis cyprus, polis holidays, polis gifts, polis photos shop, polis shop, polis online, polis shop online" /> <meta name="robots" content="index,follow" /> <meta name="distribution" content="Global" /> <meta name="author" content="L web Dev net" /> <meta name="copyright" content="All contents copyright(c) 2011 of www.polisphotos.com" /> <meta name="Resource-Type" content="Document" /> <meta name="generator" content="Dreamweaver CS4" /> <meta name="language" content="EN-US" />
    <!-- InstanceEndEditable -->

  • Any Searches at any Search site if I dont CLICK a site within (2) seconds all these pages load up that has nothing to do whith my friggin search in the 1st place how do I fix this ?

    Any Searches at any Search site if I dont CLICK a site within (2) seconds all these pages load up that has nothing to do whith my friggin search in the 1st place how do I fix this ?

    Thanks for the quick advice!
    Unfortunately, I am still unable to open my core productivity apps, namely Skype and Evernote. Twitter, as well, could not start. But interesting quick fix though, I never knew you could do that.
    Here's the error log after the restart:
    What else should I try?

Maybe you are looking for

  • ITunes 11 not responds when it tries to verify iPod Classic

    I have just installed iTunes 11 (11.0.3.42 i think) on my laptop but as soon as I connect my iPod Classic iTunes tries to verify the iPod and just hangs. If I disconnect my iPod iTunes will start working again. I can't click on anything within iTunes

  • Report: Fetching data more time

    HI, My report is facing the performance issue. Actually for a PO I am getting the BELNR from the EKBE. for all the BELNR in EKBE where BWTYP = 'Q'. I need to get the Invoice No. This I am fetching from BKPF based on AWKEY as input. When I saw in debu

  • Various wireless connection issue

    Hi, i am Drei. one of the technical support of HP for Mac computers / OS  Let's name the routers that have issues with the connection or even declining the printer to gain connectivity to it 1. Xfinity from comcast2. Arris from time warner3. Linksys,

  • Getting error on Lr 4.1 download - suggestions?

    I have Lightroom 4.0.  I have been getting message that Lr 4.1 is ready to download.  Every time I go to download, it goes through the download process, but rather than getting an executable .exe file, I get the following message "Lightroom_4_LS11_wi

  • IDOC and BAPI interfaces.

    Hi SAP experts, Can anydody please help me out regarding the SAP interfaces e.g. IDOC, BAPI if any other,,,,,,,,,, Please give me some examples also. Thanks & regards Amar Adam