Keep gettng messages to update but it takes too long to load, why?

Keeping getting messages to update FIREFOX. When the link is clicked it takes a very long time to load. Therefore, to date the updates have not happened.

What is taking too long to load with respect to the page you linked?

Similar Messages

  • 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

  • HT4352 apple tv takes too long to load photos

    I am running iTunes (11.1.5.5) on Windows 7 and have setup home sharing and accessing the Photo Library from Apple TV 3rd Generation.
    We have a lots of photos (approx 21000) organizaed in folders, eg:
    Main Photo Folder
    Folder 1 (5500 photos)
    F1-Sub 1
    F1-Sub 2
    F1-Sub 3
    Folder 2 (3500 photos)
    F1-Sub 1
    F1-Sub 2
    F1-Sub 3
    Folder 3 (12000 photos)
    F1-Sub 1
    F1-Sub 2
    F1-Sub 3
    Apple TV doesn't show the sub-folders beyond the first set of folders and as a result it takes too long to load our list of photos, is there anything that can be done to fix this?
    Thanks!

    I am having exactly the same issue. Moved house and now starting a movie takes minutes, not seconds... I've got both the Mac and ATV connected via ethernet to my Airport Extreme base station, but have no explanation for this bizarre slowdown. I also don't have internet currently, but I can't understand with content not purchased on iTunes, why that would make any difference...?

  • [SOLVED] initramfs takes too long to load

    Using systemd-analyze I found out that initramfs takes too long to load:
    463ms (kernel) + 11875ms (initramfs) + 6014ms (userspace) = 18353ms
    My HOOKS array in mkinitcpio.conf is the following:
    HOOKS="base udev autodetect modconf block encrypt lvm2 filesystems usbinput fsck"
    I suspect that the long loading time of initramfs is caused by partitions decryption (I am using dm-crypt / LUKS on top of LVM).
    Is there any tool that can report loading times of HOOKS seperately, just like systemd-analyze plot does for userspace?
    Last edited by nasosnik (2013-01-21 14:45:28)

    cfr wrote:
    In what sense is it "too long"?
    I'm just wondering: suppose that you find out that it is because you are using encryption. Would you then switch to a non-encrypted system? Would you make better use of the extra seconds you might save on those rare occasions when you reboot? Even if you reboot twice a day, you might save what? Suppose you would even save 5s per boot. That will give you a whole extra 1 minute and 10 seconds a week. Assuming you don't multitask. Obviously if you multitask, the gain will be less. Would that make it worth risking the security of your data?
    EDIT: I didn't mean this to sound as confrontational as it does now I read it back. It just always puzzles me that people are so concerned about shaving a few milliseconds here and there. I always hope that they put the time they save to good use but then I realise that the time they spent shaving the milliseconds off will obviously outstrip the time saved.
    I really don't care about the boot time because of the reasons you have already mentioned. I just want to figure out if there is any misconfiguration. I am just investigating why initramfs takes significant longer to load compared with my desktop Arch installation (non-encrypted) 1316ms for initramfs. My desktop has a Pentium 4 CPU and laptop has a quad-core i7.
    roentgen wrote:11875ms (initramfs)  means the time it takes you to type the password.
    systemd-analyze is not counting the time is spent to type the password.

  • Apple TV Gen 3 takes too long to load 15,000 photos. Do I need to go back to ATV Gen 1?

    I just purchased Apple TV (Gen 3) It takes too long to load my over 15,000 photos for viewing.   This was never a problem with my ATV (Gen 1).  Do I need to go back to ATV Gen 1?

    Do you have a technical question?
    What have you done to troubleshoot?
    Typically issues like this are related to the local network. First thing would be to try ethernet, if on wifi. Make sure router is up to date. Reboot ATV, router.
    You can go to istumbler (Mac) or netstumbler (PC) to get a report of the network.

  • Takes too long to load a ses file

    Why does it take so long to load a *.ses file? To me it seems that it takes waaaaaaaaaay too long.

    It just now took 3 minutes 55 seconds to load a 1.40 MB ses file. All files probably total 5-600 MBs. A whole lot of effects. I have an AMD Athlon 4200 64 X2 Dual Core. 4 GB ram.
    Waaaaaay too long. I hate to close the ses file when I'm through for the day cause I have to load it back in.
    I have pk files turned off. I guess I'll have to turn them back on. I hate all those little files cluttering up my drive. I guess it's a trade off, though. Damned if you do, damned if you don't. Thanks for the replies.

  • Text messages do not send or takes too long to send

    When i try to send a text they wont send at all or they will take forever to send. i'll also receive texts 30 minutes after they were originally sent.

    First, when was the last time you deleted any messages?  This problem is usually due to too many messages both sent and received.  You might try to delete old threads or start all over fresh.  Also, the SIM may be at fault, so make sure it is seated snuggly and correctly in the slot.  I will say that it takes a long time to delete all messages and also takes time to delete large amounts at the same time.  This is the first 2 steps I would try before going on to anything else.  Again, while deleting, it will take some time and may appear that your phone has frozen.  So, do this when you can let the phone sit idle.

  • Deleting 1 row from a table takes too long...why?

    We are running the following query...
    delete gemdev.lu_messagecode where mess_code ='SSY'
    and it takes way too long as there is only 1 record in this table with SSY as the mess_code.
    SQL> set timing on;
    SQL> delete gemdev.lu_messagecode where mess_code ='SSY';
    1 row deleted
    Executed in 293.469 seconds
    The table structure is very simple as you can see below.
    CREATE TABLE GEMDEV.LU_MESSAGECODE
    MESS_CODE VARCHAR2(3) NOT NULL,
    ROUTE_CODE VARCHAR2(4) NULL,
    REPORT_CES_MNEMONIC VARCHAR2(3) NULL,
    CONSTRAINT SYS_IOT_TOP_52662
    PRIMARY KEY (MESS_CODE)
    VALIDATE
    ORGANIZATION INDEX
    NOCOMPRESS
    TABLESPACE IWORKS_IOT
    LOGGING
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE(BUFFER_POOL DEFAULT)
    PCTTHRESHOLD 50
    NOPARALLEL
    ALTER TABLE GEMDEV.LU_MESSAGECODE
    ADD CONSTRAINT LU_ROUTECODE_FK3
    FOREIGN KEY (ROUTE_CODE)
    REFERENCES GEMDEV.LU_ROUTECODE (ROUTE_CODE)
    ENABLE
    ALTER TABLE GEMDEV.LU_MESSAGECODE
    ADD CONSTRAINT MSGCODE_FK_CESMNEMONIC
    FOREIGN KEY (REPORT_CES_MNEMONIC)
    REFERENCES GEMDEV.SYS_CESMNEMONIC (CES_MNEMONIC)
    ENABLE
    My explain reads as follows.
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | DELETE STATEMENT | | | | 1 (100)| |
    | 1 | DELETE | LU_MESSAGECODE | | | | |
    | 2 | INDEX UNIQUE SCAN| SYS_IOT_TOP_52662 | 1 | 133 | 1 (0)| 00:00:01 |
    Also in my AWR Sql Report I see this as well
    Plan Statistics DB/Inst: IWORKSDB/iworksdb Snaps: 778-780
    -> % Total DB Time is the Elapsed Time of the SQL statement divided
    into the Total Database Time multiplied by 100
    Stat Name Statement Per Execution % Snap
    Elapsed Time (ms) 521,102 N/A 12.0
    CPU Time (ms) 73,922 N/A 5.1
    Executions 0 N/A N/A
    Buffer Gets 2,892,144 N/A 3.4
    Disk Reads 2,847,609 N/A 8.6
    Parse Calls 1 N/A 0.0
    Rows 0 N/A N/A
    User I/O Wait Time (ms) 475,882 N/A N/A
    Cluster Wait Time (ms) 0 N/A N/A
    Application Wait Time (ms) 0 N/A N/A
    Concurrency Wait Time (ms) 2 N/A N/A
    Invalidations 1 N/A N/A
    Version Count 1 N/A N/A
    Sharable Mem(KB) 45 N/A N/A
    Now, since the table only has 150 rows, and I am only try to delete 1 row, why is there so much disk read and why does it take 5 minutes to delete? This just weird. Does this have something to do with the Child tables?

    Any triggers on the table?
    If you trace the session, what statement(s) seem to
    be taking all that time?
    JustinWell I traced my session and I noticed that my query does take a while, but I also noticed several other queries that I was not running. Not too sure where it came from. Have a look below. It is a sample from my TKPROF utility report.
    delete gemdev.lu_messagecode
    where
    mess_code ='SSY'
    call count cpu elapsed disk query current rows
    Parse 1 0.00 0.00 0 0 0 0
    Execute 1 0.01 0.04 0 2 23 1
    Fetch 0 0.00 0.00 0 0 0 0
    total 2 0.01 0.04 0 2 23 1
    Misses in library cache during parse: 1
    Optimizer mode: FIRST_ROWS
    Parsing user id: 57
    Rows Row Source Operation
    1 DELETE LU_MESSAGECODE (cr=3446672 pr=3442028 pw=0 time=309363335 us)
    1 INDEX UNIQUE SCAN SYS_IOT_TOP_52662 (cr=2 pr=0 pw=0 time=35 us)(object id 52663)
    Elapsed times include waiting on following events:
    Event waited on Times Max. Wait Total Waited
    ---------------------------------------- Waited ---------- ------------
    SQL*Net message to client 1 0.00 0.00
    SQL*Net message from client 1 35.87 35.87
    select /*+ all_rows */ count(1)
    from
    "GEMDEV"."TBLCLAIMCHARGE" where "CONTRACT_FEE_MESS_CODE" = :1
    call count cpu elapsed disk query current rows
    Parse 1 0.00 0.00 0 0 0 0
    Execute 1 0.00 0.00 0 0 0 0
    Fetch 1 10.53 44.95 381779 382893 0 1
    total 3 10.53 44.95 381779 382893 0 1
    Misses in library cache during parse: 1
    Misses in library cache during execute: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: SYS (recursive depth: 1)
    Rows Row Source Operation
    1 SORT AGGREGATE (cr=382893 pr=381779 pw=0 time=44953436 us)
    0 TABLE ACCESS FULL TBLCLAIMCHARGE (cr=382893 pr=381779 pw=0 time=44953403 us)
    Elapsed times include waiting on following events:
    Event waited on Times Max. Wait Total Waited
    ---------------------------------------- Waited ---------- ------------
    db file scattered read 47795 0.03 37.87
    db file sequential read 101 0.00 0.02
    select /*+ all_rows */ count(1)
    from
    "GEMDEV"."TBLCLAIMCHARGE" where "FEE_INEL_MESS_CODE" = :1

  • Flash takes too long to load online

    Hi All,
    I am creating a web page using flash and it takes a long time
    to load when you go to the webpage. it opens as if it is working,
    but then the links don't work properly...that is...until at the
    bottom of the browser window it says "done" instead of "waiting for
    http://www.blah blah blah..." once it
    says "done" it works just fine.
    two questions:
    1. is there a way to reduce the size of the flash file so
    that it loads quicker online?
    2. OR..does anyone know how to create that little "intro"
    screen when you go to a website that says "loading" and you see a
    little bar loading....and then only when it is COMPLETELY loaded,
    does the flash begin?
    thanks so much!

    Hi Meesh, I know exactly how you feel, I was there when i
    first started. Worry not!! Best and to keep your loading time down,
    is to keep your .SWF files separate, and load them into your site
    according.
    eg..
    Template ---=> make sure this ONLY consisits of the site's
    look, and navigation.
    BG pics -----=> make a separate SWF containing your pics
    if they are quite large in size.
    Each Page --=> make each page separate SWF, and load them
    separately via your navigation.
    Basically when planning your site, think how you can break it
    up into sections that you can load separately.
    Then use the pre-loading code that Michaeltowse gave you, at
    the beginning of each separate SWF you make, to make it all
    complete with a loading bar.
    Hope this helps. Good luck

  • Interactive forms takes too long to load - sometimes crashes reader.

    Hi Gurus,
    I'm just wondering if anyone have this problem?
    I just configured ADS and created a sample WD program to display an interactive form, the form is not complex, only 2 text fields and an image.
    But when I deploy or run the program, the interactive form container hangs and take very long to process before displaying.
    After I save the PDF file to a local drive, when I try to open it, it will take very long and sometimes crash my system.
    Even when I click on "PDF Preview" to view the form in NWDS it take very long too.
    At first I thought it could be due to my system and I open downloaded PDF file on other PCs, but the problem occurs too in those PCs.
    Using Acrobat Reader 8.1.2, then downgraded to 8.1.1, still no avail.
    Everytime I open the PDF or WD loads the PDF, when I check the Task Manager the process of AcroRdr32 will hog the system processes and use up the memory. I have no problems with other PDF files, only those generated by the WD application gives problems.
    Someone hit the same problem? Any advise? Could it be the ACF or Adobe lifecycle issues?
    Please help. Thanks for all answers.
    Best Regards,
    Jansen

    Hi Jansen,
    If you are using Adobe Reader 8.1.* or above and activex controls in your form, you need to install the latest version of ACF and that will resolve the issue. And do remember to uninstall your old version of Adobe Reader first and then install Reader 8.1.* freshly and after installing it proceed with ACF installation. You have to follow the sequence.
    For ACF installation you may read  Note 766191 - Active Component Framework Installation.
    ACF Installable:
    https://sapmats-de.sap-ag.de/download/download.cgi?id=F9RUZ3Q7TERUBSMHSXWT3UMEM59IJYIPA931VQD32A1UNAKZ6B
    Do reward points if found helpful.
    Regards,
    Arafat

  • Photos take too long to load

    I have had my website running for months now. I regularly add new photo pages, with up to 300 photos a time. the photo pages always take some time to load (a couple of minutes) but this is fine. then when you click a photo, it takes another minute to load all thumbnails and be ready to navigate to other photos (in the enlarged view).
    normally, at this stage, clicking the thumbnails, or next would load up the other images instantly. very quick. NOW, every time i click on a thumbnail, it takes over 5 seconds to load next photo.
    why has this changed??
    as i am writing this, i realise it only happens on windoze/IE7. as my dad and next door neighbour have both just got vista. that disgusting attempt at an os.
    grrr. i hate vista and i hate bill gates.
    anyway, could someone who's got access to a vista machine try downloading Firefox - if you haven't already, and see if it fixes the problem. photo pages - enlarged version - clicking from thumbnail to thumbnail - should be very quick.
    please try this. thanks a lot

    What format are you pictures? When you don't need them in a special format changing them to a .gif will reduce the file size a lot and the quality is still great.
    I mostly use .gif so i can guarantee a fast loading of the site.
    Tip: Don't name your pictures just like 1,2,3 etc.. By giving them a small description as a name (p.e. '30Tablet_MultivitaminBottle.gif') helps your google search ranking.

  • Opening a sequence takes too long to load

    TestStand 3.1 sequence takes very long (4 minutes) to load. Same sequence takes a few seconds only at another PC.
    The delay is at a Thread.PostUIMessage ActiveX call.
    Any idea, what's wrong?
    Thanks!

    Hi,
    Do you have some network paths in you TestStand Search Directories, if so you might try removing them.
    Regards
    Ray
    Regards
    Ray Farmer

  • Coldfusion Page  takes too long, to Load.

    Hi All,
    I have just moved into Coldfusion technology. My expertise is
    predominantly on Oracle and PL/SQL development.
    In the application i am working on, we are currently facing,
    an issue. We have a requirement, that is handled by dynamic
    dropdowns. We use Javascript to control the values loaded in a
    dropdown. (By default, the Country, State, City, Facility and
    Facility Type for a user will be loaded. He can choose any of the
    values in the dropdown and that would control the other dropdown's.
    If a Country is chosen, the states corresponding to that country
    should be loaded in the next drop down .. and so on ... )
    We have drop downs like, Country, State, City, Facility and
    Facility Types. The backend, sends across, all the values as the
    combinations of Country,State,City, Facility and FacilityTypes that
    have been rolled out , to enable selection as a refcursor. The page
    load was surprisngly taking about 91 seconds!! We did check the
    record volumes and they are not more than 1500 rows. Also, the
    database queries, execute in 130 microseconds each. Thus, the code
    is indeed optimized from the database perspective.
    The Issue i am facing is the performance hit when the page
    loads. For just 1500 rows of the combinations i have mentioned, it
    takes 94 seconds. It takes only 24 seconds in my offshore. However,
    i have verfied machine configurations and i seem to have a better
    configuration that my offshore team. Yet, it takes more time to
    load here. Also, does the CF application server parse all the
    functions OnLoad, Onchange even before the Page is loaded? Anyone
    who has already encountered this issue?
    Cheers,
    J

    What version of CF (guessing 6.1 according to your username)?
    What database?
    What database driver?
    Is the database indexed correctly?
    Is the database local?
    Are you caching your queries, since a list of states is
    unlikely to change?
    What hardware on the server?
    Are your heap sizes optimized in the CF Administrator?

  • I just updated to firefox 4. i cant send/reply to messages in hotmail or other websites that i have profiles on which have messageing applications. browser also redirects me to random pages and takes too long to load.

    I have since removed 4 and gone back to firefox 3, but the problem still exists. Im having issues with Internet Explorer too.
    This is an example of the script that fills the ENTIRE webpage, when i try to send/reply to messages, not only in hotmail, but any site that you can send email from.
    ���������r�0�;��;0L�

    I don't have any netflix add ons or extensions installed. I only have necessary plug ins installed. I have turned off all add ons and restarted so this issue is not related to an add on, plug in or extension. I also can rule out my dsl provider as I have hooked my pc up to other family members connections with the same provider on the same server and it did the same thing, However their pc has no issue. I have taken my pc to 3 technicians and there are no problems they can find with my registry or any infections or spyware. The PC does the same thing on their connections.All hardware passes every test they can throw at it. I have tried other browsers and reinstalling this one as well and the same thing happens. This really is mind boggling. I have ATT/uverse beta 6.0. There should be no delay in starting up my browser. After startup, it works great no problems but the speed starting up is on par with old fashioned dial up right now. I have 3 gigs of ram available and I have 85 percent capacity left on hard drive , processor speed of 3.4 with dual core processor. Makes no sense at all.

  • HT1222 updating through itunes takes too longer to compelete , is there any way to update it quickly?

    hello frnds. i have an apple iphone3gs and becoz of finish charging it is turned off and now it shows "connect to itunes" , but when i connect it to itunes it shows that ur device needs to restore and update. if i did'nt want to restore my iphone . is there any way to run it? plz tell me

    Asad Ali wrote:
    is there any way to run it? plz tell me
    Yes.
    Restore it.

