Fire fox is back to not exiting properly this started again at about version 17 . I have reinstalled it but not luck

Fire fox is back to not exiting properly this started again at about version 17 . I have reinstalled reset it but no luck.

See:
*"Hang at exit": http://kb.mozillazine.org/Firefox_hangs
*"Firefox hangs when you quit it": https://support.mozilla.org/kb/Firefox+hangs
Make sure that Firefox closes properly and that there isn't a hanging Firefox or plugin-container process left in the task manager.
Try to use "Firefox/File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit") to close Firefox if you are currently doing that by clicking the close X on the title bar.
You can also check for issues with plugins.
*https://support.mozilla.org/kb/Troubleshooting+plugins

Similar Messages

  • My itouch is not being recognized by itunes or my computer. I have reinstalled itunes but with no results

    a 8 gig ipod touch of my nephew is not being recognized by itunes or my comp

    Assuming you are using a Windows based computer...
    iOS: Device not recognized in iTunes for Windows

  • My APPLE ID is NOT working properly. I am frustrated beyond belief I have tried time and time again to change my apple ID and it keeps reverting back to my original ID!! I even set up a new email to try to submit a new id and it still does not work

    My APPLE ID is NOT working properly. I am frustrated beyond belief I have tried time and time again to change my apple ID and it keeps reverting back to my original ID!! I even set up a new email to try to submit a new id and it still does not work

    To change your Apple ID, follow these steps:
    Go to My Apple ID (appleid.apple.com), click "Manage your Apple ID", and sign in.
    If you have two-step verification turned on, you'll be asked to send a verification code to the trusted device associated with your Apple ID. If you are unable to receive messages at your trusted device, follow the guidelines for what to do if you can't sign in with two-step verification.
    In the "Apple ID and Primary Email Address section," click Edit.
    Enter the email address you want to use, then  click Save Changes. Apple will send a verification email to that  address.
    Open the  email  from Apple, then click Verify Now in the email.
    When the My Apple ID page opens, sign in with your renamed Apple ID.
    If you have two-step verification turned on, you'll be asked to send a verification code to the trusted device associated with your Apple ID.
    After you see a message indicating that verification is complete, remember to update all of the stores and services that you use with your  Apple ID.

  • Simple Question: Why does this code not exit properly?

    This code is pretty simple. All I want to do is load and play a sound file in an application, but this code to load the sound file does not exit properly. I know that some resources must be allocated which I need to deallocate in order to shut down the process, but I don't know what to call to do a proper shut-down. Any help would be appreciated.
    -adam
    import java.applet.Applet;
    import java.applet.AudioClip;
    import java.net.MalformedURLException;
    import java.net.URL;
    public class PlaySoundTest extends java.applet.Applet
    public static void main( java.lang.String[ ] aryArgs )
    java.net.URL urlSound = null;
    try
    urlSound = new java.net.URL( "file:/" + aryArgs[ 0 ] );
    catch( java.net.MalformedURLException murle )
    murle.printStackTrace( );
    System.exit( 1 );
    java.applet.AudioClip acSound = java.applet.Applet.newAudioClip( urlSound );

    HI , If u'r still looking for the solution, this code is working on my system -
    import java.applet.Applet;
    import java.applet.AudioClip;
    import java.net.MalformedURLException;
    import java.net.URL;
    public class PlaySoundTest extends java.applet.Applet
    public static void main( java.lang.String[ ] aryArgs ){
    java.net.URL urlSound = null;
    try{  //rahul
    try
    urlSound = new java.net.URL( "file:" + aryArgs[ 0 ] );
    catch( java.net.MalformedURLException murle )
    murle.printStackTrace( );
    System.exit( 1 );
    urlSound = new java.net.URL( "file:" + aryArgs[ 0 ] );
    java.applet.AudioClip acSound = java.applet.Applet.newAudioClip( urlSound );
    if(acSound != null){
    acSound.play();
    catch( Exception murle )
    {        //rahul
    murle.printStackTrace( );
    System.exit( 1 );
    }//main
    The only change I made was in the URL part - file: instead of file:/ .
    The other was of course to play the soundclip ...... :- ) I got really confused the first time I played it .

  • Adobe PE8 will not exit properly

    Is there any sort of a fix for Adobe PE8 not exiting properly?  If I load ANY project at all, then exit PE8, the process just stays running.  I have to go into windows task manager and manually end the process to get it to start up again.
    This is a pretty blatant bug, that seems to affect a lot of systems.   Certainly bodes poorly for PE8's testing process.
    I know there's a utility someone wrote to sort of monitor processes in the background to end the premiere elements process when it hangs  around too long, but that's not a real solution (although I appreciate the effort to help out, Adobe should have not let this bug get released).
    A real solution is to release an app that can exit properly without hanging.
    -Roger Uzun

    ruzun wrote:
    Is there any sort of a fix for Adobe PE8 not exiting properly?  If I load ANY project at all, then exit PE8, the process just stays running.  I have to go into windows task manager and manually end the process to get it to start up again.
    You are of course right that Adobe should issue a fix, and I can understand reticence against running a third party program to monitor the application.
    But, if you are comfortable with creating a Windows Command File with notepad, there is a Vista and XP solution that uses only the windows standard commands 'taskkill' and 'net stop' and, once finished, you can kill any processes and services with a single click.
    To start, run cmd as adminstrator (click orb, type cmd, right-click cmd.exe and select 'Run as Administrator':
    From the command window created run "taskkill /?" and "net help stop" for full syntax. You can see that taskkill kills processes and net stop stops services.
    To show how these work:
    start Premiere (I suggest with an empty project).
    you will see Adobe Premiere Elements on the task bar.
    Start task manager and you will see the process is called Adobe Premiere Elements.exe.
    In your command window type (including the quote marks):   taskkill /IM "Adobe Premiere Elements.exe"
    Press enter and watch as PrEl closes down and disappears from the task bar..
    In Task Manager look at the services tab. Lets say we want to close down the Adobe watch folders service. This is called (in PrEl7) "AdobeActiveFileMonitor7.0".
    In your command window type:   net stop AdobeActiveFileMonitor7.0
    Press enter and watch the service take on the status "Stopped".
    Obviously typing these commands one at a time is impractical. But, once you have identified the processes you want killed and the services you want stopped, you can enter all the commands in a simple text file created with notepad. Once you have entered all the commands save the file out with the extension cmd (eg "prelcleanup.cmd" without the quotes).
    Example content:
    taskkill /IM "Adobe Premiere Elements.exe"
    taskkill /IM "something else"
    taskkill /IM "and more"
    net stop AdobeActiveFileMonitor7.0
    net stop something else
    net stop more
    pause
    The pause at the end allows you to see the actions taken.
    Drag this file to your quicklaunch on the taskbar and, voila, a single click can now run those commands.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children

  • AirDrop is not working properly on my Ipad mini, it doesn't have the accept button. What can I do?

    AirDrop is not working properly on my Ipad mini, it doesn't have the accept button. What can I do?

    What are you trying to AirDrop to? Another iOS device or a Mac?
    Check out this tutorial for getting AirDrop setup as well as the system requirements...make sure your devices all meet the stated requirements.
    http://9to5mac.com/2015/01/24/yosemite-ios-8-how-to-set-up-and-use-airdrop/
    See this as well:
    Mac Basics: AirDrop lets you send files from your Mac to nearby Macs and iOS devices - Apple Support

  • I get a notice that says a security and stability update is recommended for Fire Fox 3.6.15. When I click to update a bar appears showing attempt to contact but nothing ever updates.

    I get a notice that says a security and stability update is recommended for Fire Fox 3.6.15. When I click to update a bar appears showing attempt to contact but nothing ever updates.

    Sometimes the updater gets in a funny state - Go to http://www.mozilla.org/en-US/firefox/new/ and download the full installer. Close Firefox and run the installer

  • HT201209 I bought my Apple iTunes & Apple AppStore Card's at Best Buy, but when I try to use them I get this error: The Gift Certificate or Prepaid Card code you entered has not Ben properly activated. What did I do wrong or did Best Buy not scan it right

    I bought my Apple iTunes & Apple AppStore Card's at Best Buy, but when I try to use them I get this error: The Gift Certificate or Prepaid Card code you entered has not Ben properly activated. What did I do wrong or did Best Buy not scan it right! Real Geniuses in that store!

    If so, then review the first link to see if you can troubleshoot your issue yourself. If that doesn't work, then contact iTunes Support via the second link below:
    Invalid, inactive or illegible codes:
    http://support.apple.com/kb/TS1292
    Contact iTunes support here:
    http://www.apple.com/support/itunes/contact/
    Cheers,
    GB

  • ITunes for Windows freezes when importing a library. I have a large but not huge library of mostly iTunes purchased music on two authorized computers and would like to sync the files, export the library as a playlist, and import it on the other computer.

    I am running iTunes for Windows 10.2.2 on Windows 7 Home. I have my iTunes library on both this computer and another authorized machine running Windows 7 Professional. I have a large but not enormous library, as I'm one of those people who doesn't pirate, use torrents, borrow from a dozen friends, or whatever other shades of gray you might imagine. It's mostly iTunes purchases with my old CD collection imported. I have started using the following technique to sync my libraries between my two authorized computers, an ability which you can probably all agree should one day be added to iTunes -- that would be different from Home Sharing, because the music would be stored locally and thus available on the road. With the added benefit of the entire library being backed up on the other machine in real-time. Anyway, when I switch from my desktop to laptop and vice versa, I use the following technique:
    Connect both machines to the home network. One machine is the "Active" machine, which has most recently been used for iTunes media, purchases, ratings, etc.
    On the "Active" machine, File-->Library-->Export. Save the file as "Library.xml" on the shared drive of the other machine.
    Right-click "Library.xml" where it's been saved, and open another file that has two lines in it: The root path of the iTunes library on one machine and the root path of the iTunes library on the other machine.
    Do a find/replace all in Notepad to make the library XML file point to where the files will be saved on the "Inactive" machine.
    Run Microsoft SyncToy to synchronize the files between both music libraries; the most recent files win. This avoids copying the entire multi-gigabyte library over the network.
    Open iTunes on the "Inactive" machine.
    Go to Music, Select All, Delete. Keep files.
    Do the same for Movies, Music Videos.
    Go down to Playlists, select the top one, hold down the delete button until they're all gone.
    File-->Library-->Import Playlist. Choose the "Library.xml" file you saved.
    First a status bar comes up that says, "Importing library." It has the continually-scrolling progress bar, not the one that starts on the left and steadily creeps right. Then after about 30 seconds, that clears out. Wait. Typically a few minutes. Eventually a status bar will pop up saying something like, "Evaluating gapless playback information," or something like that.
    The "Inactive" computer is now the "Active" computer. I can now play my library, it has all my playlists and metadata from the other machine.
    Delete all the duplicate playlists named "Music," "Genius," "Purchased," and "iTunes DJ."
    Well, I just upgraded to iTunes 10.2.2 a few days ago and tried to do this again like I've done it dozens of times before. Now, iTunes just goes unresponsive after the library import. It got through the "Importing library" bar to the long wait and stopped. I can still multiprocess and use other programs, but iTunes is hovering back there not responding to clicks. Task Manager doesn't seem to think iTunes is using my CPU, and I don't see my hard drive rattling. Any thoughts on why iTunes might hang up when importing a large library?
    ... Also, please help lobby Apple to come up with a network sync tool built into iTunes for a user with multiple authorized computers. Something different than Home Sharing so I can pull my laptop off the network and still have the synced library with me. And all my metadata changes will sync. The technique I use seems a little kludgey, don't you think?

    iTunes isn't an editor. You need an app that's intended for editing audio files, like Adobe Audition (http://www.adobe.com/products/audition.html) or Audacity (free in the App Store).

  • The front camera on my iPod touch 4th generation is frozen. I cannot use it. Updating software does not help. This started right after I bought it, new from BestBuy. What can I do?

    The front camera on my iPod touch 4th generation is frozen. I cannot use it. Updating software does not help. This started right after I bought it, new from BestBuy. What can I do? When i go to the camera, it is stuck on a black screen. the only way to use my camera is through other camera apps, but if I try to switch it to the front camera, it freezes again.

    If you still have the problem after retoring the iPOd to factory defaults/new iPod then The iPod is likely defective and replacement is required.  You can make an appoinment at the Genius Bar of an APple store or take it back to BestBuy if within warranty

  • TS1702 i downloaded advance cinema app from tha app store, but everytime i click on a movie, it takes me to the IMDB website and im not able to watch the movie. The app promises 4000 free movies, but not able to watch any new movies...

    i downloaded advance cinema app from tha app store, but everytime i click on a movie, it takes me to the IMDB website and im not able to watch the movie. The app promises 4000 free movies, but not able to watch any new movies...

    I have found the issue. I have not found an answer to the prob. I have put in a case with customer service. If it doesn't work right, I need my money back!!!

  • I have an ipod and an iphone 3GS and a wireless LAN device, with my ipod I have a connection, but not with my iphone ... why is that?

    I have an ipod and an iphone 3GS and a wireless LAN device, with my ipod I have a connection, but not with my iphone ... why is that?

    - An iPod can only sync with one iTunes library. Yu can however manage music and videos among different computers by:
    Using iPhone, iPad, or iPod with multiple computers
    - To change syncing computer, move all the media to compute r#2
    - Connect the iPod to #2 and make a backup by right clicking on the iPod under Devices in iTunes and select Back Up
    - Restore the iPod from that backup
    Note tha the iPod backup the iTunes makes does not include synced media like apps and music.

  • My IPhone 4s is freezing up and the wifi will not work. This happened after the update. I have tried to restore it and that did not fix it. Any suggestions?

    My IPhone 4s is freezing up and the wifi will not work. This happened after the update. I have tried to restore it and that did not fix it. Any suggestions?

    Most of your purchases content can be downloaded again via the Purchased tabs in each of the store. I realize that this will be a problem for the iTunes Store on the iPad, but that has nothing to do with apps, since apps are in the App Store.
    If you backed up synced with iTunes before you restored the iPad, your content should be in iTunes on your Mac and you should be able to sync it back again.

  • Cannot send email from my iPhone or iPad. The server rejects a recepient for no apparent reason.  The recipient is not new.  This issue happens on reply or reply to all or froward; not a new email. What is happening?

    Cannot send email from my iPhone or iPad. The server rejects a recepient for no apparent reason.  The recipient is not new.  This issue happens on reply or reply to all or froward; not a new email to the same recepient. What is happening?

    I talked with a tech today and he said I cloud is having problems which should be resolved shortly.
    In the mean time I used the .me smtp server settings which allowed me to send mail.

  • TS1814 Most of the songs on my iPod Classic no longer dshow up on iTunes on my laptop.  I deleted iTunes & installed the latest version but this did not change anything.  For example on 1 playlist I have 66 songs but only 1 shows on the iTunes screen.  Th

    Most of the songs on my iPod Classic no longer show up on iTunes on my laptop.  I deleted iTunes & installed the latest version but this did not change anything.  For example on 1 playlist I have 66 songs but only 1 shows on the iTunes screen.  Thanks you for any help.

    See Empty/corrupt iTunes library after upgrade/crash or
    Recover your iTunes library from your iPod or iOS device.
    tt2

Maybe you are looking for