Browser does not seem to prompt for more than once per session, to accept untrusted sites. I have to close/open firefox to visit multiple untrusted sites in one sitting. Is there a way to fix?

I use firefox to connect to the console of different Sun/Oracle servers. The www pages are "untrusted" and I get a question to continue to connect or not. When I say continue, it pops up a window to either accept or deny the cert. This window, once I accept it, to continue to do my work. When I'm finished with that server and continue to another one, that window no longer pops up for me when another untrusted www page is loaded. But when I quit firefox, and then revisit the page, the dialogue pops up and I can accept the new cert and continue to work.
I'm considering going back to the older version of firefox as this is severely impacting my day to day use of it. I'm still trying to see if I can get around it by fiddling with different firefox options.

Thanks. I tested it, and found that I can create a bookmark in FolderA, and them manually copy it to FolderB, FolderC, and FolderD.
Once that is done, I tried the old method of "Bookmarks" --> "Bookmark This Page" and added it to FolderE. When I did that, it deleted the copy in FolderD but left the other three alone!
This is fine with me. I personally think this is a bug, because I don't think that Firefox should ever delete a bookmark without asking me (or at least, informing me). But now that I understand the algorithm, I can work around it. Thanks!

Similar Messages

  • I get the following message when I try to open firefox 5: TypeError: Components.classes[cid] is undefined. Is there a way to fix this?

    as above

    This issue can be caused by an extension that isn't working properly.
    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

  • OATS Load test is not able to scale for more than 10 users

    Hi,
    I am using OATS load test runner for performance testing Fusion based application on webcenter portal.I am not able to run OATS load tester sucessfully for more than 10 VU's.After that it gives a component not found issue or loop error.Please let me know if anybody faced similar issue and was able to resolve it.Is there some setting to be done?
    Thanks,
    Ritesh
    Edited by: user766882 on Aug 20, 2012 9:07 AM

    Hi Jean,
    Our application contains customised retail webcenter portal on which retail application is hosted.This portal application is not able to scale up more than 10 users.I had created portal application without the customised framework and then for a similar usecase it is able to scale upto more than 50 users but once it hits 100 VU mark it starts giving errors.If it were an issue with client tokens or login,I would have been able to have more than 1 user at a time.It seems to be an issue with custom framework developed on top of webcenter portal.I have faced a similar issue while testing for this app with jmeter also.I was able to test for the webcenter portal app without any customisation for more than 100 concurrent users. But I was not able to test for more than 1 user for customised retail webcenter portal
    Thanks,
    Ritesh
    Edited by: user766882 on Aug 21, 2012 8:25 AM
    Edited by: user766882 on Aug 21, 2012 8:33 AM

  • C# compiling error: 'System.Array' does not contain a definition for 'Select' and no extension method 'Select' accepting a first argument of type 'System.Array' could be found (are you missing a using directive or an assembly reference?)

    Hello experts,
    I'm totally new to C#. I'm trying to modify existing code to automatically rename a file if exists. I found a solution online as follows:
    string[] allFiles = Directory.GetFiles(folderPath).Select(filename => Path.GetFileNameWithoutExtension(filename)).ToArray();
            string tempFileName = fileName;
            int count = 1;
            while (allFiles.Contains(tempFileName ))
                tempFileName = String.Format("{0} ({1})", fileName, count++); 
            output = Path.Combine(folderPath, tempFileName );
            string fullPath=output + ".xml";
    However, it gives the following compilation errors
    for the Select and Contain methods respectively.:
    'System.Array' does not contain a definition for 'Select' and no extension method 'Select' accepting a first argument of type 'System.Array' could be found
    (are you missing a using directive or an assembly reference?)
    'System.Array' does not contain a definition for 'Contains' and no extension method 'Contains' accepting a first argument of type 'System.Array' could be
    found (are you missing a using directive or an assembly reference?)
    I googled on these errors, and people suggested to add using System.Linq;
    I did, but the errors persist. 
    Any help and information is greatly appreciated.
    P. S. Here are the using clauses I have:
    using System;
    using System.Data;
    using System.Windows.Forms;
    using System.IO;
    using System.Collections.Generic;
    using System.Text;
    using System.Linq;

    Besides your issue with System.Core, you also have a problem with the logic of our code, particularly your variables. It is confusing what your variables represent. You have an infinite loop, so the last section of code is never reached. Take a look 
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.IO;
    namespace consAppFileManipulation
    class Program
    static void Main(string[] args)
    string fullPath = @"c:\temp\trace.log";
    string folderPath = @"c:\temp\";
    string fileName = "trace.log";
    string output = "";
    string fileNameOnly = Path.GetFileNameWithoutExtension(fullPath);
    string extension = Path.GetExtension(fullPath);
    string path = Path.GetDirectoryName(fullPath);
    string newFullPath = fullPath;
    string[] allFiles = Directory.GetFiles(folderPath).Select(filename => Path.GetFileNameWithoutExtension(filename)).ToArray();
    string tempFileName = fileName;
    int count = 1;
    //THIS IS AN INFINITE LOOP
    while (allFiles.Contains(fileNameOnly))
    tempFileName = String.Format("{0} ({1})", fileName, count++);
    //THIS CODE IS NEVER REACHED
    output = Path.Combine(folderPath, tempFileName);
    fullPath = output + ".xml";
    //string fullPath = output + ".xml";
    UML, then code

  • Accounts that have not been logged into for more than 90 days

    Hi Folks,
    Good Day.
    Can anyone help me to update below powershel script?
    below script find in my domain all the AD users accounts that have not been logged into for more than 90 days and export the report to .csv file. in addition what I want:
    1. OU=Others, Sales --> exclude this OUs
    2. Disable all the user based on 90 days export report .csv file 
    import-module activedirectory 
    $domain = "test.com" 
    $DaysInactive = 90 
    $time = (Get-Date).Adddays(-($DaysInactive))
    $timer = (Get-Date -Format yyyy-mm-dd)
    # Get all AD User with lastLogonTimestamp less than our time and set to enable
    Get-ADUser -Filter {LastLogonTimeStamp -lt $time -and enabled -eq $true} -Properties LastLogonTimeStamp |
    # Output Name and lastLogonTimestamp into CSV
    select-object givenname,Name,@{Name="Stamp"; Expression={[DateTime]::FromFileTime($_.lastLogonTimestamp).ToString('dd-MM-yyyy_hh:mm:ss')}} | Export-Csv c:\temp\90DaysInactive-$(Get-Date -format dd-MM-yyyy).csv –NoTypeInformation
    Many thanks for advance Help:

    Hi Anna,
    Good Day.
    Many thanks for your responce.
    with your help i can manage to exclude the OUs as wellas can get the .csv report via mail.
    Now i want to disable all the user based on 90 days export report .csv file.
    could you help me on this please? the report will come everyday like below:
    filename=90DaysInactive-dd-mm-yyyy.csv
    sample output:
    Given name User Name
    Last LogOn
    Test User1 user1
    03-10-2006_05:30:59
    Test User2 user2
    02-10-2006_12:00:34
    import-module activedirectory 
    $domain = "test.com" 
    $DaysInactive = 1 
    $time = (Get-Date).Adddays(-($DaysInactive))
    $timer = (Get-Date -Format yyyy-mm-dd)
    $FileName="c:\temp\90DaysInactive-$(Get-Date -format dd-MM-yyyy).csv"
    $from = "[email protected]"
    $to = "[email protected]"
    $smtpHost = "smtpservername"
    $Subject = "90 Days Inactive Accounts"
    $body = "90 Days Inactive Accounts report"
    # Get all AD User with lastLogonTimestamp less than our time and set to enable
    Get-ADUser -Filter {LastLogonTimeStamp -lt $time -and enabled -eq $true} -Properties LastLogonTimeStamp | where {($_.distinguishedname -notlike "*OU=HR*") -and ($_.distinguishedname -notlike "*OU=OT*")} | 
    # Output Name and lastLogonTimestamp into CSV
    select-object givenname,Name,@{Name="Last Logon"; Expression={[DateTime]::FromFileTime($_.lastLogonTimestamp).ToString('dd-MM-yyyy_hh:mm:ss')}} | Export-Csv c:\temp\90DaysInactive-$(Get-Date -format dd-MM-yyyy).csv -NoTypeInformation
    Send-MailMessage -From $from -To $to -Subject $subject -cc $cc -SmtpServer $smtpHost -Attachments $FileName -Body $body -BodyAsHtml
    Thanks for your advance help.

  • TS1424 I need a new Battery for my I POD.  I POD will not hold a charge for more than 10 songs.  Model # = M9800LL - Version = 1.4.1

    I need a new Battery for my I POD Touch.  I POD will not hold a charge for more than 10 songs.
    Model = M9800LL
    Version = 1.4.1

    The battery in the iPod is not user-replaceable. Take your iPod to an Apple Store or contact Apple Support and they can arrange replacement.
    http://www.apple.com/support/ipod/service/faq/
    Regards.

  • How do I get itunes to not list the same artist more than once?

    How do I get ituens to not list the same artist more than once?  I have tried editing the info, sorting different ways and sometimes it works and sometimes not...it's very frustrating to me to have the same artist listed multiple times...

    Setting a common Album Artist for each Album does most of the work. For deeper problems see Grouping tracks into albums.
    In general you need to make sure that all the values in the tags are used consistently. Same spelling, same capitalization, same accents, no leading, trailing, or multiple spaces, and each value of Artist, Album Artist or Album should only be associated with one value of Sort Artist, Sort Album Artist or Sort Album respectively.
    tt2

  • I was trying to clean up my desktop, and inadvertently switched all my icons on my desktop. When I click on file a, file b opens and so on, regardless of the extension type. Is there any way to fix this?

    I was trying to clean up my desktop, and inadvertently switched all my icons on my desktop. When I click on file a, file b opens and so on, regardless of the extension type. Is there any way to fix this?

    I use
    Chronosync (http://www.econtechnologies.com/pages/cs/chrono_overview.html)
    and
    Dropbox (https://www.dropbox.com/)
    Both work very well. The former I use for manual, one-way synchroniziation of (nearly) entire systems. The latter for automatic syncing of very active directories through local and shared online storage.

  • -setFence:count: called more than once per transaction

    I am getting following error, any body have any idea what it is?
    -setFence:count: called more than once per transaction
    Debugger stopped.
    Program exited with status value:101.
    Thanks in Advance
    Ravi

    I am getting the same error...
    T'is usly a m'ry error.
    Use the debugging/testing tools in the latest Xcode to track down suspects, etc.

  • The info supplied does not show how to delete more than one bookmark, only folders

    I read the info provided online for deleting more than one bookmark/folder but it doesn't show how for multiple bookmarks. My OS is XP. with updated Firefox version.
    When I go to Bookmarks>Show All Bookmarks, there is no listing of the ind bookmarks, only the folders.
    Whoever used this pc before had lots and lots and I do not want to have to delete them all one-by-one.
    Please advise---

    ''Library List only shows Folders, how do I delete bookmarks''
    Usually one deletes a lot of history items so the techniques were described in the history areas by including some pictures. The techniques work the same for bookmarks.
    You can select '''multiple entries without invoking the bookmark''' for dragging, copying, moving or deleting, (similar to how you can [http://kb.mozillazine.org/Viewing_the_browsing_history_-_Firefox#Selecting_history_items select multiple browsing history items]) with use of the Ctrl''/Cmd'' key (to add to a selection) & Shift key (to extend a selection) by clicking to the '''left''' of the favicon (webpage icon) in the list to make selection(s). To extend from the last selection made of dis-contiguous entries use Ctrl''/Cmd''+Shift+click. Makes moving several bookmarks from different places to a new location easier as well, and of course for your interest in deleting bookmarks.
    Whether you are selecting from the Side Panel or from the Library List, you generally want to start with a search specifying one or more strings within Titles, url/location, or tags. The search with strings of characters works the same in the Location Bar (before Enter known as the AwesomeBar feature), and in bookmark, history and tab searches.
    Within the Library List you will only see bookmarks by selecting a folder, or by doing a search.
    Articles: (read entire articles but am pointing to specific areas)
    *http://kb.mozillazine.org/Viewing_the_browsing_history_-_Firefox#Selecting_history_items
    *http://kb.mozillazine.org/Sorting_and_rearranging_bookmarks_-_Firefox#Bookmarks_Manager_or_Library_window
    *http://kb.mozillazine.org/Location_Bar_search#Location_Bar_search_.28internal_-_Auto_Complete.29
    <br><small>Please mark "Solved" one answer that will best help others with a similar problem -- hope this was it.<small>

  • My password only works to log into the computer, but not to make admin changes, even though I am the admin account on the computer.  This happened after I tried to change the computer's name. Is there any way to fix this?

    Bought my laptop off my room mate and he had master reset it to default.  This still left his name as the computer name and I wanted to change that.  Tried to rename it under the advanced changes section, and now it isn't recognizing my password for anything more than logging in.  I can't unlock the settings to make further changes (or change it back).  I have had my room mate try all of his old passwords and usernames, to no avail.  Is there a way to reset this?  It's also not letting me wipe the drive and start fresh again because, alas, I don't have access without the password.  Any advice would be very helpful.  Thank you!

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Picklist does not work if list has more than 255 records.

    I'm tring to use the picklist class in picklist.pll, the library
    that come with Developer2000. Picklist class is demostrated in
    one of the Developer2000 demos. This picklist class allows you
    to select and move record(s) from one list to another. Picklist
    only works if list has 255 records or less and the list property
    sheet does not allows me to set number of records > 255
    I'm wondering if anyone ran into this problem before and found a
    work around.
    Thanks in advance,
    kl.
    null

    Kevin Lai (guest) wrote:
    : I'm tring to use the picklist class in picklist.pll, the
    library
    : that come with Developer2000. Picklist class is demostrated
    in
    : one of the Developer2000 demos. This picklist class allows
    you
    : to select and move record(s) from one list to another.
    Picklist
    : only works if list has 255 records or less and the list
    property
    : sheet does not allows me to set number of records > 255
    : I'm wondering if anyone ran into this problem before and found
    a
    : work around.
    : Thanks in advance,
    : kl.
    Hi Kevin,
    Yeah I know what the problem is. It is all to do with a forms
    limitation re scrolling views. The limitations are:
    - The fields in the picklist are displayed on one canvas, whose
    canvas size is greater than the view size, hence you get the
    scroll bar. The canvas contains a block with 255 records
    displayed, but no block scroll bar, hence you cannot scroll the
    block and 255 is the max.
    - With block scroll bars you can display an unlimited number of
    records (obviously), but you cannot resize the view, since the
    scroll bar is attached to the block, and there are no
    set_block_properties that allow you to change the size of the
    scroll bar dynamically
    What is needed is a combination of the two.
    What you will find is that most of the demos are pretty crap,
    and can't really be used for production instances.
    Anyway, the good news is that I have implemented a really sexy
    picklist and will send it to you if you mail me your E-Mail.
    Regards Steve
    null

  • Prompted for more than one password when updating/buying apps

    My wife and I both have iPhones synced to iTunes on one laptop.  As such we both sync/back-up our phones to a single library.
    When we update/buy apps we are sometimes prompted to enter each others passwords when using our own phones?  That is I am asked to enter her password when I am using my phone and she is promoted to enter mine when using here phone.  How do we avoid this?
    Thanks

    I've seen this happen for myself and my partner's iPhone too. I came to the same conclusion - the apps I'd "purchased" (even free apps are classified as purchased in iTunes) on my iPhone got pushed to my partner's phone when she connected it to the same iTunes instance.
    Apple suggest a few different methods for managing two iPhones on one machine here:
    http://support.apple.com/kb/HT1495
    In general, they suggest keeping the iTunes libraries separate. There's also a link to another article which explains about sharing music between more than one library.

  • Firefox does not allow me to check in on Air Canada...is it possible I have inadvertently put a filter or block on transmitting data to this site?

    Air Canada's web site prompts me to check in for flights 24 hours in advance of flying. I start to do so, and then it cuts off telling me I am not able to check in. Air Canada can check me in from their sites and they are telling me my problem is a setting with my browser. Is it possible I inadvertently put a filter or block on transmitting data from me to Air Canada? Is there another possible explanation?Is this a pop up problem? I've spent an hour with their help desk and they say it is a browser issue. And, it works from internet explorer, just not mozilla firefox.

    Make sure that you do not block cookies.<br />
    See http://kb.mozillazine.org/Cookies
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • I have recently upgraded from my iphone 5 to a new phone. My iphone 5 's touch screen does not work anymore. I need to backup my phone, but I can't do it on itunes without my password. Everything besides screen is ok. Is there a way around it? :(

    I have recently upgraded from my iphone 5 to a new phone. My iphone 5 's touch screen does not work anymore. I need to backup my phone, but I can't do it on itunes without my password. Everything besides the screen is completely fine-the screen will not recognize my finger anymore. I am not trying to fix the phone, but I need to have my contacts. The pictures have already synced, but I need my password to do a full backup. Unfortunately, I can't type in my password. Is there any way around it? If I take my phone to the apple store, will they be able to help me? I am not willing to replace the screen just to do this, however, so that is out of the question. 

    Someone else may have a workaround, but, as far as I know, if you cannot interact with the screen on the iPhone, there is no way to unlock it so you can get to your contacts.
    Were you saving them to iCloud by chance? If so, you can restore them to your new phone.
    ~Lyssa

Maybe you are looking for

  • Cost of replacing an older macbook screen

    Okay, so I have an older white macbook (2008, Mac OS X 10.5.8, 2.4 ghz, 2GB SDRAM) an estimate of what would the repair service of replacing the internal connections and/or the LCD screen be?  Is it also possible that since the actual macbook is over

  • Line-height problem in publishing after update!

    This was how it looked before the update. This is how it look now. same line-height value. but it only happens when i publish it when i view it locally there's no problem.

  • Satellite P100-253: How to enable speaker lights

    Hello out there... I have read some post inhere who refere to Blue LED light under the speaker... My question is, there is NO blue LED light in both of my "speakers", i have a P100-253, so where can i turn it on ? or is there no Blue LED on this mode

  • In design download stops at 10.28%?

    Hi My download of in design stops at 10.28%

  • PO Excise Table

    Hi friends, Can anybody tell me in which table the value of excise conditions (BED,ECess,SECess) saved I have checked EKPO and EKKO and KONV but it is not there. Regards, Sachin