Maybe you are looking for

  • Qwerky MacBook Pro - LEMON?

    I'm a first-time Mac user, and so I am still learning, but I have had difficulty with my Mac since I go tit. +*Has anyone experienced anything like this before (below)???*+ I purchased my MacBook Pro in August 2006 (Tiger, 10.4.11, 2 GHz Intel, 1GB M

  • Can I cancel Itunes Match Subscription?

    Hello, While living in the UK during my 2 year visa, I downloaded Itunes Match.  I have now returned home to Canada.  I need now to change my billing information and my country/region in order to download any new music or apps.  In the Itunes Store u

  • Af:query and MDS for persisting searches

    I have seen several references to persisting searches using the af:query component and MDS, but I can't find any information on how to do it. Can somebody please post some info on this topic? Is there an uptake doc or an example app that demonstrates

  • Retrieving uploaded web site to new iWeb 08

    I recently did a clean install of my iBook G4 (for various reasons). I now have Leopard on both eMac and iBook. Before I did this I backed (using Backup) up my iLife 06 folder to .Mac. I have reinstalled iLife 06 and on my iBook and recently purchase

  • Create SA from PR - Vendor from source List

    Dear All, I am creating a SA from PR, where i have selected a vendor & info record. and now when i tried to create a SA wrt PR, system is asking for a Vendor and if i entered different vendor also its accepting & again asking for the Net price. Can i