Long page loads - spinny icon - constantly

I know this problem is probably unique to me, but Dreamweaver
CS3 cannot make a simple change to a page, even when adding text
without the "spinny" please wait icon (the rainbow colored one on
Mac) -- I'm fully updated, I'm running a dual-core 2.66GHZ with 3
GB of ram.. Mac OS 10.4.11 --- I have troubleshooted by NOT
connecting to the remote FTP site.. the stalling still happens, I
do have "put on save" UNCHECKED so it doesn't even connect to any
FTP site at all, yet it waits with the spinny icon after any change
I do. I guess my question is: "Does anyone have any idea how
dreamweaver reloads a page, or any debugging that can be done
through dreamweaver as to why it's stalling contantly"?

We had the same problem. We got the best results from these changes:
1. Optimize your media. Compress your audio farther than Apple recommends.
2. If you are specifying any audio files in the XHTML, remove them. Code like this was especially problematic for us:
<audio id="myid" src="audio/myaudio.m4a" ibooks:pause-readaloud="true" />
3. If you are using javascript, carefully consider where to reference the javascript file, in the head, body or foot. They cause different perceptions of page loading.

Similar Messages

  • Android long page loading

    I have a long page with buttons that change an object from one state to another.
    This does not work until the entire page has been viewed.
    Navigate to the page, and the buttons don't work. Scroll to the bottom and now they work.
    I'm sure i missed the memo on this. Is there a resolve/workaround?

    The primary reason your site loads slowly is the amount of unnecessary image data.
    When an image is brought into Muse via File:Place (or import in a slideshow) the exact size of the image is dictated by it's size in the Muse Design view and Muse will resize the image to that exact size during Publish/Export/Upload and encode as JPEG when possible, otherwise PNG.
    When an image is brought in via import to be a background fill, Muse may or may not resize the image smaller. If the image is a background on a object that contains text or has other items on top of it, then the item may change height (or in some cases both height and width) in the browser due to changes in set layout between browsers, dynamic content, or other changes. When using background images the task currently falls to the Muse user to size the image appropriately before importing it into Muse. (That's something I'd like to see us revisit for the next release of Muse.)
    Many of the images on your home page are background images that are much larger (in terms of dimensions) than they appear on the web page. There are also a few images with transparent masks that result in the images being export as PNG. If these images where opaque (with white backgrounds) Muse could convert them to JPEG and they'd likely be 1/5th their current file size, or less. If they are resized to the pixel dimensions they're being used at in Muse, they'd likely drop by an additional factor of 10 (or more) in size.
    For example, the Mirage Tandem Island sailboard image (tendem-island-studio-3-4-full.png) on the home page is currently a 3.1 Mb PNG image that 2177x3000 pixels in dimensions. If a white background is added to the image and it's resized to 135x186 (the size it's being used at) and Saved for Web from Photoshop as a high quality JPEG the new file is 7k.

  • Long page load / cfquery issue

    Hi all,
    I am developing a CFM page that is essentially a data dump of data that resides in our AS400.  This is really my first coldfusion project, so I am still learning a few ins and outs of the language.  I have a query, and it's taking over 15 minutes to return data.  Is there a tag I could use to speed this along, or is my syntax wrong, or any query optimization suggestions?  When I remove my <cfquery tag> everything loads fine. Any assistance would be appreciated.  Thanks in advance!!!  Here is my code:

    It might help if I remember to paste in my code
    <cfquery name="GetData" datasource="Web_Catalog" result="GetDataResult" >
            SELECT    DISTINCT WSFILE001.DEL1.DDEAL## AS DEAL## , WSFILE001.DEL1.DVER## AS VERSION##, WSFILE001.PRD1.PGROUP AS GROUP, WSFILE001.PRD1.PPROD## AS ITEM##,
            WSFILE001.PRD1.PDESC AS PRODUCT_DESC, WSFILE001.PRD1.PSIZE AS SIZE,
            (SELECT MAX(WSFILE001.COS1.CFOBP) FROM WSFILE001.COS1 WHERE WSFILE001.PRD1.PPROD## = WSFILE001.COS1.COSPRD AND WSFILE001.COS1.COSDAT < '1090505')   AS FOB,
            (SELECT MAX(WSFILE001.COS1.CFRTP) FROM WSFILE001.COS1 WHERE WSFILE001.PRD1.PPROD## = WSFILE001.COS1.COSPRD AND WSFILE001.COS1.COSDAT < '1090505') AS FREIGHT,
            WSFILE001.COS1.CPURCP AS PA,
            (SELECT MAX(WSFILE001.COS1.CDEIM) FROM WSFILE001.COS1 WHERE WSFILE001.PRD1.PPROD## = WSFILE001.COS1.COSPRD AND WSFILE001.COS1.COSDAT < '1090505') AS OCEAN_FREIGHT,
            WSFILE001.COS1.CDUTYP AS IMPORT_DUTY, WSFILE001.COS1.CPBANK AS BANK, WSFILE001.COS1.CMISC AS MISC, WSFILE001.COS1.COTAXP AS FEDERAL_TAXES, WSFILE001.COS1.CSTAXC AS STATE_TAXES,
            (SELECT MAX(WSFILE001.PRC1.PSEL8P) FROM WSFILE001.PRC1 WHERE WSFILE001.PRD1.PPROD## = WSFILE001.PRC1.PRCPRD AND WSFILE001.COS1.COSDAT < '1090505') AS LANDED,       
            (SELECT MAX(WSFILE001.PRC1.PSEL1P) FROM WSFILE001.PRC1 WHERE WSFILE001.PRD1.PPROD## = WSFILE001.PRC1.PRCPRD AND WSFILE001.COS1.COSDAT < '1090505') AS LIST_PRICE,
            WSFILE001.NDEP1.NPRC01 AS DA,
            ((SELECT MAX(WSFILE001.PRC1.PSEL8P) FROM WSFILE001.PRC1 WHERE WSFILE001.PRD1.PPROD## = WSFILE001.PRC1.PRCPRD AND WSFILE001.COS1.COSDAT < '1090505') - WSFILE001.NDEP1.NPRC01) AS NETCOST,
            WSFILE001.DEL1.DM1 AS QUANTITY
            FROM     WSFILE001.DEL1, WSFILE001.PDEL, WSFILE001.PRD1, WSFILE001.COS1, WSFILE001.PRC1, WSFILE001.NDEP1, WSFILE001.DIS1
            WHERE    
                WSFILE001.DEL1.DDEAL## > '71' AND
                WSFILE001.DEL1.DDEAL## < '1400' AND
                WSFILE001.PRD1.PGROUP = WSFILE001.PDEL.PDGRUP AND
                WSFILE001.PRD1.PPROD## = WSFILE001.COS1.COSPRD AND
                WSFILE001.PRD1.PPROD##  = WSFILE001.NDEP1.NETPRD AND   
                WSFILE001.PRD1.PPROD## = WSFILE001.PRC1.PRCPRD AND
                WSFILE001.PRD1.PSUPPL = WSFILE001.PDEL.PDCMP AND
            WSFILE001.DEL1.DDEAL## > 0 AND WSFILE001.DEL1.DDEAL## =
            COALESCE  (CASE WHEN WSFILE001.PDEL.PDX = 0 THEN NULL ELSE WSFILE001.PDEL.PDX END,
                                  CASE WHEN WSFILE001.PDEL.PDW = 0 THEN NULL ELSE WSFILE001.PDEL.PDW END,
                                  CASE WHEN WSFILE001.PDEL.PDV = 0 THEN NULL ELSE WSFILE001.PDEL.PDV END,
                                  CASE WHEN WSFILE001.PDEL.PDU = 0 THEN NULL ELSE WSFILE001.PDEL.PDU END,
                                  CASE WHEN WSFILE001.PDEL.PDT = 0 THEN NULL ELSE WSFILE001.PDEL.PDT END,
                                  CASE WHEN WSFILE001.PDEL.PDS = 0 THEN NULL ELSE WSFILE001.PDEL.PDS END,
                                  CASE WHEN WSFILE001.PDEL.PDR = 0 THEN NULL ELSE WSFILE001.PDEL.PDR END,
                                  CASE WHEN WSFILE001.PDEL.PDQ = 0 THEN NULL ELSE WSFILE001.PDEL.PDQ END,
                                  CASE WHEN WSFILE001.PDEL.PDP = 0 THEN NULL ELSE WSFILE001.PDEL.PDP END,
                                  CASE WHEN WSFILE001.PDEL.PDO = 0 THEN NULL ELSE WSFILE001.PDEL.PDO END,
                                  CASE WHEN WSFILE001.PDEL.PDN = 0 THEN NULL ELSE WSFILE001.PDEL.PDN END,
                                  CASE WHEN WSFILE001.PDEL.PDM = 0 THEN NULL ELSE WSFILE001.PDEL.PDM END,
                                  CASE WHEN WSFILE001.PDEL.PDL = 0 THEN NULL ELSE WSFILE001.PDEL.PDL END,
                                  CASE WHEN WSFILE001.PDEL.PDK = 0 THEN NULL ELSE WSFILE001.PDEL.PDK END,
                                  CASE WHEN WSFILE001.PDEL.PDJ = 0 THEN NULL ELSE WSFILE001.PDEL.PDJ END,
                                  CASE WHEN WSFILE001.PDEL.PDI = 0 THEN NULL ELSE WSFILE001.PDEL.PDI END,
                                  CASE WHEN WSFILE001.PDEL.PDH = 0 THEN NULL ELSE WSFILE001.PDEL.PDH END,
                                  CASE WHEN WSFILE001.PDEL.PDG = 0 THEN NULL ELSE WSFILE001.PDEL.PDG END,
                                  CASE WHEN WSFILE001.PDEL.PDF = 0 THEN NULL ELSE WSFILE001.PDEL.PDF END,
                                  CASE WHEN WSFILE001.PDEL.PDE = 0 THEN NULL ELSE WSFILE001.PDEL.PDE END,
                                  CASE WHEN WSFILE001.PDEL.PDD = 0 THEN NULL ELSE WSFILE001.PDEL.PDD END,
                                  CASE WHEN WSFILE001.PDEL.PDC = 0 THEN NULL ELSE WSFILE001.PDEL.PDC END,
                                  CASE WHEN WSFILE001.PDEL.PDB = 0 THEN NULL ELSE WSFILE001.PDEL.PDB END,
                                  CASE WHEN WSFILE001.PDEL.PDA = 0 THEN NULL ELSE WSFILE001.PDEL.PDA END) 
            AND
            WSFILE001.DEL1.DVER##  > 0 AND WSFILE001.DEL1.DVER## =
            COALESCE  (CASE WHEN WSFILE001.PDEL.PDVX = 0 THEN NULL ELSE WSFILE001.PDEL.PDVX END,
                                  CASE WHEN WSFILE001.PDEL.PDVX = 0 THEN NULL ELSE WSFILE001.PDEL.PDVW END,
                                  CASE WHEN WSFILE001.PDEL.PDVX = 0 THEN NULL ELSE WSFILE001.PDEL.PDVV END,
                                  CASE WHEN WSFILE001.PDEL.PDVU = 0 THEN NULL ELSE WSFILE001.PDEL.PDVU END,
                                  CASE WHEN WSFILE001.PDEL.PDVT = 0 THEN NULL ELSE WSFILE001.PDEL.PDVT END,
                                  CASE WHEN WSFILE001.PDEL.PDVS = 0 THEN NULL ELSE WSFILE001.PDEL.PDVS END,
                                  CASE WHEN WSFILE001.PDEL.PDVR = 0 THEN NULL ELSE WSFILE001.PDEL.PDVR END,
                                  CASE WHEN WSFILE001.PDEL.PDVQ = 0 THEN NULL ELSE WSFILE001.PDEL.PDVQ END,
                                  CASE WHEN WSFILE001.PDEL.PDVP = 0 THEN NULL ELSE WSFILE001.PDEL.PDVP END,
                                  CASE WHEN WSFILE001.PDEL.PDVO = 0 THEN NULL ELSE WSFILE001.PDEL.PDVO END,
                                  CASE WHEN WSFILE001.PDEL.PDVN = 0 THEN NULL ELSE WSFILE001.PDEL.PDVN END,
                                  CASE WHEN WSFILE001.PDEL.PDVM = 0 THEN NULL ELSE WSFILE001.PDEL.PDVM END,
                                  CASE WHEN WSFILE001.PDEL.PDVL = 0 THEN NULL ELSE WSFILE001.PDEL.PDVL END,
                                  CASE WHEN WSFILE001.PDEL.PDVK = 0 THEN NULL ELSE WSFILE001.PDEL.PDVK END,
                                  CASE WHEN WSFILE001.PDEL.PDVJ = 0 THEN NULL ELSE WSFILE001.PDEL.PDVJ END,
                                  CASE WHEN WSFILE001.PDEL.PDVI = 0 THEN NULL ELSE WSFILE001.PDEL.PDVI END,
                                  CASE WHEN WSFILE001.PDEL.PDVH = 0 THEN NULL ELSE WSFILE001.PDEL.PDVH END,
                                  CASE WHEN WSFILE001.PDEL.PDVG = 0 THEN NULL ELSE WSFILE001.PDEL.PDVG END,
                                  CASE WHEN WSFILE001.PDEL.PDVF = 0 THEN NULL ELSE WSFILE001.PDEL.PDVF END,
                                  CASE WHEN WSFILE001.PDEL.PDVE = 0 THEN NULL ELSE WSFILE001.PDEL.PDVE END,
                                  CASE WHEN WSFILE001.PDEL.PDVD = 0 THEN NULL ELSE WSFILE001.PDEL.PDVD END,
                                  CASE WHEN WSFILE001.PDEL.PDVC = 0 THEN NULL ELSE WSFILE001.PDEL.PDVC END,
                                  CASE WHEN WSFILE001.PDEL.PDVB = 0 THEN NULL ELSE WSFILE001.PDEL.PDVB END,
                                  CASE WHEN WSFILE001.PDEL.PDVA = 0 THEN NULL ELSE WSFILE001.PDEL.PDVA END)    
            AND 
            WSFILE001.DEL1.DVER##  > 0 AND WSFILE001.DEL1.DM1 =
            COALESCE  (CASE WHEN WSFILE001.DEL1.DVER## = 12 THEN WSFILE001.DEL1.DM12 ELSE NULL END,
                                  CASE WHEN WSFILE001.DEL1.DVER## = 11 THEN WSFILE001.DEL1.DM11 ELSE NULL END,
                                  CASE WHEN WSFILE001.DEL1.DVER## = 10 THEN WSFILE001.DEL1.DM10 ELSE NULL END,
                                  CASE WHEN WSFILE001.DEL1.DVER## = 9 THEN WSFILE001.DEL1.DM9 ELSE NULL END,
                                  CASE WHEN WSFILE001.DEL1.DVER## = 8 THEN WSFILE001.DEL1.DM8 ELSE NULL END,
                                  CASE WHEN WSFILE001.DEL1.DVER## = 7 THEN WSFILE001.DEL1.DM7 ELSE NULL END,
                                  CASE WHEN WSFILE001.DEL1.DVER## = 6 THEN WSFILE001.DEL1.DM6 ELSE NULL END,
                                  CASE WHEN WSFILE001.DEL1.DVER## = 5 THEN WSFILE001.DEL1.DM5 ELSE NULL END,
                                  CASE WHEN WSFILE001.DEL1.DVER## = 4 THEN WSFILE001.DEL1.DM4 ELSE NULL END,
                                  CASE WHEN WSFILE001.DEL1.DVER## = 3 THEN WSFILE001.DEL1.DM3 ELSE NULL END,
                                  CASE WHEN WSFILE001.DEL1.DVER## = 2 THEN WSFILE001.DEL1.DM2 ELSE NULL END,
                                  CASE WHEN WSFILE001.DEL1.DVER## = 1 THEN WSFILE001.DEL1.DM1 ELSE NULL END)
            AND       
            WSFILE001.NDEP1.NPRC01 = 
            COALESCE    (CASE  WHEN  WSFILE001.NDEP1.NPRC01 > MIN(WSFILE001.NDEP1.NPRC02, WSFILE001.NDEP1.NPRC03, WSFILE001.NDEP1.NPRC04, WSFILE001.NDEP1.NPRC05, WSFILE001.NDEP1.NPRC06, WSFILE001.NDEP1.NPRC07,
                                    WSFILE001.NDEP1.NPRC08, WSFILE001.NDEP1.NPRC09, WSFILE001.NDEP1.NPRC10) THEN WSFILE001.NDEP1.NPRC01 ELSE NULL END,
                 CASE WHEN  WSFILE001.NDEP1.NPRC02 > MIN(WSFILE001.NDEP1.NPRC01, WSFILE001.NDEP1.NPRC03, WSFILE001.NDEP1.NPRC04, WSFILE001.NDEP1.NPRC05, WSFILE001.NDEP1.NPRC06, WSFILE001.NDEP1.NPRC07,
                                    WSFILE001.NDEP1.NPRC08, WSFILE001.NDEP1.NPRC09, WSFILE001.NDEP1.NPRC10) THEN WSFILE001.NDEP1.NPRC01 ELSE NULL END,
                 CASE WHEN  WSFILE001.NDEP1.NPRC03 > MIN(WSFILE001.NDEP1.NPRC01, WSFILE001.NDEP1.NPRC02, WSFILE001.NDEP1.NPRC04, WSFILE001.NDEP1.NPRC05, WSFILE001.NDEP1.NPRC06, WSFILE001.NDEP1.NPRC07,
                                    WSFILE001.NDEP1.NPRC08, WSFILE001.NDEP1.NPRC09, WSFILE001.NDEP1.NPRC10) THEN WSFILE001.NDEP1.NPRC01 ELSE NULL END,
                 CASE WHEN  WSFILE001.NDEP1.NPRC04 > MIN(WSFILE001.NDEP1.NPRC01, WSFILE001.NDEP1.NPRC02, WSFILE001.NDEP1.NPRC03, WSFILE001.NDEP1.NPRC05, WSFILE001.NDEP1.NPRC06, WSFILE001.NDEP1.NPRC07,
                                    WSFILE001.NDEP1.NPRC08, WSFILE001.NDEP1.NPRC09, WSFILE001.NDEP1.NPRC10) THEN WSFILE001.NDEP1.NPRC01 ELSE NULL END,
                 CASE WHEN  WSFILE001.NDEP1.NPRC05 > MIN(WSFILE001.NDEP1.NPRC01, WSFILE001.NDEP1.NPRC02, WSFILE001.NDEP1.NPRC03, WSFILE001.NDEP1.NPRC04, WSFILE001.NDEP1.NPRC06, WSFILE001.NDEP1.NPRC07,
                                    WSFILE001.NDEP1.NPRC08, WSFILE001.NDEP1.NPRC09, WSFILE001.NDEP1.NPRC10) THEN WSFILE001.NDEP1.NPRC01 ELSE NULL END,
                 CASE WHEN  WSFILE001.NDEP1.NPRC06 > MIN(WSFILE001.NDEP1.NPRC01, WSFILE001.NDEP1.NPRC02, WSFILE001.NDEP1.NPRC03, WSFILE001.NDEP1.NPRC04, WSFILE001.NDEP1.NPRC05, WSFILE001.NDEP1.NPRC07,
                                    WSFILE001.NDEP1.NPRC08, WSFILE001.NDEP1.NPRC09, WSFILE001.NDEP1.NPRC10) THEN WSFILE001.NDEP1.NPRC01 ELSE NULL END,
                 CASE WHEN  WSFILE001.NDEP1.NPRC07 > MIN(WSFILE001.NDEP1.NPRC01, WSFILE001.NDEP1.NPRC02, WSFILE001.NDEP1.NPRC03, WSFILE001.NDEP1.NPRC04, WSFILE001.NDEP1.NPRC05, WSFILE001.NDEP1.NPRC06,
                                    WSFILE001.NDEP1.NPRC08, WSFILE001.NDEP1.NPRC09, WSFILE001.NDEP1.NPRC10) THEN WSFILE001.NDEP1.NPRC01 ELSE NULL END,
                 CASE WHEN  WSFILE001.NDEP1.NPRC08  > MIN(WSFILE001.NDEP1.NPRC01, WSFILE001.NDEP1.NPRC02, WSFILE001.NDEP1.NPRC03, WSFILE001.NDEP1.NPRC04, WSFILE001.NDEP1.NPRC05, WSFILE001.NDEP1.NPRC06, 
                                    WSFILE001.NDEP1.NPRC07, WSFILE001.NDEP1.NPRC09, WSFILE001.NDEP1.NPRC10) THEN WSFILE001.NDEP1.NPRC01 ELSE NULL END,
                 CASE WHEN  WSFILE001.NDEP1.NPRC09  > MIN(WSFILE001.NDEP1.NPRC01, WSFILE001.NDEP1.NPRC02, WSFILE001.NDEP1.NPRC03, WSFILE001.NDEP1.NPRC04, WSFILE001.NDEP1.NPRC05, WSFILE001.NDEP1.NPRC06, 
                                    WSFILE001.NDEP1.NPRC07, WSFILE001.NDEP1.NPRC08, WSFILE001.NDEP1.NPRC10) THEN WSFILE001.NDEP1.NPRC01 ELSE NULL END,
                 CASE WHEN  WSFILE001.NDEP1.NPRC10  > MIN(WSFILE001.NDEP1.NPRC01, WSFILE001.NDEP1.NPRC02, WSFILE001.NDEP1.NPRC03, WSFILE001.NDEP1.NPRC04, WSFILE001.NDEP1.NPRC05, WSFILE001.NDEP1.NPRC06,
                                    WSFILE001.NDEP1.NPRC07, WSFILE001.NDEP1.NPRC08, WSFILE001.NDEP1.NPRC09) THEN WSFILE001.NDEP1.NPRC01 ELSE NULL END)
        ORDER BY DEAL##
    </cfquery>

  • Interactive "on page load" animations in swf get messed up if clicked too fast

    interactive "on page load" animations in swf get messed up if I click too fast "next page" or "previous page".
    It seemes it can't manage on "page load" animations so fast, so as a result i have mixed animations for example of page1 and page2.
    if page1 has animation1 and 2 and i clicked next page, the next animation to appear is number 3 of page 2 , instead of number 1 which must be the first one to be triggered.
    This only happens if i click fast and several times the "next page" or "previous page.

    I have to say what you are trying might not be the best technique. The show hide might work ok for one or two items on a page but when you use it in the manner you are you are going to have the issues that you are now having...not to mention longer page loading do to larger file size of the page. My suggestion is to look into jquery and there are many plugins that can be modded to look the way you want however perform ten times better then using AP divs with show/hide.
    Here is one example that I found of a jquery plugin. There  plugin after plugin on the web for every scenario and they all can be modded to fit you needs. Do a search and you will eventually find something that fits your needs.
    http://www.twospy.com/galleriffic/#7
    http://www.twospy.com/galleriffic/example-2.html

  • Pages loading - but 'loading' icon no longer spins

    I've just noticed that the loading icon (in the address bar) is no longer spinning when a page is loading, in Safari 4.0.5. Pages load OK, and - it seems - no slower than usual, but what happened to the spinning progress cog? Resetting Safari makes no difference. Anyone else noticed the same thing?

    HI,
    That feature is no longer available in Safari but from the Safari Menu Bar click View/Show Status Bar.
    You can see the page loading activity there. (Bottom of the Safari window). Or, again from the Menu Bar click Window/Activity
    Carolyn

  • WRT54GS2 - Page taking too long to load?

    Recently our Internet Service Provider turned our internet back on. About a day or two after using the internet, I've been noticing problems with slow internet connection. At times it will load fast, and other times it'll take a little bit too long to load.
    For example, I had a couple tabs open this morning and tried to get on a website in a different tab. The page was taking so long to load that it gave up and I got the message "Unable to connect to the Internet".
    But I have internet. 
    On my taskbar, there's an icon in the bottom right corner showing that I have internet connection. 
    Other times I'll try to load a page and it's just blank, and in the corner of the page's tab, there's just an icon of a white sheet of paper followed by the web title.
    How come some pages are taking too long to load and others are loading just fine?
    Additional detail if it helps:
    I unplugged the power cord from my router and plugged it back in to try and fix it and that didn't work.
    My second and third attempt, I refreshed my router. Still nothing.
    Also, I have a secure network, password protected.
    There have been no severe storms recently that could have messed with the router.
    What can I do to fix this issue of a slow loading page?

     Hi ashtonlevry, it looks like your router has a messed  up settings right now. That could be because you had it on stand by for a while since you said that your ISP has just turned your connection back on.
    It's actually best for you to just reset the device back to the default settings and reinstall it afterwards.
    To do the proper reset :
    1. Press and hold the reset button at the back of the router for 30 seconds while the device is on.
    2. Release the button and unplug or power off the device.
     Once done, reinstall the settings.
     For Cable connection, check this link, http://kb.linksys.com/Linksys/ukp.aspx?vw=1&docid=0ff4c94586a345d082828ec2161aaecf_3686.xml&pid=80&r...
    For DSL connection, here's the link, http://kb.linksys.com/Linksys/ukp.aspx?vw=1&docid=9017a6f6bece444dbb4a0746eb87682a_2210.xml&pid=80&r...
    To set up the wireless connection,  here's the link, http://kb.linksys.com/Linksys/ukp.aspx?vw=1&docid=2bf7dc19b4a94d03b0fd91f9ce426e8a_Manually_Setting_...
    Hope these steps help.

  • Home page loading takes longer in a JSF

    My application takes a little longer to load its home page when a user try to access the site. This delay in getting the home page loaded for the
    first time happens to each user accessing the site. So we thought it would be the session scoped managed beans that we use in our application causing
    the issue. But we checked the session scoped bean, which are not doing any particular job to slow down the process. Then we placed a phaselistener and
    got the following printed in console. Doesent it shows that the request for home page goes twice through the JSF life cycle? Is it this that slows down
    the home page access for the first time. If so why should it go through the life cycle twice?
    14:06:45,359 INFO [Engine] BEFORE - RESTORE_VIEW 1
    14:06:45,421 INFO [Engine] AFTER - RESTORE_VIEW 1
    14:06:45,484 INFO [Engine] BEFORE - RENDER_RESPONSE 6
    14:06:47,437 INFO [STDOUT] <- Song List in Memory -> starting
    14:06:47,484 INFO [STDOUT] ################## INITIALIZING ALL URLS FOR ARTIST SEARCH ###########################..
    14:06:48,906 INFO [STDOUT] Processing ALL URLS FOR ARTIST SEARCH
    14:06:50,328 INFO [Engine] AFTER - RENDER_RESPONSE 6
    14:06:50,562 INFO [Engine] BEFORE - RESTORE_VIEW 1
    14:06:50,562 INFO [Engine] AFTER - RESTORE_VIEW 1
    14:06:50,562 INFO [Engine] BEFORE - RENDER_RESPONSE 6
    14:06:50,609 INFO [Engine] AFTER - RENDER_RESPONSE 6
    I'm new to JSF and has to support an application developed in JSF. Any inputs on this is appreciated.
    Thanks in advance.

    download google chrome,  I bet you it will open faster.   probably just an IE thing. 

  • Some web pages take long to load

    I just recently got my mac and i like it better than my PC. There is only one problem I run into. I have noticed that some web pages take long to load and once they are loaded i try scrolling down or up and the web page lags big time. Also the grapics are not all that great. My PC runs the pages just fine. This is not a problem for all web pages but only a few. Mainly I see the problem on some myspace profiles. I was just wanted to see if anyone knows why I am having this problem.
    imac intel core duo   Mac OS X (10.4.6)  

    Welcome to the discussions!
    It is slower in a measureable sense, or just a "seat of the pants" feeling?
    Go to PC Pitstop and run their test. If you are getting the bandwidth that you are paying for, then it is an issue with your broswer.
    I do not like Safari. It is slower than Camino, especially in conjunction with CamiTools. Safari is a memory hog and grabs CPU cycles like nobody's business. I have never had any issues with either Camino or Firefox. Either are much better than Safari, IMO.
    If you miss the look of Safari, there are skins and even a great RSS reader that can be added to Firefox called Sage. It offers better RSS integration than Safari IMO.
    In my experience, Macs just render pages slower than PCs due to poor coding or IE specific coding that lazy web authors. Safari is one of the most standards compliant browsers out there, but if the pages are coded poorly or browser specific, then there is nothing that Safari can do about it.
    You can take a look at some settings, but let us know what speeds you are paying for from your ISP and compare those to the actual speeds. Then we can talk about possible solutions.

  • Why does it take so long to load a web page on my iPad

    Why does it take so long to load a web page on my new ipad wifi

    This is probably not a problem with the iPad, but with the wi-fi. If your internet connection and/or wi-fi speeds are slow, then loading web pages will be slow. If I was you, I would research different kinds of wireless routers to find the fastest one in your price range, and also research different kinds of modems.

  • The New Mail page no longer has an "address" icon at the top.  what happened?

    The New Mail page no longer has an "Address" icon at the top.  What happened?

    Big --
    Go up to the "View" menu, and pull down the "Columns" and "Sort by" menu options.  Do you see what you want there?  When you say "Address" do you mean "From?"
    Just saw BDA's response. 
    Are you talking about Safari, or the Mail app?

  • Firefox is taking way too long to load pages. I have a very fast internet connection but firefox takes forever to load websites. At first it worked fine and very fast but now very slow??

    firefox is taking way too long to load pages. I have a very fast internet connection but firefox takes forever to load websites. At first it worked fine and very fast but now very slow??

    Hi there!
    do you test other browsers?
    i suggest to make a clean install of newer version of Firefox like v8.0.

  • Long time loading Safari pages...???

    What can I do to 'speed up' the loading of my webpages on Safari...it can sometimes take 2-3 minutes for a page to fully load...it's very frustrating and time consuming....

    Hi Robert
    I have found creating a personal location in your Networks Panel, plus using specific DNS server codes seems to speed things up on the Network side of the equation.
    Here's how to do that:
    Go to the System Preferences>Network panel
    - Location - set up a personal location by clicking on the drop down menu and selecting "add a location". Use a name familiar to you. Once established, select "apply".
    - Next, click on the "Show" drop down menu and select Network Port Configurations. Only Ethernet or Airport ought to be checked. Move it to the top of the list (you can drag it). Select "apply".
    - Back to the "Show" menu, select "Ethernet" or "Airport". Click on the TCP panel. There, enter 4.2.2.1 and 4.2.2.2 (separate lines) in the DNS servers box and select "apply". If you use Comcast, you'll have to contact them as they have their own DNS codes.
    Creating a personal location, plus adding the DNS codes seems to speed things up. Otherwise, the "automatic" function has a tendency to "search" for available locations, hence creating the lag.
    In the Finder, go to your Utilities folder and select "Terminal". Once the screen is open enter lookupd -flushcache and press return. This clears out the DNS cache. Once done, quit Terminal.
    On the Safari side of the equation here are areas which can slow things down:
    Favicons - the small icon that appears in the Address window next to the URL is stored in an Icon folder in the your User Account Library>Safari folder. Over time, this folder can become quite large. One remedy is to move the Icon folder to the trash. Safari creates a new folder on the restrart. Again, over time the file will build a new icon cache based on web sites visited.
    Safari Cache - useful for dial-up, not useful for highspeed. Good to empty the cache via the Safari Menu each day.
    History - the larger the history (max is 999 entries/7 days), the greater potential for slower page loads. Good to review the History via the Bookmarks Manager (click on the book icon on the bookmarks bar), removing entries not deemed necessary.
    3rd party add-ons - These can create conflicts or slow-downs depending on the type used. Good to be discerning about what 3rd party items are used to supplement Safari's features. Also, making sure they are up to date is important too.
    Bookmarks - the larger the bookmark file, the more processor power required to access this file. Just as with History, good to keep this file clear of unnecessary bookmarks.
    Cookies - accessed via the Safari Preferences>Security panel. Good to keep this file current too.
    Autofill - accessed via Safari Preferences>Autofill. Depending on the number of items in the file, slowdowns can occur here too. If you are using autofill, click on the "edit" button to remove unnecessary items.
    Post back

  • FF opens ok but why does it take so very long to load my home page.I have new laptop,windows 7.

    FF opens ok but why does it take so very long to load my home page.I have new laptop,windows 7. Can anyone suggest a solution please.
    == This happened ==
    Every time Firefox opened
    == yesterday for no apparent reason.

    I had this problem once before, And now again.
    The only thing I did different, was Instead of shutting down my computer, I click on Log off User.
    Ever since then I have noticed windows XP is taking longer to load, and so is Firefox.
    Hope this clue helps.
    -V-

  • When purchased, my imac would load pages very quickly.  Now, the pages seem to take much longer to load and when watching video or streaming, it often stops to catch up or rebuffer.  What do I do to speed things up?

    When I purchased my iMac last month the pages would load quickly when using the internet browser.  Now it takes much longer to load the pages and when I watch a video it pauses to catch up or is rebuffering the streaming.  What can I do to speed up my browser?

    See:
    Mac Maintenance Quick Assist,
    Mac OS X speed FAQ,
    Speeding up Macs,
    Macintosh OS X Routine Maintenance,
    Essential Mac Maintenance: Get set up,
    Essential Mac Maintenance: Rev up your routines,
    Maintaining OS X, 
    Five Mac maintenance myths, and
    Myths of required versus not required maintenance for Mac OS X for information.

  • Page takes too long to load because of videos

    Hi. I have a website that I made, but the page takes too long to load because there are videos on it. Is there any way to stop the videos from auto-loading and instead only load when someone clicks on them to play?

    There are several ways to have videos on a page without having them load until they are selected to play. A couple are:
    1 - Opening Item in a New, Precisely Sized Window. This test site has 9 videos on the page: PhotoPresenter Animated Slideshow Themes.
    2 - QT Movies via Export for Web in QT Player. This method is more difficult to implement.
    OT

Maybe you are looking for

  • Is there a newer version of iPlanet than 7.0.12?

    I could see some release notes about iPlanet release 7.0.13 as part of the Jan CPU released on 1/17, but i am not able to find where i can download the newer version? Any guidance will be helpful, thanks in advance.

  • Does anyone know where the 10.0.1 update can be found?

    All that I find in the app store is the full $300 version.  Where are they hiding the update?

  • Unable to play/transfer new purchases

    I just purchased 4 songs. 2 downloaded properly to my lap top and ipod and the other 2 have an exclamation point after the numbered song under my purchases. Also, I can not drag them to my ipod nor can I play them on my computer. When I try to play t

  • Can we upgrade 10.7.5 to 10.7.8 and how?

    can we upgrade 10.7.5 to 10.7.8 and how?

  • Crystal Report 11 with JSP

    Hi.... Presently i am working on Crystal Report 11 with JSP. I am using the following code. But getting some error with this code. Please me about this error. <%@page contentType="text/html"%> <%@page pageEncoding="UTF-8"%> <%@page import="com.crysta