Private Browsing feature does not respond when clicked. error msg is found in error console for PB under "tools" what happened?

This is the msg found in error console under the "tools" drop down box: line 42 and it gives a link to a file on my hard drive the file is labeled: nsSessionStartup.js
Basically what happens is this: When I click on "start private browsing" nothing happens. It used to popup a notification telling me about PB and then it would sh0w (private browsing) in the top window bar. now... nothing. what happened?

Are you sure that you don't have Private Browsing enabled when Firefox is opened? <br />
Tools > Options > Privacy = '''Automatically start Firefox in a private browsing session'''
With that setting selected there is no (Private Browsing) showing in the Title bar.

Similar Messages

  • I am suddenly unable to open mail from the dock. dock shows mail is up and running, but stamp does not respond when clicked, and will not quit. help?

    I am suddenly unable to open mail from the dock. dock shows mail is up and running, but stamp icon does not respond when clicked, there is no mail window opened, and will not quit. when double clicked, get new mail is not an option and I get no response with other actions.
    I am retrieving mail on my phone with no problem. this just began happening, no updates or problems with anything else.
    help?

    command-option-esc keys and force quit Mail. Then relaunch.

  • My website is developed in angula js, when I login with the password that is saved in browser(Remember password) does not respond when click on sign in button

    When enter username & move to next field, password is shown in encrypted format when click on login/sign in button it does not get login & does not even show any error message. The same functionality works in Google Chrome browser.

    Do you have that problem when running in the Firefox SafeMode? <br />
    [http://support.mozilla.com/en-US/kb/Safe+Mode] <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this: <br />
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • Firefox does not open when clicking on the icon, the firefox.exe process consumes 99 % of the CPU and my computer runs slowly.

    I have been a happy user of Firefox for many years. Around last April first I opened Firefox and was offered an update to v 4.42.0.0 which I accepted. Installation seemingly went well. I forget now exactly what happened but the result has been that ever since April 1 I haven’t been able to open the Firefox browser when clicking on the Firefox icon. My computer now was running very slowly. I tried to uninstall Firefox, but a popup told me I couldn’t because Firefox was in use. This confused me because I couldn’t see it being used. Only now I have found that on Task Manager processes that “firefox.exe” was consuming 99 % of the CPU. After removing firefox.exe by clicking End Process my computer ran better. I uninstalled Firefox I had on my computer and installed Firefox 5.0. Unfortunately I have the same problems: Firefox does not open when clicking on the icon, the firefox.exe process consumes 99 % of the CPU and my computer runs slowly.

    Born2die! Brilliant. I am a desktop clicker and never knew Firefox had a safe mode.
    Thank You!
    I was unable to start in safe mode initially. The second time I disabled all of the Add-Ons and she started up just fine. I enabled them one by one hoping to track down the culprit but the problem seems to have gone away.
    BTW I am running ver. 3.6.8 (in response to cor-el's earlier post) and
    Firefox is in the process of downloading 3.6.10 (which I am starting to think may have been what caused this whole problem to begin with)
    Incidentally, whats up with all of the Java Console Add Ons?
    I have:
    Java Console 6.0.11, Java Console 6.0.13, Java Console 6.0.15
    Java Console 6.0.17, Java Console 6.0.20, and Java Console 6.0.21
    What are they? Do I need them? Can I uninstall them? Is this due to using Open Office?
    Also, .NET Framework 0.0.0 Should I uninstall it?

  • Lots of programs does not respond, when opened

    Lots of programs does not respond, when they are opened, Apple store, Mail, Photo Booth and VideoConverterPro and some moor.
    To close, I have to click on finder first. What to do ?

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • My JButton inside a JTable cell does not respond to clicks

    I have a Jtable which extends AbstractTableModel and uses an arraylist to fill the data in the model. The first column of this table is my button column. I have a class for my button coumn which is:
    class MyButtonCol extends AbstractCellEditor
            implements TableCellRenderer, TableCellEditor, ActionListenerMy button column class has getTableCellRendererComponent and getTableCellEditorComponent. My problem is that the button shows on the table but it does not respond to clicks. Any help will be appreciated.

    That does not seem to be the problem. I have the method in my class but it still does not respond to clicks. This is my AbstractTableModel class:
    class WorklisttableModel extends AbstractTableModel{
         protected static List<Worklist> transaction;
         protected String[] columnNames = new String[]{" ", "Modality", "Status","Patient name",
                "Patient ID","Date of birth","Study date","Referring physician","Description"};
         public WorklisttableModel(){
             transaction = new ArrayList<Worklist>();
             fillmodel();
          @Override
          public boolean isCellEditable(int row, int column) {
                return false;
          @Override
          public int getColumnCount() {
                return 9;
          @Override
          public int getRowCount() {
                return (transaction!=null) ? transaction.size() : 0;
          @Override
          public Object getValueAt(int rowIndex, int columnIndex) {
              if(rowIndex < 0 || rowIndex>=getRowCount())
                  return" ";
                  Worklist row = (Worklist)transaction.get(rowIndex);
                  switch(columnIndex){
                      //case 0:return "";
                      case 1:return " "+row.getModality();
                      case 2: return row.getStatus();
                      case 3:return row.getName();
                      case 4:return row.getID();
                      case 5:return row.getDOB();
                      case 6:return row.getStudyDate();
                      case 7:return row.getReferringP();
                      case 8:return row.getDescription();
               return " ";
          public Class getColumnClass(int col){
              return getValueAt(0,col).getClass();
          @Override
          public String getColumnName(int columnIndex) {
                return columnNames[ columnIndex ];
          protected void fillmodel(){
              transaction.add(new Worklist("","US","active","Simpson","1232222",new java.util.Date(73,8,12),new Date(18,8,13),"Dr. Francis","Brain"));
              transaction.add(new Worklist("","US","inactive","Dodggy","3498222",new java.util.Date(83,8,12),new Date(16,8,17),"Dr. Francis","Heart"));
              transaction.add(new Worklist("","CT","active","Williams","7892222",new java.util.Date(98,9,5),new Date(19,2,13),"Dr. Evans","Dental"));
              transaction.add(new Worklist("","MR","inactive","Brian","89765412",new java.util.Date(65,5,23),new Date(19,1,18),"Dr. Evans","Brain"));
              Collections.sort( transaction, new Comparator<Worklist>(){
              public int compare( Worklist a, Worklist b) {
                  return a.getName().compareTo( b.getName() );
    }

  • I pad does not respond when trying to turn on

    I pad does not respond when trying to turn on

    Charge the battery.
    Try restoring your iPad > iTunes: Backing up, updating, and restoring your iPhone, iPad, or iPod touch software

  • Firefox does NOT respond when trying to clear history, cache etc

    Firefox does NOT respond when trying to clear history, cache etc
    windows says not responding and I can not clear anything

    Look this one
    http://kb.mozillazine.org/About:config_entries
    go to PRIVACY and read the following
    privacy. item. cache
    privacy. item. cookies
    privacy. item. downloads
    privacy. item. formdata
    privacy. item. history
    in about:config all the above put it to TRUE if there are FALSE
    thank you

  • Photosmart C6180 on wireless network does not respond when attempting to print

    Photosmart C6180 successfully installed on wireless network does not respond when attempting to print.  All in one is successfully installed on wireless network and SW successfully installed on Windows XP computer yet printer does not print.  Get no error message other than document failed to print.  HELP!

    So gald I'm not the only one. I have been fighting this crappy HP printer for MONTHS also. Everything says a OK goody goody but printer fails to print every two to three weeks.

  • Hello, the "sign" feature does not show when i open a pdf document with reader (MAC)

    Hello, the "sign" feature does not show when i open a pdf document with reader (MAC)

    Hi mentane,
    Thank you for posting on the Adobe forums, what is the version of Adobe Reader you are working with.
    Open Adobe Reader>Adobe Reader>about Adobe Reader.
    Thanks,
    Vikrantt Singh

  • Hey software does not respond when I open a new file or an existing file

    Hey software does not respond when I open a new file or an existing file

    Nobody can tell you anything without system info and other technical details.
    Mylenium

  • The dropdown list in the address bar does not work when clicked

    In the address bar the dropdown list icon does not work when clicked. I have tried resetting everything in safemode and it still doesn't work. When I click on the icon it just highlights the entire address line.

    This can be a problem with the file places.sqlite that stores the bookmarks and the history.
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    Also check the setting in:<br />
    [http://kb.mozillazine.org/Menu_differences Firefox > Preferences] > Privacy > Location Bar: When using the location bar, suggest: History, Bookmarks, History and Bookmarks

  • Hello I have a problem with facebook Messenger disappeared from my desktop iPod in the AppStore it says "open" does not respond when I press it. What should I do to download it? But I do not have it in AppStore it says that I have it: (

    Hello I have a problem with facebook Messenger disappeared from my desktop iPod in the AppStore it says "open" does not respond when I press it. What should I do to download it? But I do not have it in AppStore it says that I have it: (

    - Go to Settings>General>Usage>Storage>and under apps select FBM and try to delete it.
    Next:
    - Reset the iOS device. Nothing will be lost      
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings                            
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                               
    iOS: Back up and restore your iOS device with iCloud or iTunes
    - Restore to factory settings/new iOS device.                       

  • Recently my track pad (in my Mac Book Pro) does not respond to 'clicking' commands.

    Recently my track pad (in my Mac Book Pro) does not respond to 'clicking' commands.  It does just fine with a USB cable mouse.  What do I do?

    Are you tapping to click or physically clicking? If you're clicking, does the trackpad button go down all the way?

  • My screen seems to have frozen and does not respond when I touch. I tried to shut it off and when the red slider comes up, it does not let me slide it off.

    My ipad screen seems to have frozen. I tried to turn it off and the red slider does not respond when I slide it. What can I do?

    Hold down the sleep and home keys for about 20 seconds. If you see the silver apple it's rebooting. Let it do that and see if you're unfrozen.

Maybe you are looking for

  • How can i transfer an itunes downloaded movie on to an external hard drive

    Hi, I have just downloaded a movie from itunes for the first time. All of my previously purchased DVD's are on an external Hard drive to play directly on my TV. I wanted to move this downloaded movie on to the hard drive, but it will only play throug

  • Oracle Reports Listing/Summary

    Does anyone have a document that lists all Oracle Reports (or even just PO reports) and includes a brief summary of what each does? Thanks in advance.

  • IE11 icloud Calendar icon

    Hi All, I'm just setting up my main Windows PC with shortcut links to the Start Screen tiles I've added iCould into these links so I can access my iCalendar and stuff quickly - however the icon for the calendar in iCloud is messed up. I have a feelin

  • Promoting a server to a Domain Controller

    Quick question - I am just trying to satisfy my curiosity. I was reviewing our network at our new company and it looks like I have a Domain Controller using a DHCP address. I know best practice is to use a static address, but is it even possible to p

  • Nokia music tab missing

    I have downloaded 6 to 7 songs successfully, using music tab. As I have unlimited membership upto Sept, 2014 of Nokia music download. Till then the tab of Music is missing and can't download music in my Nokia Lumia phone which I just purchased.