My lap is hanging

I can not start my lap is i dont know why is hanging on the appl mark

Hi,
For this error code, you can refer to this link:
Bug Check 0x7A: KERNEL_DATA_INPAGE_ERROR
http://msdn.microsoft.com/en-us/library/windows/hardware/ff559211(v=vs.85).aspx
Please try to run the disk checker tool and memory diagnostic tool to see if there is any error.
Please know the dump file is necessary for us to identify your issue, please post back.
Kate Li
TechNet Community Support

Similar Messages

  • My lap hangs when trying to connect wifi network

    when I power on the lap, there is no issue with wifi connectivity,but with in 30 to 40 min wifi gets disconnected showing limited signal . We have created two networks on same wifi in our room. When I try to connect to other network lap hangs.also when I  power off wifi in lap during this situation ,I am unable turn on wifi again(wifi option blank,unable to select).Even task manager is not getting opened. I should power off lap by holding power button and again power on the lap. When it is on the same thing happens

    Thank you for visiting the HP Support Forums and Welcome. It is a great site for information and questions. I have looked into your issue about your HP Pavilion 15-p077tx Notebook and issues with Wireless. Here is a link to the troubleshooting the Wireless connection. It has some helpful information inside of the document that has helped other. Here is a link to the HP Support Assistant. Just download and run the application and it will help with the software and drivers on your system it has built in Wireless troubleshooting assistance. If this continues I would change the Channel on the router. Routers are capable of communicating to your Notebook on several different channels. If your neighbours Wifis  on the same channel, your network speeds might have issues. I have searched Microsoft for a fix for this and they indicate on the forums that if you change the router channel to a different channel, this might resolve the connection issue. You could turn off IPv6 for the notebook. Some say this helps. Fix this problem Microsoft Fix it 50413.  Here is a link to help as well. Hope this is helpful. Thanks.

  • Palm Desktop 6.2 hangs on "media" button

    Recently I purchased a Palm Centro and last night installed the Desktop software 6.2 on top of the previous 4.1.4, which I had for my Tungsten E (as the instructions indicate).  Things seemed to go okay, but every time I hit the "media" button on the software, the progress bar gets about a third of the way complete before it hangs.  I've tried rebooting, etc., but to no avail.
    Any ideas?
    Thanks,
    John S.
    Post relates to: Centro (AT&T)

    I've just upgraded from my old Tungsten T2 which died on me to a Tungsten Tx which I bought second hand from ebay this week.  It came without the install disk so I downloaded the currrent PDT software for Tx from the Palm download site.  I am running Windows XP Home on my laptop and an old PC and Windows Vista 64 bit  on my new PC.  Given the problems with Vista 64 bit version I have been relying on my lap top.  However having sorted out most of the teething problems I am still left with the same probl;em as you, everything seems to work and hotsunc correctly but as soon as I press the media tab the progress bar states that it is loading.... then hangs after about a third of the progress. Pressing CTRL-ALT-DEL shows that the application is not responding.  I can bluetooth images to my palm from my phone and I suspect if I put the images onto an SD card the Palm will recognise them, but I can't use PDT to manage the media.  So if anyone else has any suggestions I would also be interested to hear them.
    Post relates to: Palm TX

  • GetConnection hanging, then stops. can't get connected

    am writing a java application that connects to our Oracle 8i database. i seem to be following the oracle instructions exactly, but when i go to connect it just hangs. no error and no connection. i'm using Sun's Forte IDE. here's my code, can you help?
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.table.*;
    import javax.swing.event.*;
    import javax.swing.border.*;
    import java.sql.*;
    import java.sql.DriverManager;
    import java.io.*;
    import java.math.*;
    import java.lang.*;
    import oracle.jdbc.driver.OracleDriver;
    public class TableLoader implements LayoutManager {
    static String[] ConnectOptionNames = { "Connect" };
    static String ConnectTitle = "Connection Information";
    Dimension origin = new Dimension(0, 0);
    JButton fetchButton;
    JButton showConnectionInfoButton;
    JPanel connectionPanel;
    JFrame frame; // The query/results window.
    JLabel userNameLabel;
    JTextField userNameField;
    JLabel passwordLabel;
    JTextField passwordField;
    // JLabel queryLabel;
    JTextArea queryTextArea;
    JComponent queryAggregate;
    JLabel serverLabel;
    JTextField serverField;
    JLabel driverLabel;
    JTextField driverField;
    JPanel mainPanel;
    TableSorter sorter;
    JDBCAdapter dataBase;
    JScrollPane tableAggregate;
    * Brigs up a JDialog using JOptionPane containing the connectionPanel.
    * If the user clicks on the 'Connect' button the connection is reset.
    void activateConnectionDialog() {
    if(JOptionPane.showOptionDialog(tableAggregate, connectionPanel, ConnectTitle,
    JOptionPane.DEFAULT_OPTION, JOptionPane.INFORMATION_MESSAGE,
    null, ConnectOptionNames, ConnectOptionNames[0]) == 0) {
    System.out.println("Inside activateConnectionDialog about to connect, next output is - should be connected");
    connect();
    frame.setVisible(true);
    System.out.println("should be connected");
    else if(!frame.isVisible())
    System.out.println("didnt connect");
    // System.exit(0);
    * Creates the connectionPanel, which will contain all the fields for
    * the connection information.
    public void createConnectionDialog() {
    // Create the labels and text fields.
    userNameLabel = new JLabel("User name: ", JLabel.RIGHT);
    userNameField = new JTextField("tiger");
    passwordLabel = new JLabel("Password: ", JLabel.RIGHT);
    passwordField = new JTextField("scott");
    serverLabel = new JLabel("Database URL: ", JLabel.RIGHT);
    // serverField = new JTextField("jdbc:sybase://dbtest:1455/pubs2");
    serverField = new JTextField("jdbc:oracle:oci8:@LMTD");
    driverLabel = new JLabel("Driver: ", JLabel.RIGHT);
    // driverField = new JTextField("connect.sybase.SybaseDriver");
    driverField = new JTextField("oracle.jdbc.driver.OracleDriver");
    connectionPanel = new JPanel(false);
    connectionPanel.setLayout(new BoxLayout(connectionPanel,
    BoxLayout.X_AXIS));
    JPanel namePanel = new JPanel(false);
    namePanel.setLayout(new GridLayout(0, 1));
    namePanel.add(userNameLabel);
    namePanel.add(passwordLabel);
    namePanel.add(serverLabel);
    namePanel.add(driverLabel);
    JPanel fieldPanel = new JPanel(false);
    fieldPanel.setLayout(new GridLayout(0, 1));
    fieldPanel.add(userNameField);
    fieldPanel.add(passwordField);
    fieldPanel.add(serverField);
    fieldPanel.add(driverField);
    connectionPanel.add(namePanel);
    connectionPanel.add(fieldPanel);
    public TableLoader() {
    mainPanel = new JPanel();
    // Create the panel for the connection information
    createConnectionDialog();
    // Create the buttons.
    showConnectionInfoButton = new JButton("Configuration");
    showConnectionInfoButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    System.out.println("About to connect...");
    activateConnectionDialog();
    fetchButton = new JButton("Fetch");
    fetchButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    fetch();
    // Create the query text area and label.
    queryTextArea = new JTextArea("SELECT * FROM DAILY_LSNR_LOG WHERE C_IP = 192.168.60.138", 25, 25);
    queryAggregate = new JScrollPane(queryTextArea);
    queryAggregate.setBorder(new BevelBorder(BevelBorder.LOWERED));
    // Create the table.
    tableAggregate = createTable();
    tableAggregate.setBorder(new BevelBorder(BevelBorder.LOWERED));
    // Add all the components to the main panel.
    mainPanel.add(fetchButton);
    mainPanel.add(showConnectionInfoButton);
    mainPanel.add(queryAggregate);
    mainPanel.add(tableAggregate);
    mainPanel.setLayout(this);
    // Create a Frame and put the main panel in it.
    frame = new JFrame("TableExample");
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {System.exit(0);}});
    frame.setBackground(Color.lightGray);
    frame.getContentPane().add(mainPanel);
    frame.pack();
    frame.setVisible(false);
    frame.setBounds(200, 200, 640, 480);
    activateConnectionDialog();
    public void connect() {
    String[] tstarr = new String[100];
    try {
    Class driverOK = Class.forName("oracle.jdbc.driver.OracleDriver");
    // DriverManager.getConnection ("jdbc:oracle:oci8:@lmdw","lmtlog", "yama");
    System.out.println("Set the driver, now doing connect");
    DriverManager.registerDriver (new oracle.jdbc.driver.OracleDriver());
    System.out.println("Made it past driver registration " + serverField.getText() + ", " + userNameField.getText() + ", " + passwordField.getText());
    Connection con = DriverManager.getConnection (serverField.getText(),userNameField.getText(),passwordField.getText());
    System.out.println("I made it");
    Statement stmt = con.createStatement();
    for(int i=0; i<10; i++) { tstarr[i] = "component#" + i; }
    stmt.close();
    con.close();
    catch (ClassNotFoundException nf) {
    System.out.println("Couldn't find driver - jeh");
    catch (SQLException badsql) {
    System.out.println("Caught SQL exception in TableLoader - jeh");
    catch (Exception e) {
    System.out.println( e.getMessage());
    e.printStackTrace();
    /* dataBase = new JDBCAdapter(
    serverField.getText(),
    driverField.getText(),
    userNameField.getText(),
    passwordField.getText());
    sorter.setModel(dataBase);
    jeh */
    public void fetch() {
    dataBase.executeQuery(queryTextArea.getText());
    public JScrollPane createTable() {
    sorter = new TableSorter();
    //connect();
    //fetch();
    // Create the table
    JTable table = new JTable(sorter);
    // Use a scrollbar, in case there are many columns.
    table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    // Install a mouse listener in the TableHeader as the sorter UI.
    sorter.addMouseListenerToHeaderInTable(table);
    JScrollPane scrollpane = new JScrollPane(table);
    return scrollpane;
    // public static void main(String s[]) {
    // new TableLoader();
    public Dimension preferredLayoutSize(Container c){return origin;}
    public Dimension minimumLayoutSize(Container c){return origin;}
    public void addLayoutComponent(String s, Component c) {}
    public void removeLayoutComponent(Component c) {}
    public void layoutContainer(Container c) {
    Rectangle b = c.getBounds();
    int topHeight = 90;
    int inset = 4;
    showConnectionInfoButton.setBounds(b.width-2*inset-120, inset, 120, 25);
    fetchButton.setBounds(b.width-2*inset-120, 60, 120, 25);
    // queryLabel.setBounds(10, 10, 100, 25);
    queryAggregate.setBounds(inset, inset, b.width-2*inset - 150, 80);
    tableAggregate.setBounds(new Rectangle(inset,
    inset + topHeight,
    b.width-2*inset,
    b.height-2*inset - topHeight));
    }

    judeyash wrote:
    Hi there
    I've set up a home office upstairs but can't connect to the Internet. Sometimes I can see 4 bars on wifi but can't connect (after buying a N dongle - it helped for one day and now it doesn't!). I can see all my neighbours networks.
    So tried using powerline Ethernet adaptors upstairs - again worked for one day then as soon as my husband used his laptop downstairs (plugged in) they stopped working.
    This is taking so much time to try and fix. If I bought a booster would that help and if so which one? Or are there fancy powerline adaptors that I could use (I'm using the ones given with my bt vision box)
    Please help
    INSSIDER
    Download Inssider2 for free from http://www.metageek.net/products/inssider/download install on your lap top then use your laptop downstairs same room as router
    it will  show you if your hub is still sending wifi when the husbands laptop is plugged in downstairs
    as power line adapters do the same its probably not interference
    If any post helps tick the star box on the left
    Just cause Im paranoid dont mean they are not out to get me

  • Toshiba a-105 hangs on windows is shutting down page.

    When I try to restart my a-105 lap top it hangs on the windows is shutting down screen and will not reboot. I must restart by shutting down completely. But when I hit the shut down button it shuts down just fine. The problem is in the restart button. Already did os reinstall. Still have problem please help...

    I'm not laptop user but it comes on my desktop the same. I install "User Profile Hive Cleanup Service" application that released from Microsoft. The problem was solved on my desktop for your information.
    Please refer to below link -
    http://www.microsoft.com/downloads/details.aspx?familyid=1b286e6d-8912-4e18-b570-42470e2f3582&displa...

  • ITunes hangs with smartlist referring to removed list

    First of all great job for the performance improvement. Thank you.
    Here is another problem hope you will address too:
    If there is a smartlist referring to another list that is later on removed, iTunes starts to hang.
    It will eventually respond but just take unnecessary long to. It'd do so for every click until the void reference is resovled. That is, it's a pain to wait for it to respond in order to fix the void references. You have to wait so long that even post a problem on the discussion forum barely kill a little of the time even after I preview the posting for so many times.
    It's not some obscured situation. When we manage the smartlists, it's not apparent to keep track of what refers to what with just the layout.

    Usually these issues can be resolved with updates, in this case updates from www.hp.com and a firmware/software update from sony.com
    I went to HP and theres 3 "Flavors" of your laptop some have updates for the chipset/BIOS/ and USB bridge, one even has a update that directly addresses iTUnes when you do a restore on the lap. you will have to go there to find the updates for your exact model (6620DK, 6620SE, 6620TC is the 3 I seen)
    Another thing you can do is make sure the laptop is plugged into its AC adapter so you know its not a power issue where the CPU is going into a "Poersaving" mode and then trying to do all this heavy work while unplugged and running on a battery

  • Pavilion dv7-1245dx loads apps slowly, freezes w white screen, hangs with rotating icon

    I have dv7-1245dx, less than 1 year, running Windows 7, Norton, Microsoft Office apps, esp Outlook, use several real estate apps that are web-based. I'm trying to run my business with this machine, but am having constant performance problems: loads apps very slowly (1-2 minutes), freezes at random times (no pattern I can detect) and the screen turns white, or system just hangs and displays the rotating icon endlessly. Usually, my only resort is a hard shutdown (ctr-alt-del doesn't work as it won't take any input). Have run optimization/maintenance tools, had repair person and geek squad look at it, but either it seems fixed then starts these behaviors again in a week or so, or they say they can't diagnose any problems with the maintenance tools.  Can anyone help me? Thx!

    I have the same issue with a Pavilion DV7 19xx running vista home premium, it freezes every 20 seconds for a minute, so that it appears that the programs are not responding, however after a minute or so it starts to run normally., only to freeze 20 seconds later again, something impossible to fix,I tried to run a chcdisk, with no positive result, and the restore point seems to have been lost or deemed invalid...
    This even happens in all fail safe modes
    So I downloaded the service manual, as the warranty has expired on this particular model that was a replacement model for another model that went bust and was given to us instead of very severely mal-designed laptop, that either was a Monday model, or was bad from the design out...
    I opened it(the new model), and the cooling ribs was full of dust, and this on a model that is less than a year old(however without warranty due to specific circumstances). A PC requires service, just like a car, but not in less than a year...
    in regard to heat problems..
    This model as the former, got so hot that it was to hot to sit on my wifes lap, I would even state that it is a fire hazard, and that HP should look into this NOW before it ignites a fire somewhere and a law suit drops in and they would have to recall PCs like auto mobiles sometimes get recalled..
    there is an open space, just behind the cooling ribs where a fan draws in air (and dust), however the ribs spacing is so small that any dust will get caught there, after a while there is so much dust that the heat sinking performance is lost and the PC starts to shut down, due to overheat.. however, it can stall, and just keep on heating, until it reaches some critical point.
    I am generally getting very tired of these issues with HP laptops, and will most certainly not buy one, the next time my wife needs an Upgrade due to my experiences with not 1 but 2 different laptops, that is not up to the job, they claim to be...
    In fact, I'm speculating in submitting a complaint, to my countries "ombudsman", that takes care of these issues and can invoke certain penalties on companies who are breaking certain marketing laws such as supplying products that continuously keeps breaking down... due to mal design.. a mal design is for example when a speeder in a car jams.
    I would still be great-full for any advice on how to fix the freezing problem..
    I cannot recommend though to open your laptops without you being a skilled technician, and you will need the service manual to do it..
    Any advice/recommendation is welcomed, although I'm not optimistic..
    I'm 36 years old and have been working with computers since I was 12, so I'm not some kid that is just mad, in fact I do understand that sometimes in order to earn money in these days, things are getting rushed, and when they do, errors happen as we are all humans..

  • Lenovo B570 (Bestbuy) hangs on "Please Wait"-Lenovo B570 se cuelga en "Espere"

    (sorry for bad english)
    I have a problem with my laptop, i've bougth it 1 month ago. Since there my laptop hangs at "Please wait" screen with the small circle.The laptop is Crazy it runs normally at any time Ive tried to install a Hotfix KB983551 but i cant install it. So i want you to help me please. i'm from Peru so ican't return my lap. I want to fix it as soon as possible.
    Si pueden respondan en español
    Solved!
    Go to Solution.

    Thanks for the help Swishtail but i have to use the onekey rescue system to solve this problem. i dont wanted to delete all my data but it worth. I can still use the finger print recognition device. I think that the problem was the veriface...(i ve used it only 2 times) but now it runs well. 

  • ICal hangs when exporting a calendar

    When attempting to export a calendar (as a backup), it causes iCal to hang, and I have to Force Quit. The calendar is ~9.5 Megs in size. I have run Disk Utility.
    I am using iCal version 5.0.3.
    The last backup that was successful was on 9/21/2012 (I back up every week). Because I have added events and reminders since then, I don't want to restore that file but would like to see if there is a way ro "fix" the hangup so that I can get a good calendar export.
    Anybody have any suggestions?
    Thanks.

    through additional experimentation, here is what i learned.
    when i created the calendar, i told iphoto i wanted to display american holidays and a calendar from ical.
    If i unselect the show holidays options, my dates import correctly.  with holiday selected i get some dates from ical, but only to the extent they don't over lap with holidays.
    once i noticed this pattern, i went back and forth and sure enough if you have an event from ical on say chirtmas day, it won't be imported into your calendar.
    I didn't seem to matter which order the events were added to the calendar ... holidays first or ical calendar dates first.
    Finally, i created an ical calendar with the holidays i wanted displayed, then in iphoto told it not to include holidays, but to display both ical calendars.  That had the same issue.  on date where you have events on both calendars, only one set of dates will appear in iphoto.
    so to conclude building a calendar in iphoto you can not include dates from mulitple ical calendars without conflict.
    i stopped short of merging calendars in ical, but i guess that's next.
    Not to be too critical here, but that sounds like bug someone at apple might be able to fix.
    Perhaps some of the developers you have building weekly updates to itunes and put them to work cleaning up this kind of mess.
    Hope this helps others with the same problem.
    regards.

  • Lap top computer wont start up

    My lap top computer will not start up, it freezes on windows start. Tried to reastart and gives a system error message with options to resume normally or start up system repair (recommended). Both options do not work and system repair gives a hanging blue screen. There is important data that I will need to get off the computer if this is a hard drive problem.
    Any help will be appreciated.

    Could be the hard drive - I would remove it, connect a USB interface, plug it into a working computer and remove the important information.
    You could also try scanning the suspect drive with a working comptuer to see if it detects and corrects any errors.
    good luck!

  • Continuous Measurement and Logging Template - May hang-up due to lost Exit

    The template Continuous Measurement and Logging in LabVIEW 2012SP1 has a flaw in the both the Acquisition and Logging loops.
    The Stop message handler discards all messages in the message queue. The note says:
    "Stop - Flush the queue of any pending "Log" messages. Close the TDMS file reference." See picture below.
    This concept breaks if the Exit message is posted while the Stop message is being processed. The Critical time gap for this to happen is small because Exit is posted to the front of the queue. But it depends on the processing in the Stop handler case. Small or large - it can happen.
    The symptom is that the application hangs in an infinite wait on the message queue - all controls are with no effect as the rest of the loops are terminated. Only Break will terminate the application. Pause button does not work either. (see this forum entry)
    This problem may only appear after the application has become more complex and the timing has changed - the fresly made template works and does not reveal the issue.
    The cure: First I thought of previewing the queue elements before discarding them selectively, one by one in the Stop loop, but that wont work either, because the Exit may arrive precicely in the time laps between preview and dequeue - remember Exits are posted to the front of the queue.
    I think the best option is to replace the flush of the queue in the Stop message handlers with a Selectively dequeue of messages one by one and check each if Exit is found - if so, re-insert it into the front of the queue. All other messages are discared. This look like this, having the interesting parts visible...
    Below is what the Stop message loop looks like with the problem highlighted.
    Given that I am not mistaken, I think it is better that NI updates the templates to prevent this problem.
    Solved!
    Go to Solution.

    Here's what the idle state case within the stop message case looks like:
    We don't hang the CPU handling a constant stream of no-op messages because we only enqueue "Log" messages when we are in the valid logging state (the Idle state here is again a passthrough).
    The worst case scenario is that there are number of Log requests already in the queue when the system stops. Upon recieving the Stop message the state transitions to idle and the remaining Log messages become no-ops due to the state.
    I will look into the feasibility of posting some updated VIs.
    ~Simon

  • My Excel with PowerPivots acts weird, it hangs when i try to change font color

    Hi 
    I am facing a weird issue using PowerPivot in my workbook, there is a worksheet named Charts in my workbook and all the charts i am using resides in that worksheet. Whenever i try to change the font color in that sheet, my excel's color palette goes blur
    and then everything just freezes and turns black. This problem is happening only with Charts worksheet, when i try to change the color in other sheets, it works just, the problem is only with Charts sheet. File
    size is 16 MB, there are just 10 pivot tables with some calculations and some calculated fields. There are no add-ins other than PowerPivot. 
    Thanks,
    Shanker

    Hi,
    In regarding of the issue, please provide us more information to assist you better.
    Do you receive any error message?
    Which Excel version are you using?  Excel 2013 or other?
    Which workbook format are you using? XLS or XLSX?
    Are you performing any specific task?
    According to your description, this issue seems only occur with the special worksheet "Charts".
    Firstly, I recommend we copy all of the content to a new/blank Excel file to test.
    If it works fine, this issue might be caused by the "Charts" workbook itself. We'd better check the "Charts" workbook. Or re-build the file with a new workbook.
    If it still makes Excel hang with a new file, this issue might due to the content. Please check the content first.
    Secondly, we could follow below KB to troubleshoot this issue:
    https://support2.microsoft.com/kb/2758592/en-us?wa=wsignin1.0
    Thirdly, if the issue still exists, we may try to collect the Event log and App crash dump file to do advanced troubleshooting.
    Event log:
    http://windows.microsoft.com/en-US/windows7/Open-Event-Viewer
    App crash dump file:
    First enable app crash dump collection by copying following words into notepad, saving it as dump.reg and importing
    it:
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting\localdumps\EXCEL.EXE]
    "DumpFolder"=hex(2):63,00,3a,00,5c,00,63,00,72,00,61,00,73,00,68,00,64,00,75,\
      00,6d,00,70,00,73,00,00,00
    "DumpCount"=dword:00000010
    "DumpType"=dword:00000001
    "CustomDumpFlags"=dword:00000000
    Then, open Excel
    to repro the issue. If crash issue appeared, please find the crashdump file under c:\.
    To further help you, please upload this file into Skydrive and shared the link here.
    Also, you can try to analyze dump by yourself if you would like to:
    How to analyze app crash dump file:
    http://blogs.technet.com/b/askperf/archive/2007/05/29/basic-debugging-of-an-application-crash.aspx
    Hope it's helpful.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Just installed Firefox 4. It hangs when I open any website and type in, for example, an ID, or even just click on something, for example, "Compose", in my webmail site.

    Here's the detail of what happens.
    1. Turn on computer and then click on Firefox icon on desktop.
    2. Firefox opens. Everything looks OK. Mr Bunsen's graphic is working fine.
    3. Click on any webpage link. For example, a newspaper or an online webmail page. All looks OK until
    4. Click on anything or type anything, such as in ID in a box, and bingo, the top line of Firefox goes from dark blue to very pale blue and the computer is hung. You cannot get out of Firefox or get Firefox to work.
    5. Switch off computer.
    Is this perhaps due to a clash of Add-ons. I run Avast anti-virus. McAfee came with Firefox 4 and I did not reject it. Is it conflicting wth something in my system and causing it to hang?

    You can modify the pref <b>keyword.URL</b> on the <b>about:config</b> page to use Google's "I'm Feeling Lucky" or Google's "Browse By Name".
    * Google "I'm Feeling Lucky": http://www.google.com/search?btnI=I%27m+Feeling+Lucky&ie=UTF-8&oe=UTF-8&q=
    * Google "Browse by Name": http://www.google.com/search?ie=UTF-8&sourceid=navclient&gfns=1&q=
    * http://kb.mozillazine.org/keyword.URL
    * http://kb.mozillazine.org/Location_Bar_search

  • I upgraded to the latest version of Firefox but it hangs when I use a search site such as Google or Bing. How can I fix this?

    putting a search option in the search box to the right of the address bar opens up the full search window but then Firefox hangs.

    Your UserAgent string in Firefox is messed up by another program that you installed, and those websites don't know you are running Firefox 3.6.3 (which is what you do have installed).
    [http://en.wikipedia.org/wiki/User_Agent]
    type '''about:config''' in the URL bar and hit Enter
    ''If you see the warning, you can confirm that you want to access that page.''
    Filter = '''general.useragent.'''
    Right-click the preferences that are '''bold''', one line at a time, and select '''''Reset''''',
    Then restart Firefox

  • It hangs when playing games

    My system is Windows 7 - 64 bit operating system
    I've used Firefox for many many years and always praised it compared to EI. I am afraid I wont be able to praise it much more. It stinks. It hangs mostly when I am playing games or looking at pictures or videos. Its worse when on Facebook but also happens on other web site. I did all the troubleshooting, updates, remove old versions and re install, disable add ons all and all Its driving me insane. Can you solve the problem with a new versionof Firefox or do we have to flush the darn browser for good.
    Thank you

    anyone has a solution until a new version comes out?

Maybe you are looking for