When i make changers to my firefox settings and i close the browser, the changes are not saved, why?

when i make changes in the options menu like - allow pop ups or never remember history, it works great but when i close the browser, the changes i made are not saved, this never happened on the previous version
i have unistalled firefox4 and reinstalled it but this dows not help

See:
* http://kb.mozillazine.org/Preferences_not_saved

Similar Messages

  • Upon startup Firefox says "Proxy is refusing connections." When I select "Auto-Detect Proxy" from Advanced settings and solve problem, changes are not saved and upon next startup I must select again...!

    Firefox 4 was working fine. Then one day, when I started up Firefox, it says "Proxy is refusing connections." I solved this by selecting "Auto-Detect Proxy" from Advanced network settings, but my changes are not saved and upon every start-up I must select it again! (I even completely removed my webroot antivirus protection, as it as hindering many proxy related programs, but this seems to not be the source of the problem)

    You can find the connection settings in Tools > Options > Advanced : Network : Connection
    If you do not need to use a proxy to connect to internet then select "No Proxy"
    See "Firefox connection settings":
    * https://support.mozilla.com/kb/Firefox+cannot+load+websites+but+other+programs+can
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    See also:
    *http://kb.mozillazine.org/Preferences_not_saved

  • After upgrading to FF 7. When I change my Privacy settings to Use custom settings and check ok, the changes are not saved.

    Using Win 7 sp1
    FireFox 7.0.1
    In Privacy Settings: When I change the FireFox will: to "use custom settings for history" and check ok, the setting isn't saved. After I close, then reopen the Privacy Settings tab, the setting for FireFox will: is back to "remember history"
    Thank you

    You can try to delete the cookies.sqlite and permissions.sqlite files in the Firefox profile folder.
    You can use this button to go to the currently used Firefox profile folder:
    *Help > Troubleshooting Information > Profile Director: Show Folder (Linux: Open Director; Mac: Show in Finder)
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    You can inspect and manage the permissions for the domain in the currently selected tab via these steps:
    *Click the "Site Identity Button" (globe/padlock) on the location bar
    *Click "More Information" to open "Tools > Page Info" with the Security tab selected
    *Go to the Permissions tab (Tools > Page Info > Permissions) to check the permissions for the domain in the currently selected tab
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • POI Information Updates when Costing Changes are not Saved

    Hi All,
    When you go to the costing screen of a party in Oracle HRMS, make changes to the costing string (Cost Allocation Flexfield) and not save them. Then, exit from the costing form and go to the Purchase Order Information (POI) screen and press Ctrl+F11, the POI information updates to the new changes. It was my understanding that in order for the purchase order info to be updated you need to make changes or "touch" the costing screen and save. I have noticed that the purchase order changes after being in the costing screen even without saving anything. Was this intend?
    Thanks,
    Naveen Gagadam

    The Changes on the Assignment reflect because of the changes on the Costing Screen. This is due to the custom.pll implementation. Is there an event name that I can use for the Assignment form such that the changes on the Assignment screen show up only after the changes are SAVED on the Costing Screen. Here's the code that we are using in the Procedure: Event of the custom.pll
    ====================================================================================
    If Event_name = 'WHEN-VALIDATE-RECORD' then
    --     1. Costing checks at Assignment (PERWSEAC). This code copies first 4 segments of costing string
    --               to Default Expense Account on the Assignment screen.The Code will perform this function for
    -- the first Costing record but no other record.
    if name_in('system.current_form') in ('PERWSEAC') then
         Step_identity := 'Costing to Expense Account Population';
                   if name_in ('system.cursor_block') = 'COST' then
    -- Check if current record is the first record in the block
    -- prior to 4/6/05 this code only ran if first costing record. now runs for all and passes
    -- whether first record to package. B Wagner                    
    if name_in('system.cursor_record') = '1' then
              lvc2_first_rec := 'Y';
    else
         lvc2_first_rec := 'N';
    end if;
                        if name_in('COST.SEGMENT1') is not null
                   and name_in('COST.SEGMENT8') is not null
                   and name_in('COST.SEGMENT2') is not null
                   and name_in('COST.SEGMENT3') is not null then
                             lvc2_company_nm     := name_in('COST.SEGMENT1');
                             lvc2_LOB := name_in('COST.SEGMENT8');
                             lvc2_location := name_in('COST.SEGMENT2');
                             lvc2_dept := name_in('COST.SEGMENT3');
                             FND_PROFILE.get('USER_ID',ln_user_id );
         -- It has been assumed that the seperator for the flexfield segments is a period ('.') .
         -- If the seperator is changed then the following line of code has to be modified.
         -- If the number of segments in the flexfield definition is changed then the number of
         -- separators has also to be modified.
    ln_assignment_id := name_in('COST.ASSIGNMENT_ID');
    ld_session_dt := name_in('CTL_GLOBALS.SESSION_DATE');
    smc_customlib.set_exp_act(
                                                                     ln_retcode,
                                                                     lvc2_errbuf,
                                                                     ln_user_id,
                                                                     ln_assignment_id,
                                                                     ld_session_dt,
                                                                     lvc2_company_nm,
                                                                     lvc2_LOB,
                                                                     lvc2_location,
                                                                     lvc2_dept,
                                                                lvc2_first_rec
    if ln_retcode = -1 then
         -- b wagner 4/6/05 - raise trigger failure so bad combinations can't be entered into costing screen
         fnd_message.set_string(lvc2_errbuf);
         fnd_message.error;
         raise form_trigger_failure;
    end if;
                        end if; -- If costing string is complete
                   end if;   If First Record of COST Block
                   end if; -- If Block is COST
         end if;     -- For Assignment form.
    ================================================================================================================
    Its the custom package that actually populates the changes in Costing Screen onto the Assignment Screen, but I want to activate this only when I save the changes on the Costing Screen. Right now the changes are seen on Assignment Screen when I hit CTRL=F11 even when I don's save the Costing Screen changes.
    Thank You,
    Ngagadam.
    Message was edited by:
    Naveen Gagadam
    Message was edited by:
    Naveen Gagadam
    Message was edited by:
    Naveen Gagadam
    Message was edited by:
    Naveen Gagadam

  • FPE2 doc changes are not saved when C4EYE is reset via workflow

    Hello All,
        I'm utilizing event # 5504 in FQEvents (in FICA) to start a workflow.
    When a user sets a payment method in FPE2, I set the C4EYE and then explicitly create a custom event which starts my approval workflow. On saving the document changes, I get a message "document changes noted" (instead of the usual "document changed" message).
    The changes made in FPE2 are only seen as a 'planned change' button in FPE2 (on the 'change item' screen) with the old and new values and the change number associated with it. Also, the check reason has been applied. Incidentally, all of the above (except ofcourse the event and start start of workflow ) happens if I all I do is merely set the check reason (C4EYE) in event 5504.
    Meanwhile, the workflow does its thing, determines agents and gets the approval and on approval, it calls  FKK_C4EYE_RESET passing the document # and change # to reset the Check reason. Despite the workflow completing successfully and resetting the check reason, my newly added changes (such as the payment method etc) are blank - meaning any changes made in FPE2 have been lost. I don't have the 'planned change' button either.
    Incidentally, to eliminate any problems with the custom-event-workflow logic, I also turned off the event and the workflow - just left the logic to set the C4EYE check reason to '01' in the 5504 fqevent in case a payment method is set. I set the payment method in FPE2 and 'saved' the change which set the check reason.
    I then ran FM FKK_DOCUMENT_CHANGE_FROM_ID passing the doc #, change number (from CDHDR) and user name. All it did was to reset the check reason but did not set the payment method (or any other changes) back.
    How can I apply the FPE2 changes (including addition of the payment method) back once my approval workflow resets the check reason?

    Folks, Sorry to have bothered you. The document change had multiple change numbers for each of the changes and I was apparently passing the incorrect CDHDR change number to the FM "FKK_DOCUMENT_CHANGE_FROM_ID" which caused it to not reset the changes. Now, I'm able to see the payment method and any other changes restored back once the C4EYE is reset.
    Thanks for your time!!

  • Incopy CS4 (mac) - when closing file, changes are not saved

    I have a CS4 Indesign document with assignments saved. When the editor works on the file, she is able to save as she goes, however gets a dialogue box about how we are trying to save over an older file with the options 'submit changes, discard changes and I think one other option'.
    When 'submit changes' is clicked we re-open the file and find that the changes have not been saved.
    We don't understand why we would receive that message since we are hitting save as changes are done while working on the file.
    The odd thing is that it doesn't happen on all files. And the dialogue box doesn't always show up.
    One thing to note is that we recently changed from a CS2 workflow that we've been using successfully for a few years. Ie. without that particular dialogue box showing up or any save issues.
    thanks all!

    Lr & Photoshop both have the potential to use tiny (xmp) files for storing changes (and never save any other files), and both can save/export big honkin' tiffs, or like-sized jpegs...
    If you save files in Photoshop with layers and such stuff, the files can get pretty big.
    So, to answer your question: "It depends..." - which files, how saved/exported...
    Try some stuff and inspect the file sizes!
    Rob

  • Changes are not saved when I export

    I change a photo to black and white in iPhoto, but then when I export the photo, all my changes to it are undone and I just have the original photo. The copy in iPhoto is still black and white, but the exported is not. I'm using iPhoto 2.0.1

    Welcome to the Apple Discussions.
    This is the iPhoto 08 forum and there are many, many differences between the two versions, so for best advice try this forum:
    http://discussions.apple.com/forum.jspa?forumID=845
    Regards
    TD

  • Changes to my bookmarks are not saved when firefox is restarted. I already tried deleting places.sqlite, but it is still doing this.

    Since I downloaded Firefox 4, I have not been able to save changes to my bookmarks (this includes both adding new bookmarks or deleting old bookmarks). When I make a change, the changes are not saved the next time I restart Firefox. After doing a Google search I found a Mozilla help page that suggested deleting the place.sqlite file. After doing this, Firefox will save changes for a few days, but then go back to not saving the changes. I've done this twice already.

    Sounds that you have cleanup or other security software that cause corruption of the file places.sqlite
    You need to check the settings of your software and make sure that you exclude the Firefox Profile Folder to avoid such problems.
    * http://kb.mozillazine.org/Profile_folder_-_Firefox

  • When I close CS6 changes in settings are not saved.  Reverts to default settings on reopen.  Why?

    When I close CS6 changes in settings are not saved.  Reverts to default settings on reopen.  Why?

    Sorry Photoshop --  Problems solved -- I read the details -- turns out you need to make changes with no files open for the preferences to apply to all files.
    Thanks,  Al

  • When using printer Epson R1900 with Aperture 3 and if I mistakenly choose the wrong paper such as, epson's luster instead of glossy, does that change the exposure? Like make it too dark one or two stops!

    When using printer Epson R1900 with Aperture 3 and if I mistakenly choose the wrong paper such as, epson's luster instead of glossy, does that change the exposure? Like make it too dark one or two stops!

    Hi,
       If you choose the incorrect settings for printing, yes - the print quality will be affected.
    Different papers absorb the ink differently, so you can end up with prints that are too light, too dark, or have a colour cast if you make incorrect choices in your Aperture or printer settings.

  • TS1702 i cant access my facebook on my ipad, when i try all i get is a dialog box saying sign in to facebook with the option to, go to settings or cancel, if I go to settings and try to sign in, the message in settings says "there is a problem accessing y

    i cant access my facebook on my ipad, when i try all i get is a dialog box saying sign "settings or cancel, so if I go to settings and try to sign in, the message in settings says "there is a problem accessing your account please re-enter your password, when i do nothing happens.   Any help would be appreciated.

    Welcome to Apple Support Communities
    Hold Sleep and Home buttons for 10 seconds until the device restarts, so you will be able to use the iPad again.
    It will try to make a backup every time your iPad is plugged to the charger and connected to a network. To prevent that this message appears soon, open Settings > iCloud > Storage & Backup, and choose Backup Now

  • When I open my gmail in firefox, it instantly directs my gmail to the gmail calendars. I am unable to read my gmail on firefox, but I can read it on safari

    When I open my gmail in firefox, it instantly directs my gmail to the gmail calendars. I am unable to read my gmail on firefox, but I can read it on safari. Please help.
    == User Agent ==
    Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; en-us) AppleWebKit/533.16 (KHTML, like Gecko) Version/5.0 Safari/533.16

    Is there a solution for this?
    I just opened Firefox for the first time in a couple of weeks and am experiencing the same problem. I see my Gmail inbox briefly before being redirected to the calendar. Clicking the back button produces the same result.
    Very frustrating.

  • HT1694 My hotmail access disappeared from my iPad. When I go to settings and click 'mail, contacts, calendars' the page freezes. It doesn't allow me to the account setting. Anyone have suggestions?

    My hotmail access disappeared from my iPad. When I go to settings and click 'mail, contacts, calendars' the page freezes. It doesn't allow me to the account setting. Anyone have suggestions?

    Your Settings app is crashing. Sometimes, the only way to fix this is by restoring the iOS software but hopefully it will not come to that.
    1. Quit the app completely and restart the iPad. Go to the home screen first by tapping the home button. Double tap the home button and the task bar will appear with all of your recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button or anywhere above the task bar. Restart the iPad.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    2. Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    3. You can try resetting all settings. Settings>General>Reset>Reset All Settings. You will have to enter all of your app preferences and device settings again.

  • I like to pdf my score. I design my score properly, but then when I make the PDF it changes, in not correct design, help!

    i like to pdf my score. I design my score properly, but then when I make the PDF it changes, in not correct design, help!
    the same problem when normal printing

    You have 90 days of free AppleCare telephone support, please call them. If you don't know the number please click AppleCare Contact Info to locate the number on your part of the planet.

  • I am running cs4 suite in Mountain Lion and when I make PDF's, Helvetica Neue regular and bold both appear as squares. Any ideas on how to fix this??

    I am running cs4 suite in Mountain Lion and when I make PDF's, Helvetica Neue regular and bold both appear as squares. Any ideas on how to fix this??

    Firstly you have to be very careful as these fonts are system fonts and are critical to the operating system.
    I'm no expert I just followed the advice in this link.
    http://indesignsecrets.com/removing-nonessential-system-fonts-in-leopard.php
    It worked for me and now the font works in illustrator without converting to paths before creating pdfs.
    Hope this helps...

Maybe you are looking for