JCarousel infinite loop error

Hi.
I keep on getting this error when opening the National Geographic homepage:
"jCarousel: No width/height set for items. This will cause an infinite loop. Aborting..."
Everything works fine when opening the same page on Firefox. I've got Safari 5.0.1
I had no problems until a couple of days ago! What happened?
Thanks for your help!

Hi
assuming you've no safari extensions enabled... nor any third party software in Home/Library/Internet Plug-Ins/ or Input Managers/...
start with the safari settings file - Home/Library/Preferences/com.apple.safari.plist
move it to the desktop with safari quit, then try some problem webpages.
No better?
Quit Safari again, move the whole Home/Library/Safari/ folder to the desktop (don't trash it, your bookmarks are in there)
& failing that, try the cookies file at Home/Library/Cookies/cookies.plist also the cache at Home/:ibrary/Caches/com.apple.safari/cache.db

Similar Messages

  • How do I escape a jCarousel infinite loop error?

    Using my iPad I went to United.com to book a flight.  I recieved a "jCarousel:No width/hight set for items. This will cause an infinite loop. Aborting ..." error message with only and "OK" button to proceed. Pushing OK only leads to the error repeating. Tried everything to escape the page after pushing OK but nothing seems to work.  Now I'm in an infinite look with the error message.  Relauching safari brings up the same page and error message.  How can I tell safari not to lauch this page or to start on some other page rather than defaulting to the last page visitied?  

    I had they same issue with United. I attempted to clear the cache and it did not help.
    This is what I did to exit the webpage
    1) Disconnect from wifi connection by turning it off
    2) Clear the cache, cookies and history (not sure if this is necessary, but it couldn't hurt)
    3) Power off
    4) when you turn it back on, launch safari and it won't be able to connect.
    5) Kill the window
    6) Enjoy web browsing :)

  • MSI FX5200 Infinite loop error

    Hi I’ve changed the PSU to see if this was the problem with the infinite loop error I’m getting. The PSU is AMD recommended or that is what it says on the box. How ever I fitted the PSU and re-booted the PC did a few things and them started 3DMARK03 and I was back in the infinite loop.
    // Watchdog Event Log File
    LogType: Watchdog
    Created: 2004-04-27 14:48:28
    TimeZone: 0 - GMT Standard Time
    WindowsVersion: XP
    EventType: 0xEA - Thread Stuck in Device Driver
    // The driver for the display device got stuck in an infinite loop. This
    // usually indicates a problem with the device itself or with the device
    // driver programming the hardware incorrectly. Please check with your
    // display device vendor for any driver updates.
    EaRecovery: 1
    ShutdownCount: 96
    Shutdown: 0
    EventCount: 9
    BreakCount: 9
    BugcheckTriggered: 1
    DebuggerNotPresent: 1
    DriverName: nv4_disp
    EventFlag: 1
    DeviceClass: Display
    DeviceDescription: NVIDIA GeForce FX 5200
    HardwareID: PCI\VEN_10DE&DEV_0322&SUBSYS_91901462&REV_A1
    Manufacturer: NVIDIA
    DriverFixedFileInfo: FEEF04BD 00010000 0006000E 000A1628 0006000E 000A1628 0000003F 00000008 00040004 00000003 00000004 00000000 00000000
    DriverCompanyName: NVIDIA Corporation
    DriverFileDescription: NVIDIA Compatible Windows 2000 Display driver, Version 56.72
    DriverFileVersion: 6.14.10.5672
    DriverInternalName: nv4_disp.dll
    DriverLegalCopyright: (C) NVIDIA Corporation. All rights reserved.
    DriverOriginalFilename: nv4_disp.dll
    DriverProductName: NVIDIA Compatible Windows 2000 Display driver, Version 56.72
    DriverProductVersion: 6.14.10.5672
    I get this error with three different drivers for the video card MSI the one that came with the card NVIDIA’S latest drivers and the latest drivers on the MSI web site.

    how many amps at plus 12v
     Memtest86

  • The dreaded "Infinite Loop" error

    I get a "Serious error.. The Driver for the display was unable to complete drawing operation..blah..blah.. The display driver for nvidia Geforce 4 Ti 4200 with AGP 8X seems responsible....
    The log in windows sez a infinite loop error...blah..blah..
    Anyone have any suggestions?
    Thanx
    Specs
    Enermax 350w PSU
    +3.3V=32A
       +5V=32A
     +12V=17A
        -5V=1A
       -12V=1A
    MSI 865 PE Neo2 L BIOS 1.5/Intel chipset 5.0.1007
    2.4GHZ P4 533FSB
    2X256MB Infineon DDR333 (Using non dual channel)
    80 Gb WD JB
    MSI Geforce 4 Ti 4200/ nvidia 52.16
    Sound Blaster X-Gamer
    LG DVD ROM
    LG 52x32x52
    DirectX9b
    Clean Install Windows XP & Service Pack.
    Idle cpu:32C Load:48C
    Bios settings on default slow

    What is fastwrite (MB or video card?) and can you disable it any way besides buying s/w? I've looked all through my BIOS and Detonator setup, can't find this anywhere.
    My reboots are back.

  • MS-6390 and Radeon 9200SE "infinite loop" error

    I recently installed a radeon 9200SE PCI graphics card, and after about a week of perfect operation I began getting the "infinite loop" error. I've tried every fix I can find and nothing works, and upgrading my motherboard isnt an option since I can't afford it.
    Anyone have any ideas as to how I can fix this?

    tried another pci slot with it?

  • Infinite loop error after using Java Sun Tutorial for Learning Swing

    I have been attempting to create a GUI following Sun's learning swing by example (example two): http://java.sun.com/docs/books/tutorial/uiswing/learn/example2.html
    In particular, the following lines were used almost word-for-word to avoid a non-static method call problem:
    SwingApplication app = new SwingApplication();
    Component contents = app.createComponents();
    frame.getContentPane().add(contents, BorderLayout.CENTER);I believe that I am accidentally creating a new instance of the gui class repeatedly (since it shows new GUI's constantly and then crashes my computer), possibly because I am creating an instance in the main class, but creating another instance in the GUI itself. I am not sure how to avoid this, given that the tutorials I have seen do not deal with having a main class as well as the GUI. I have googled (a nice new verb) this problem and have been through the rest of the swing by example tutorials, although I am sure I am simply missing a website that details this problem. Any pointers on websites to study to avoid this problem would be appreciated.
    Thanks for your time-
    Danielle
    /** GUI for MicroMerger program
    * Created July/06 at IARC
    *@ author Danielle
    package micromerger;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.BufferedWriter;
    import java.io.File;
    import java.io.FileWriter;
    import java.io.IOException;
    import java.io.PrintWriter;
    import javax.swing.JFileChooser;
    import java.lang.Object;
    public class MGui
         private static File inputFile1, inputFile2;
         private static File sfile1, sfile2;
         private static String file1Name, file2Name;
         private String currFile1, currFile2;
         private JButton enterFile1, enterFile2;
         private JLabel enterLabel1, enterLabel2;
         private static MGui app;
         public MGui()
              javax.swing.SwingUtilities.invokeLater(new Runnable()
                   public void run()
                        System.out.println("About to run create GUI method");
                        app = new MGui();
                        System.out.println("declared a new MGui....");
                        createAndShowGUI();
         //initialize look and feel of program
         private static void initLookAndFeel() {
            String lookAndFeel = null;
         lookAndFeel = UIManager.getSystemLookAndFeelClassName();
         try
              UIManager.setLookAndFeel(lookAndFeel);
         catch (ClassNotFoundException e) {
                    System.err.println("Couldn't find class for specified look and feel:"
                                       + lookAndFeel);
                    System.err.println("Did you include the L&F library in the class path?");
                    System.err.println("Using the default look and feel.");
                } catch (UnsupportedLookAndFeelException e) {
                    System.err.println("Can't use the specified look and feel ("
                                       + lookAndFeel
                                       + ") on this platform.");
                    System.err.println("Using the default look and feel.");
                } catch (Exception e) {
                    System.err.println("Couldn't get specified look and feel ("
                                       + lookAndFeel
                                       + "), for some reason.");
                    System.err.println("Using the default look and feel.");
                    e.printStackTrace();
         // Make Components--
         private Component createLeftComponents()
              // Make panel-- grid layout
         JPanel pane = new JPanel(new GridLayout(0,1));
            //Add label
            JLabel welcomeLabel = new JLabel("Welcome to MicroMerger.  Please Enter your files.");
            pane.add(welcomeLabel);
         //Add buttons to enter files:
         enterFile1 = new JButton("Please click to enter the first file.");
         enterFile1.addActionListener(new enterFile1Action());
         pane.add(enterFile1);
         enterLabel1 = new JLabel("");
         pane.add(enterLabel1);
         enterFile2 = new JButton("Please click to enter the second file.");
         enterFile2.addActionListener(new enterFile2Action());
         pane.add(enterFile2);
         enterLabel2 = new JLabel("");
         pane.add(enterLabel2);
         return pane;
         /** Make GUI:
         private static void createAndShowGUI()
         System.out.println("Creating a gui...");
            JFrame.setDefaultLookAndFeelDecorated(true);
            //Create and set up the window.
            JFrame frame = new JFrame("MicroMerger");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         //Add stuff to the frame
         //MGui app = new MGui();
         Component leftContents = app.createLeftComponents();
         frame.getContentPane().add(leftContents, BorderLayout.WEST);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
    private class enterFile1Action implements ActionListener
         public void actionPerformed(ActionEvent evt)
              JFileChooser chooser = new JFileChooser();
              int rVal = chooser.showOpenDialog(enterFile1);
              if(rVal == JFileChooser.APPROVE_OPTION)
                   inputFile1 = chooser.getSelectedFile();
                   PrintWriter outputStream;
                   file1Name = inputFile1.getName();
                   enterLabel1.setText(file1Name);
    private class enterFile2Action implements ActionListener
         public void actionPerformed(ActionEvent evt)
              JFileChooser chooser = new JFileChooser();
              int rVal = chooser.showOpenDialog(enterFile1);
              if(rVal == JFileChooser.APPROVE_OPTION)
                   inputFile2 = chooser.getSelectedFile();
                   PrintWriter outputStream;
                   file2Name = inputFile2.getName();
                   enterLabel2.setText(file2Name);
    } // end classAnd now the main class:
    * Main.java
    * Created on June 13, 2006, 2:29 PM
    * @author Danielle
    package micromerger;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class Main
        /** Creates a new instance of Main */
        public Main()
         * @param args the command line arguments
        public static void main(String[] args)
            MGui mainScreen = new MGui();
            //mainScreen.setVisible(true);
            /**Starting to get file choices and moving them into GPR Handler:
             System.out.println("into main method");
         String file1Name = new String("");
             file1Name = MGui.get1Name();
         System.out.println("good so far- have MGui.get1Name()");
        }// end main(String[] args)
    }// end class Main

    um, yeah, you definitely have a recursion problem, that's going to create an infinite loop. you will eventually end up an out of memory error, if you don't first get the OS telling you you have too many windows. interestingly, because you are deferring execution, you won't get a stack overflow error, which you expect in an infinite recursion.
    lets examine why this is happening:
    in main, you call new MGui().
    new MGui() creates a runnable object which will be run on the event dispatch thread. That method ALSO calls new MGui(), which in turn ALSO creates a new object which will be run on the event dispatch thead. That obejct ALSO calls new MGui(), which ...
    well, hopefully you get the picture.
    you should never unconditionally call a method from within itself. that code that you have put in the constructor for MGui should REALLY be in the main method, and the first time you create the MGui in the main method as it currently exists is unnecessary.
    here's what you do: get rid of the MGui constructor altogether. since it is the implicit constructor anyway, if it doesn't do anything, you don't need to provide it.
    now, your main method should actually look like this:
    public static void main( String [] args ) {
      SwingUtilities.invokeLater( new Runnable() {
        public void run() {
          MGui app = new MGui();
          app.createAndShowGUI();
    }// end mainyou could also declare app and call the constructor before creating the Runnable, as many prefer, because you would have access to it from outside of the Runnable object. The catch there, though, is that app would need to be declared final.
    - Adam

  • Infinite Loop Error - How to Remove?

    Only my "home page" will display in WampServer's Localhost, which I am using for my "testing site" in Dreamweaver CS5. All other pages in my website cannot be loaded by IE8 or IE9. Firefox and Chrome report that all webpages (except my "home page" ) have a "Redirect Loop" which prevents them from being loaded, and this is due to links which continuously loop between the same pages.
    QUESTION: How can I fix this (without starting all over to build my website)?
    I am using dynamic webpages with a template, all of which have the "php" extension. I started with HTML webpages and template, and then converted them to "php". They worked well until some time after I added a Login Form on my home page, with Dreamweaver's "User Authentication" in Server Behaviors. The "login" and "password protected" webpages worked for a while. But now it seems like the "Redirect Loop" error may be related to my "go to page if login fails".
    It may or may not be related, but around the same time my Infinite Loop problem started, the "Editable Region" of my home page stopped displaying the formating and background colour in "Design" view in Dreamweaver.  However, they do display properly in Dreamweaver's "Live View" and in WampServer's "Localhost".
    Any all help will be appreciated.

    Thank you for your reply, Nick.  I could not find the code segments which you suggested.
    I have included a link to show the text in my page, "about_us.php", which is one of the several pages I am having trouble with.
    http://www.sunisandsfl.com/text_file_from_about_us_php.html
    This is one of my "Non password-protected" pages. When I load "about_us.php" in Dreamweaver's "Design" view, there is an Error Message above the webpage which says, "An unknown error occurred while discovering dynamically-related files." The only files shown in the "Related files" bar are "Source Code", "conndbss.php" (my database connection file), and "main_sunisands.css".
    I have not yet uploaded any of my dynamic webpages to my live site (www.sunisandsfl.com).

  • Throws infinite-loop error after cycline through Vector - HELP!!!

    public void paint(Graphics g) {
    FontMetrics fm = g.getFontMetrics();
    xpos = (getSize().width - fm.stringWidth(((String[])parseVector.elementAt(kount))[1])) / 2;
    if (ypos >= getSize().height || ypos <= 0) {
    g.drawString("", 0, 0); // CLEAR THE APPLET
    ypos = getSize().height;
    if (kount <= parseVector.size()) {
    kount++;
    } else {
    kount = 0;
    g.drawString(((String[])parseVector.elementAt(kount))[1], xpos, ypos);
    class ScrollNews implements Runnable {
    public void run() {
    while (true) {
    ypos = ypos - 1;
    ParseNews.this.repaint();
    try {
    Thread.sleep(50);
    } catch (InterruptedException e) {}
    I don't know why this breaks after working one time through the Vector parseVector, what am I missing????
    Phil

    public void paint(Graphics g) {
    FontMetrics fm = g.getFontMetrics();
    xpos = (getSize().width -
    fm.stringWidth(((String[])parseVector.elementAt(kount))
    1])) / 2;
    if (ypos >= getSize().height || ypos <= 0) {
    g.drawString("", 0, 0); // CLEAR THE APPLET
    ypos = getSize().height;
    if (kount <= parseVector.size()) {
    kount++;
    } else {
    kount = 0;
    g.drawString(((String[])parseVector.elementAt(kount))[
    ], xpos, ypos);
    class ScrollNews implements Runnable {
    public void run() {
    while (true) {
    ypos = ypos - 1;
    ParseNews.this.repaint();
    try {
    Thread.sleep(50);
    } catch (InterruptedException e) {}
    I don't know why this breaks after working one time
    through the Vector parseVector, what am I missing????
    PhilI think your problem is here:
    while (true) {You have an infinite loop - how will the while loop ever be false?

  • Infinite loop error on modem prefs

    I am helping someone with their iMac (still on 10.4.11 and using a modem on a standard phone line - yuck!) The problem has come up if you choose network in System Preferences dialog, immediately a dialog comes up that the prefs have been changed by another application (doesn't say what app). If I click on the ok, the dialog clears and then immediately comes back again and again and again. The only way to get out of the loop is to force quit the preference panel. There doesn't seem to be any other pref that shows this behavior. This has just happened since the latest Tiger Intel security update.
    What app caused this message and how can I get rid of it. If they have DSL available in the next few months, there will be a problem of setting up a new network modem with this error message.

    Hi everyone,
    To stop the pop-up, Go to System Preferences: Security. Check the box next to "Require password to unlock each secure system preference." Then lock Security.
    Try this cure for Security update...
    http://discussions.apple.com/thread.jspa?threadID=1730909&tstart=0
    Then... Try putting these numbers in Network>TCP/IP>DNS Servers, for the Airport Interface...
    208.67.222.222
    208.67.220.220
    Then Apply
    And... a simpler solution may be to just copy all you Lovations in Network Pref Pane, then delete the old ones.
    Here's how to make a new Location... copying them is similar...
    Make a New Location, Using network locations in Mac OS X ...
    http://docs.info.apple.com/article.html?artnum=106653

  • Bpm collect time infinite loop error

    Hi All,
    I am doing the BPM pattern collect time scenario. I have an issue. The process is not coming out of the loop after the specified time of 1 minute. The deadline branch is not getting executed. What can be the problem?
    The BPM design is that of the collect time pattern given in SAP BASIS patterns.
    Thanks in advance

    Hi Sunil,
    thanks alot that did work:)  i did not schedule it, but the basis people did it for me. they scheduled it to work evey 3 minutes.
    Anyway, there is another small issue.
    my input is like this,
      <?xml version="1.0" encoding="UTF-8" ?>
    - <ns1:Mt_In xmlns:ns1="urn://collect_time">
      <Name>pratichi</Name>
      <ID>PR01</ID>
      </ns1:Mt_In>
    I am giving only one file for input
    but output i am getting output as such
    <?xml version="1.0" encoding="utf-8" ?><ns1:Mt_Out xmlns:ns1="urn://collect_time"><
    Name>pratichi</Name>
    <Name>pratichi</Name>
    <Name>pratichi</Name><Name>pratichi</Name>
    <Name>pratichi</Name><Name>pratichi</Name><Name>pratichi</Name>
    <Name>pratichi</Name><Name>pratichi</Name><Name>pratichi</Name>
    <Name>pratichi</Name>
    <ID>PR01</ID><ID>PR01</ID>
    <ID>PR01</ID><ID>PR01</ID><ID>PR01</ID>
    <ID>PR01</ID><ID>PR01</ID><ID>PR01</ID><ID>PR01</ID>
    <ID>PR01</ID><ID>PR01</ID></ns1:Mt_Out><?xml version="1.0" encoding="utf-8" ?><ns1:Mt_Out xmlns:ns1="urn://collect_time"><Name>pratichi</Name><Name>pratichi</Name><Name>pratichi</Name><Name>pratichi</Name><Name>pratichi</Name><Name>pratichi</Name><Name>pratichi</Name><Name>pratichi</Name><Name>pratichi</Name><Name>pratichi</Name><Name>pratichi</Name><Name>pratichi</Name><Name>pratichi</Name><Name>pratichi</Name><Name>pratichi</Name><Name>pratichi</Name><Name>pratichi</Name><Name>pratichi</Name><Name>pratichi</Name><Name>pratichi</Name><Name>pratichi</Name><ID>1</ID><ID>1</ID><ID>1</ID><ID>1</ID><ID>1</ID><ID>1</ID><ID>1</ID><ID>1</ID><ID>1</ID><ID>1</ID><ID>1</ID><ID>1</ID><ID>1</ID><ID>1</ID><ID>1</ID><ID>1</ID><ID>1</ID><ID>1</ID><ID>1</ID><ID>1</ID><ID>1</ID></ns1:Mt_Out>
    Why does this happen?
    I kept the file only once, how come i am getting so many instances of the fields?

  • HT4718 infinite loop error installing  lion internet recovery "Install Mac OS X" window. " Install Failed Mac OS X could not be installed on your computer - Restart"

    Hi all,
    my macbook pro became extermily slow for some reason, I rebooted it many times and same problem so I decided to reinstall the Mac OS X lion from the internet.
    I tried installing  lion internet recovery, it downloaded it and restarted. I got the "Install Mac OS X" window. then while installing I got the sad message " Install Failed Mac OS X could not be installed on your computer" and the only botton is "restart". Everytime I restart I gor the same message. Now I am trying to start from the harddisk but I does not show when you start the pc, keep clicking the "alt" botton. It only shows "Mac OS X Installer" and "Recovery HD". What Should I do?
    I appreciate your help. Thanks.

    Thanks Baltwo.
    I could format it and get the back up from time machine but it is not up to date so I want to leave it at last.
    I tried to back it up on external hard drive and got an error, tried CCC for back up and error again.
    Just wanted to do an update on the subject. Still trying to get it back.

  • BSOD infinite loop problem - Satellite M55

    Many people are getting "infinite loop" error with M55 / ATI 200M.
    Is there a fix for this? My laptop (purchased in May 2006) is worthless...reboots every 2 minutes. Totally unusable.
    There was a post here where the user indicated they found a solution, but the solution was not posted :(
    http://forums.computers.toshiba-europe.com/forums/thread.jspa?threadID=15169
    Please reopen this thread, or post the solution.
    If there is a new driver I'm supposed to use, please post the link (as opposed to just saying "use a new driver").
    Thanks.

    The error appeared around the August / September 2006 timeframe. If you simply boot up the computer, it will happen with a few minutes, just viewing the desktop, with no applications causing the error.
    The computer only has a 90 day warranty. It may have initially occurred within the warranty period, but the Toshiba support rep said it was out of warranty, and they could not help me. The M55 is a relatively inexpensive laptop, so the cost to bring it to a service center is would almost equal the replacement costs. :(
    I installed this Toshiba-provided driver: sm55evideox.exe
    http://www.askiris.toshiba.com/ToshibaSupportSite/search.do?cmd=displayKC&docType=kc&externalId=1158 481xml&sliceId=&dialogID=10312729&stateId=0%200%20 10310682
    This was the most recent (July 2005) driver I could find for the M55-S1001.
    If there is a different driver I should be using, please let me know.
    Maybe I have to uninstall & then reinstall drivers? I don't know....
    The Display properies show the driver is provided by:
    ATI Technologies
    The error message is thus:
    Blue screen...
    "The problem seeems to be caused by the following file: ati2dvag"
    ati2dvag
    Beginning dump of physical memory
    If there is more information or details that may be helpful in a fix or diagnosis, please let me know, and I will post it.

  • Alert Component with OnKillFocus Causes Infinite Loop

    I have this script...
    txtPPM.onKillFocus = function(txtPPM)
    import mx.controls.Alert;
    Alert.show("blah blah");
    When my focus shifts away from the txtPPM textfield I get an
    infinite loop error. I haven't been able to find a successful
    method to fix this. Any suggetions?

    Probably related to the FocusManager (V2 components). There
    may be other
    ways to work around it, but here's something quick:
    import mx.controls.Alert;
    var alertClickHandler:Function = function (evt_obj:Object) {
    switch (evt_obj.detail) {
    case Alert.OK :
    trace("You clicked: " + Alert.okLabel);
    break;
    case Alert.CANCEL :
    trace("You clicked: " + Alert.cancelLabel);
    break;
    txtPPM.onKillFocus = txtFocusHandler;
    function showAlert(){
    Alert.show("blah blah blah", "", undefined, this,
    alertClickHandler);
    function txtFocusHandler(newFocus:Object){
    this.onKillFocus = undefined;
    showAlert();
    txtPPM.onKillFocus = txtFocusHandler;

  • Satellite A100-998: Blue Screen error - nv4_disp.dll infinite loop

    I bought this laptop a month ago and I have a serious problem with 3d applications, 3ds max and video games. I receive a blue screen saying
    Error message: STOP 0x000000EA THREAD_STUCK_IN_DEVICE_DRIVER
    nv4_disp.dll
    STOP: 0x000000EA (0x8408E6B8, 0x88D33F60, 0xBAF7BCBC, 0x00000001)
    (hope i noted down correctly) and it says something about "that this device caught in an infinite loop)
    I downloaded the latest drivers for my nvidia display Forceware 84.68 (GeForce Go 7300, 512ram)from Toshiba but nothing changed. Any suggestions ? What is the problem? the performance is really good until the blue screen appears, so i don't see why this happens...
    The laptop came with windows xp media center edition.
    Thanks in advance.

    > Yes, i think so, the problem is that it is not easy
    > to be separated with my laptop ... especially when
    > you have deadlines! I will call them tomorrow maybe
    > there is a hardware problem. It happens in all 3d
    > applications, and i have the most recent drivers.
    Did you ever get an answer? When i took my laptop home, the first thing i did once it was setup was test various 3d programs, because i bought it to do my 3d work on as well as having something mobile for work. I got that stop error, called toshiba and was told to uninstall and reinstall the graphics driver. Sounded like a fob but i did it anyway, and it had no effect. It seems like there's nothing i can do as Nvidia says they don't support it, it's a toshiba problem, and toshiba swears it can't be their fault.
    I used to see it on my desktop (before it went to computer heaven) until i updated the driver (a new one came out), and then i never got it again. From what toshiba tech support told me, it sounds like they won't be updating the driver for the go 7300 as it's regarded as too old? I'm pretty disappointed as my search of reviews of the product never revealed this flaw.
    One person who i talked to advised me to disable Hardware Acceleration, but wihout that i might as well saved money and gotten a cheapy graphics card. The price difference between a notebook with this card and one with the onboard intel type was huge.
    The first notebook i bought had a faulty dvd drive and i returned it for this one. I cringe at the thought of calling toshiba again and having them tell me to return it to them as if it was a hardware failure, when it sounds like a poorly written driver is causing the STOP.

  • Notebook caught in infinite loop, then gives a Hard Drive Short DST check error in Bios

    My laptop shut off unexpectedly last week. It got caught in an infinite loop when trying to restart. I was able to access bios and run a system check. I received Failure ID Q0821A-7017lt-xd7wwk-60xx03. I cannot get the computer to start. Please advise.

    1. This is a hardware issue and the Hard Drive is faulty
    2. You cannot recover this failure ID unless you replace the Hard drive
    Detailed Explanation:
    Whenever you get a message stating that the Short DST Check error with 24 Digit Failure ID "Q0821A-7017LT-XD7WWK-60XX03" that indicates that the Hard Disk Drive requires a replacement to resolve the issue
    Could be due to Application or driver conflicts, virus issues, file corruptions due to incompatible applications, improper shutdowns, update failures due to conflicts, sudden power surges, if notebook is dropped etc..
    HP will provide a replacement Hard Disk Drive if the Notebook warranty is Active, If not you need buy a SATA Hard Disk Drive from a retail shop nearby
    Please make sure you are getting at least equal capacity as the original one in order to use Recovery Disks. If you need you can buy a larger, but not smaller capacity Hard Disk Drive. For example if you have a 500GB Hard Disk Drive you can upgrade it to 750GB Hard Disk Drive but not 320GB Hard Disk Drive
    Please try the below shown troubleshooting steps once:
    Step 01. Remove the battery and unplug the AC/Power Adapter
    Step 02. Press and hold the Power button for more than 30 Seconds
    Step 03. Plug in the AC/Power Adapter (leave the Battery out for now)
    Step 04. Press the Power button and check if the Unit works normal
    If the above mentioned steps does not help, then you can try reseating the Hard Drive on your Notebook
    If the issue persists again please Contact HP if your HP Notebook is under warranty, HP would replace the Hard Disk Drive and provide you a Recovery media to restore factory operating system after replacement (if you've not yet created Recovery Discs/USB Media)
    Note: Back up all the personal data to an external drive if it's possible. Otherwise you could connect the failed HDD via SATA to USB adapter with another PC or same PC after replacement of HDD & re-installation of OS and try copying /recovering the files.
    Please click on the link In order to Identify, Prevent, Diagnose & Recover from Drive Failures on HP Notebook Hard Drives & Solid State Drives :
    http://h10032.www1.hp.com/ctg/Manual/c02876562.pdf
    Please check your notebook warranty to verify the status and order a new Hard Disk Drive
    Hope this helps, for any further queries reply to the post and feel free to join us again
    **Click the KUDOS star on left to say Thanks**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.
    Thank You,
    K N R K
    Although I am an HP employee, I am speaking for myself and not for HP

Maybe you are looking for