The save and quit function doesn't work in firefox 4

The quit and save button on exit doesn't come up. I always liked that function.

There were some changes in Firefox 4 default settings for some of the warning messages. You can set this hidden pref to what you want, to give the warning when closing multiple Tabs. <br />
# Type '''about:config''' into the location bar and press enter
# ''If you see the warning about accessing those prefs, you can confirm that you want to access that page.''
# Type '''browser.tabs.warnOnClose''' in the '''Filter''' line at the top, and that pref will appear. If its value is set to '''false''', double-click on it to change its value to '''true'''.
# Then restart Firefox.
You can repeat that for these 3 preferences - '''browser.warnOnQuit''', '''browser.warnOnRestart''' and '''browser.showQuitWarning''', if you want to change those too.

Similar Messages

  • How do i copy content from one hard rive to another through my macbook air? the copy and paste option doesn't work

    How do i copy content from one hard rive to another through my macbook air? the copy and paste option doesn't work

    It's because of the extension of the hard drive is a Windows extension ( most likely MSDOS or Ex-FAT), meaning you can only read but not write. If there are no important files (or you can copy the whole thing to your computer/mac) you can just reformat the hard drive and change the extension to NTFS (readable and writable on both windows and mac) or Mac OS Extended (readable and writable on Mac, readable on windows).
    Go to DISK UTILITY
    Choose the Hard Disk you intended
    ERASE
    You can choose either
              (I personally prefer this one, you know just in case)

  • When I updated Facebook 6.7.0, It didyn't complete the updating and my Facebook doesn't work so I deleted it. What can I do now to downgrade  it ?

    when I updated Facebook 6.7.0, It didyn't complete the updating and my Facebook doesn't work so I deleted it. What can I do now to downgrade  it ?

    If recovery mode did not work, try DFU mode, but don't use the latest backup to restore from after you have set it up "as new ipod" again.
    DFU mode

  • I lost the save and quite funtion in FF16.0.1 .about config is not working..

    I have set the function of save and quite in the FF 15.0.1 However, I lost it after upgraded it to 16.0.1 .I try to use about config method .But it's not working..

    Hi,
    it seems I lost my other account or made some other mess.
    anyway, reading this thread I think I can give you better pointers for troubleshooting than on my blog.
    Please run a
    dmsetup ls
    once you're in the installer (thats for me to verify)
    now, next, it seems all that is missing is the multipath config file in the install initrd.
    If the target linux mpath (if it still exists, i don't got time for testing) is selected, then multipathd will be launched - but without a config, the internal defaults will take over, meaning you end up with the user friendly name instead of the WWN.
    Basically you should be able to find the error looking at the kickstart /etc/rc and restarting multipath with new configs over and over.
    Might be fun :)
    It would be helpful if Oracle picked up your fixes even w/o a support contract. :)
    (ranting: It'll be a festival for me when the multipath tools devs finally get around to groking the world of real sans and create a plugin api for enclosure based naming that is just 10% as good as the one in VxVM. WWIDs are a sad joke, they're intended so the OS can identify the disks well so it can present userful names to the user.
    Not to let the user choose between useless udev-names and non-human-readable WWNs. And yeah, I have tried to make udev scripts for enclosure based naming. Didn't go well obviously :)

  • Files deleted from the Library and now internet doesn't work?

    Hello,
    I'm new here and this is probably going to sound dumb but... my father deleted some files from the Library by mistake and now internet doesn't work in his computer. Everything seems normal, but the webpages don't load (we tried lots of pages and 3 browsers). If you try to update any software it can't connect to the internet either.
    He reinstalled the system (it's Mountain Lion, I think) but it didn't worked (it was a partial reinstallation, without losing the data). He also tried restarting and pressing CMD-R but nothing happened.
    Any ideas on how to solve this problem? Thank you so much in advance! (and sorry for any typos, English is not my native language)

    Hello Eleone, & a warm Welcome!
    So what exactly isn't working or any messages you get?
    Does Mail still work?
    Might try this...
    Make a New Location, Using network locations in Mac OS X ...
    http://support.apple.com/kb/HT2712
    10.5, 10.6, 10.7 & 10.8…
    System Preferences>Network, top of window>Locations>Edit Locations, little plus icon, give it a name.
    10.5.x/10.6.x/10.7.x/10.8.x instructions...
    System Preferences>Network, click on the little gear at the bottom next to the + & - icons, (unlock lock first if locked), choose Set Service Order.
    The interface that connects to the Internet should be dragged to the top of the list.
    If using Wifi/Airport...
    Instead of joining your Network from the list, click the WiFi icon at the top, and click join other network. Fill in everything as needed.
    For 10.5/10.6/10.7/10.8, System Preferences>Network, unlock the lock if need be, highlight the Interface you use to connect to Internet, click on the advanced button, click on the DNS tab, click on the little plus icon, then add these numbers...
    208.67.222.222
    208.67.220.220
    (There may be better or faster DNS numbers in your area, but these should be a good test).
    Click OK.

  • Xul drag and drop function doesn't work Firefox 17 ESR but works in Firefox 10 ESR

    I am having a problem with a xul drag and drop function designed for selenium rc and selenium IDE. It works in Firefox 10 ESR but does not work in Firefox 17 ESR.
    the code used for the draganddrop function is added below:
    Selenium.prototype.doXulDragAndDropToObject = function(locatorStartElement, locatorEndElement) {
    var startElement = this.page().findElement(locatorStartElement);
    if (startElement.wrappedJSObject) {
    startElement = startElement.wrappedJSObject;
    var endElement = this.page().findElement(locatorEndElement);
    if (endElement.wrappedJSObject) {
    endElement = endElement.wrappedJSObject;
    var dropValue;
    var startTreerow = getAncestorsByTagName(startElement, 'treerow')[0];
    var treeCells = startTreerow.children;
    for(var i=0; i<treeCells.length; i++) {
    var val = treeCells[i].getAttribute('value');
    if(val) {
    dropValue = JSON.parse(val);
    if(dropValue) {
    endElement.drop(dropValue);
    The is the error message I received when the draganddrop fails in FireFox 17 ESR:
    [error] Unexpected Exception: message -> An attempt was made to use an object that is not, or is no longer, usable, code -> 11, INDEX_SIZE_ERR -> 1, DOMSTRING_SIZE_ERR -> 2, HIERARCHY_REQUEST_ERR -> 3, WRONG_DOCUMENT_ERR -> 4, INVALID_CHARACTER_ERR -> 5, NO_DATA_ALLOWED_ERR -> 6, NO_MODIFICATION_ALLOWED_ERR -> 7, NOT_FOUND_ERR -> 8, NOT_SUPPORTED_ERR -> 9, INUSE_ATTRIBUTE_ERR -> 10, INVALID_STATE_ERR -> 11, SYNTAX_ERR -> 12, INVALID_MODIFICATION_ERR -> 13, NAMESPACE_ERR -> 14, INVALID_ACCESS_ERR -> 15, VALIDATION_ERR -> 16, TYPE_MISMATCH_ERR -> 17, SECURITY_ERR -> 18, NETWORK_ERR -> 19, ABORT_ERR -> 20, URL_MISMATCH_ERR -> 21, QUOTA_EXCEEDED_ERR -> 22, TIMEOUT_ERR -> 23, INVALID_NODE_TYPE_ERR -> 24, DATA_CLONE_ERR -> 25, result -> 2152923147, name -> InvalidStateError, filename -> chrome://selenium-ide/content/selenium-core/scripts/htmlutils.js, lineNumber -> 1183, columnNumber -> 0, location -> JS frame :: chrome://selenium-ide/content/selenium-core/scripts/htmlutils.js :: :: line 1183, inner -> null, data -> null
    firefox selenium-rc selenium-ide

    hello, your question conatins a few issues...
    *if you want to use the regular release version (firefox 18.0.2 at the moment) and not a beta version, then please download the setup file from getfirefox.com & install it on top of your current installation
    *when there is a folder named "old firefox data" on your desktop, then you've done a [[Reset Firefox – easily fix most problems|reset of firefox]] which had reset most of your preferences to the factory default & removed all extensions. if you want to revert that, go to ''firefox > help > troubleshooting information'' and click on ''profile folder/show folder''. a windows explorer window should open up. now close all open firefox windows and replace all the contents of your current profile folder with the data that is stored inside the "old firefox data" folder on your desktop.
    *the plugin check website isn't working at the moment - so the problem you're seeing here isn't on your end. hopefully this will be fixed soon on the server-side...

  • Save and Quit tabs does not work properly.

    When asked to Save and Quit tabs for the specific session is selected, Firefox does not restore tabs at the next session.
    I have read the posts where it is suggested to change the settings and simply never clear the history. However this is not the way that Firefox behaved in older versions, NOR IS IT A SOLUTION due to the following:
    The pop-up on exit to Save and Clear is clearly asking the user if that specific session should be remembered and then clearing the history should be superseded by saving instead. Otherwise, what is the point of asking the user to save? A pop-up warning saying that the tabs will not be remembered would be more appropriate.
    Regardless, the user has been asked if this specific session should be remembered, and this clearly being the last choice done by the user, supersedes the prior settings for this one specific session. The tabs should be remembered, as the user has instructed (and Firefox used to do in the past), and yet Firefox opens a new session having dumped the information.
    Changing the settings to remembering the history instead, does not serve people that want most times to clear it. This would then mandate a manual clearing of history every time before a session is ended instead.
    This will need a permanent fix/rollback to the way Firefox used to behaved in these circumstances in older versions.

    After transferring musics to the device selecting by mass storage mode you need to follow this
    Go to Device Menu> Music> Music Player> Option> refresh library
    have you followed this? if this does not help could you please provide more information sothat someone can help you to solve your problem?
    A. Device details ( type *#0000#)
    B. System Information details ( Help About- Ovi Suite- System Information : Copy & paste )
    Please THANK me by clicking on the ****WHITE STAR** ( Giving KUDOS) the big GREEN BOX to your LEFT .
    It will help me to serve you better !!!!!
    Thanking You

  • What happened with the "save and quit" option when closing multiple tabs?!

    I loved this little function and now it is gone?! If there is no way to get it back I will either go back to mozilla 3.6 or turn to other browsers.... Very dissapointed!

    Firefox 4 automatically saves your session when you close Firefox, but it doesn't automatically restore that session the next you open Firefox. You can use '''Restore Previous Session''' on the about:home page or in the History menu item.
    To make Firefox 4 work like Firefox 3.6 in that regard: <br />
    # Type '''about:config''' into the location bar and press enter
    # Accept the warning message that appears, you will be taken to a list of preferences
    # Locate the preference '''browser.tabs.warnOnClose''', if its value is set to '''false''', double-click on it to change its value to '''true'''
    # You can do that for these 3 preferences,too: '''browser.warnOnQuit''', '''browser.warnOnRestart''', '''browser.showQuitWarning'''

  • I updated to Firefox 4 and ever since it won't open. It says the process is running but no matter how long I wait it won't open the browser and restarting or ending the process and trying again doesn't work either. Is there any way to fix this?

    I thought it might be a compatibility issue with Windows Vista but the same problem happened on a computer with Windows 7. I'm not sure if the Windows 7 problem was resolved, though.

    You probably have other problems but for a start right click on your task bar and click on Start Task Manager. In "Applications" if Firefox is shown, click on "End Task". In "Processes" if Firefox.exe is shown, click on "End Process" and ignore the warning and click"End Process" again. Wait for a few seconds then start Firefox in the usual way. There is a chance that this may solve your problems.
    If not, you probably will need to do a complete uninstall and re-install. If you can't start Firefox you could try starting in Safe Mode - Hold down Shift key as you double click on the Firefox icon>ignore the page that opens>and Continue. If you've been able to open Firefox you could work through this Troubleshooting Procedure -
    https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes
    If at any stage you are not making progress, report back here for best advice on an Uninstall/Re-install which is quite likely to be necessary.

  • Whenever i open safari all the adverts comes on the screen and also youtube doesn't work properly it freeze and after two or three minutes it works fine so please need help

    i am using macbook pro late 13 from few days whenevr i open safari all the adverts comes up and chrome is too slow somthing is wrong with the youtube it get slow when i go on it and after 2 or three minutes it work so i need help i hope yu guys help me

    Adware Removal Guide
    http://www.thesafemac.com/arg/
    YouTube
    1. System Preferences >  Flash Player > Advanced >  Delete  All
         Press the "Delete All" button
         Install Adobe Flash Player.
        http://get.adobe.com/flashplayer/
        Follow the prompts.   Click Safari in the menubar and select “Quit Safari”.
        Restart computer. Relaunch Safari.
    2.  Allow  Plug-ins
        Safari > Preferences > Security
        Internet Plug-ins >  "Allow  plug-ins"
        Enable it.
        Press " Manage Website Settings" button for more options.
    3. Safari > Preferences > Privacy
        Press the button “ Remove All Website Data”.

  • HT201401 My speaker does not work it just stopped right in the middle of the call, I have restarted the phone and it still doesn't work!! What.do I do?

    My speaker stopped working right in the middle of a call, I have reset my phone and powered off and back on
    And it still will not work, I can hear sound trying to come
    Thru randomly and goes right back out!! :( what do I do to fix this??

    http://support.apple.com/kb/TS2802

  • I can't re-enable the save and quit option when i close a window

    When you close a window, there appears a window containing the options: Save and close, close without saving and cancel, and a box that says do not ask again. Well, a friend checked this last option by accident and now every time I close when I open again I see the same pages where I was before closing. My question is: Is there any way to re-enable the option to exit without saving?

    In the [[Location bar autocomplete|Location bar]], type '''about:config''' and press Enter . The about:config "This might void your warranty!" warning page may appear. Click I'll be careful, I promise! , to continue to the about:config page.
    Search for the preference '''browser.tabs.warnOnClose''', and double-click on it which should set the value to '''true'''

  • The search function doesn't work in Firefox 4.

    When I go to Firefox home, the search box appears but does not work. MY OS is Windows XP.

    There were some changes in Firefox 4 default settings for some of the warning messages. You can set this hidden pref to what you want, to give the warning when closing multiple Tabs. <br />
    # Type '''about:config''' into the location bar and press enter
    # ''If you see the warning about accessing those prefs, you can confirm that you want to access that page.''
    # Type '''browser.tabs.warnOnClose''' in the '''Filter''' line at the top, and that pref will appear. If its value is set to '''false''', double-click on it to change its value to '''true'''.
    # Then restart Firefox.
    You can repeat that for these 3 preferences - '''browser.warnOnQuit''', '''browser.warnOnRestart''' and '''browser.showQuitWarning''', if you want to change those too.

  • How can I fix the problem when I can't completely erase find my iphone from my mac? It says "pending erasa find my iphone until your iphone connect to the internet". My iphone already connected to the internet and it still doesn't work. Anyone have idea?

    Actually I want to restore my iphone from my mac but I can't because it says "go to icloud settings on your iphone and turn off find my iphone before restore your iphone". Then, I go to icloud.com and erase find my iphone. But I still can't restore my iphone because it says pending to erase your iphone until your iphone connected to the internet. My iphone already connected to the internet and it still says pending. Please help me to fix this problem because I need to restore my iphone.

    Hello rxander21,
    Force your iPhone into recovery-mode and then you can use iTunes to restore it.
    iOS: Unable to update or restore
    http://support.apple.com/kb/HT1808
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • Drop on the floor and volume button doesn't work

    By mistake,I drop my ipad2 on the floor,and now the volume button was broken.it can't turn louder and lower. So,is there anybody can tell me how to do now?

    well being that the hardware is damaged you pretty much got 2 options
    1. live with it
    2. return it to have apple fix it

Maybe you are looking for

  • Sun ONE Studio 5 Installation problem

    Hi, I have problems to install Sun ONE Studio 5. I download it from the download center (my username is nicola80) and I can't install it in my Linux Mandrake 8.2 version. The problem is that when the InstallShield start, I have the error message: "To

  • Copying pdf to excel

    I'm trying to copy and paste from acrobat 9 into excel.  The lines all copy into the same cell.  I would like the lines to be split into different columns.  I am using copy as table and paste special.  Is that correct?  Is there any other way to do t

  • DMS IXOS Query

    Hi, I want to know that whenever I delete any attachment from a Contract in transaction ZT03 , is there any change Log which is created which will give us a trace like who deleted it and when? Please help. Regards, Loveena.

  • Security Lock with New Update

    Since the update, i've not been able to password lock my phone via the lock key. Is this possible to do with the latest patch or will i simply have to let it time out?

  • Send sms to mobile using java

    hi All I have a simple application, whenever a particular record goes to the database I need to send an sms to a mobile. I would appreciate if anyone can help me as to what steps I need to follow to do this.Is there any java api that can help me achi