Java console not compatible with 6.01 Mozilla update

Since the 6.01 Firefox update, I can no longer view flash panels and some images are not appearing on web sites. I look and found all the java consoles greyed out with the message they were incompatible with 6.01 Firefox. So what do I do now? I also notice that websites suddenly disappear when I did not close them. Please fix this problem.

Hi catnip009:
I can confirm cor-el's information that it is "normal" for the Java Console extension to be disabled in FF6 (see my post [https://support.mozilla.com/en-US/questions/870013#answer-247544 here] for instructions on how to test your Java installation).
When you say "flash panels", do you mean that '''Adobe Flash''' doesn't seem to be working on some web sites with FF6?
If that's the case, then try the following:
First, check your Flash installation [http://www.adobe.com/software/flash/about/ here] on the Adobe web site. If your Flash isn't working or you don't have the latest Flash v. 10.3.183.7, do the following:
# Uninstall Adobe Flash from the Windows Control Panel
# Download and run the [http://kb2.adobe.com/cps/141/tn_14157.html Adobe Flash Uninstall Utility] to clean out remnants of any old installation
# Re-boot your PC
# Run the Adobe Flash Uninstall Utility again for safe measure
# Download the Adobe Flash v. 10.3.183.7 standalone plugin installer (the non-IE NPAPI version) from the FileHippo site [http://www.filehippo.com/download_flashplayer_firefox/10462/ here] . Be sure to download v. 10.3.183.7 (the current stable version) and not a beta test version. '''Save the installation file to your hard drive and do not run the installation from your browser'''
# Install Adobe Flash from the Run command (Start | Run) with the new installation file with all browsers and instant messenger software closed
# Check your new Flash installation [http://www.adobe.com/software/flash/about/ here].
If you also use the IE browser, the ActiveX version of Flash v. 10.3.183.7 for IE can be downloaded from FileHippo [http://www.filehippo.com/download_flashplayer_ie/10461/ here]. If you prefer you can re-install Flash from the Adobe site ([http://get.adobe.com/flashplayer/ here] for auto-detection of OS and default browser; [http://get.adobe.com/flashplayer/otherversions/ here] for any version of Flash), but I prefer using the standalone installers from FileHippo because Flash occasionally doesn't install correctly when you run the installation from the Adobe site via your web browser.
Windows Vista Home Premium 32-bit SP2 * IE 9.0 * Firefox 6.0 * Java 7.0 * Adobe Flash 10.3.183.7

Similar Messages

  • Typing and entering in the address bar yields no action(doesn't work)...Also, Java console not compatible with FF8

    The past two versions of FF have rendered the address bar useless when entering a web address...still works with links.
    Checked Java website...no updates available

    I'm using Firefox 22 on Windows 7 64-bit, by the way.
    You can very easily replicate this "bug" (or "feature"... ahem) by shift-clicking any hyperlink which opens up a new Firefox window. Immediately hit the "stop" button to stop the page from loading.
    If you're fast enough, the address bar will be completely empty and you can't "refresh" or try again or anything.
    In my opinion, the URL should be placed into the address bar the very moment that new window opens. I'd appreciate an explanation of why this is not already the case and if it will or will not be the case in the future.

  • I get constant notifications to update to a safer and better Firefox. I've tried many times with no success. Now it tells me my computer is not compatible with a newer or updated version of Firefox. What can I do to make it more compatible?

    Mac mini OS X 10.5 Firefox 3.6.13 dmg

    You could use firefox 3.6, which is old but still supported and secure. However the best solution is to give up on using Google Toolbar because Google no longer support it with firefox, mainly because it has little to offer.
    You can still save google bookmarks by copying them into Firefox. Please have a look at
    * [[google Toolbar is not compatible with Firefox]] <-- clickable link -- <br> which may help with some ideas and proposed solutions.
    I am hoping the Norton report you refer to merely says your system has vulnerabilities, rather than that it has an actual infection (or that it has dealt with or quarantined any malware).

  • Java 8 not compatible with yosemite...is there a security hole?

    I installed Java8 per Oracles instructions and it is active in my Safari preferences. However, the app pop up still appears, even when I do not have Safari or any other browsers open or running. In fact, even if I reboot the computer and do not have any apps running, within a few minutes of loging in, the pop-up appears. So what is Yosemite looking for? Is there something else running Java in the background that could be a security hole?

    Hi there BallybailShannon,
    You may want to try updating Java using the installer below. 
    Java for OS X 2014-001
    -Griff W. 

  • Java cryption not compatible with non-java?

    I can encrypt/decrypt my text with misc algorithms using the Java crypto API:
    SecretKeySpec key = new SecretKeySpec(key.getBytes(CHARSET), algorithm);
    Cipher cipher = Cipher.getInstance(algorithm);
    cipher.init(Cipher.ENCRYPT_MODE, key);
    byte[] stringBytes = plainText.getBytes(CHARSET); //encode
    byte[] rawBytes = cipher.doFinal(stringBytes); //encrypt
    BASE64Encoder encoder = new BASE64Encoder();
    result = encoder.encodeBuffer(rawBytes); //encode bytes to base64 to get a stringHowever, when using other en-/decryption tools with the same algorithms, keys and plain/crypted texts, it doesn't work anymore, i.e. I can't decrypt text with such a tool that was crypted with Java and vica versa. Is there something missing in my code?

    @ggainey:
    Okay, but how do I get these transformation strings with mode and padding? When I try read the algorithms via
                String [] result = null;
                Set set = new HashSet();
                String serviceType = "KeyGenerator";
                Provider[] providers = Security.getProviders(); //all providers
                for (int i = 0; i < providers.length; i++) {
                    Set keys = providers.keySet(); //Get services provided by each provider
    for (Iterator it = keys.iterator(); it.hasNext(); ) {
    String key = (String) it.next();
    System.out.println("key :"+key);
    key = key.split(" ")[0];
    if (key.startsWith(serviceType+".")) {
    set.add(key.substring(serviceType.length()+1));
    } else if (key.startsWith("Alg.Alias."+serviceType+".")) { // This is an alias
    set.add(key.substring(serviceType.length()+11));
    }//next service
    }//next provider
    result = (String[])set.toArray(new String[set.size()]);
    System.out.println("Algos: "+de.icomps.ICUtils.toString(result));
    I just get this output for DES:
    key :KeyGenerator.DES
    key :Alg.Alias.SecretKeyFactory.TripleDES
    key :Cipher.PBEWithMD5AndTripleDES
    key :AlgorithmParameters.PBE
    key :SecretKeyFactory.DES
    key :Cipher.AES
    key :Alg.Alias.KeyPairGenerator.DH
    key :Alg.Alias.AlgorithmParameters.DH
    key :Alg.Alias.KeyGenerator.TripleDES
    key :KeyAgreement.DiffieHellman
    How can I get/generate the "DES/CBC/PKCS5Padding" style strings?

  • Today, Sept 26, 2011: I finally decided to download version 6. I got a message stating my java script was not compatible with this version. It did a search and said it could not find an update. I need jave script. What now??

    Using Window XP Pro with service pack 3 and all the updates. I uninstalled version 6 and am now back to version 4. 4 gig ram and over a hundred gigs of storage. Not using Nortons or McAfee. Checking my settings, I find java is enabled, but still get "java not installed" on many sites. I have reverted to version 4, so I can only load the troubleshooting info from there.

    It is '''<u>not</u>''' JavaScript that is incompatible/disabled, it is Java Console that is incompatible/disabled. Java Console is installed with each update of Java and is not needed by most users; read the following under '''<u>Java Console</u>'''
    *Also see --> http://kb.mozillazine.org/JavaScript_is_not_Java
    *Also see --> https://support.mozilla.com/en-US/kb/JavaScript
    *Also see --> http://www.htmlgoodies.com/beyond/javascript/article.php/3470971/Java-vs-JavaScript.htm
    Test to see that your Java is working at the following link. If Java is working on your system, it will detect the version that is installed on your system.
    *https://www.java.com/en/download/testjava.jsp
    '''<u>Java Console</u>'''<br />
    Unless you do Java programming/development or debug Java applets on web pages, you do not need Java Console. Java update will install a new Java Console with each update. Removing the Java Console extensions has no effect on the functioning of Java for web browsing. You can see, '''''but not remove''''', the Java Console extensions in Add-ons > Extensions. Java Console extensions can be safely removed '''''manually''''' by following the instructions in this article:
    *http://kb.mozillazine.org/Java#Multiple_Java_Console_extensions
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • After last automatic update, error message XUL Runner error platform version '6.0.2' is not compatible with minVersion 6.0.1. maxVersion 6.0.1. I am unable to open Mozilla Firefox at all. Had to use Explorer to ask this question!

    After last automatic update, error message XUL Runner error platform version 6.0.2. is not compatible with min Version 6.0.1 maxVersion 6.0.1 appeared every time I try to open/run Mozilla Firefox.

    See:
    *[[/questions/869812]]
    *[[/questions/869951]]

  • Downloaded firefox 5.0.1 last night, worked fine, Turned computer on today, Mozilla Firefox, it won't start. Get error message, Error: Platform version '5.0' is not compatible with minVersion =5.0.1 maxVersion =5.0.1" What do I need to do to fix it?

    We downloaded firefox 5.0.1 last night, began working with it. It did fine. After about an hour, I turned off my computer. When I turned on my computer, I click on Mozilla Firefox and it won't start. I get this error message, " Error: Platform version '5.0' is not compatible with minVersion >=5.0.1 maxVersion <=5.0.1" from XUL Runner. What do I need to do to fix it?

    The updater wasn't able to update all the files and some were left as older versions.<br />
    Do a clean reinstall.
    Download a fresh Firefox copy and save the file to the desktop.
    * Firefox 5.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Uninstall your current Firefox version.
    * Do not remove personal data when you uninstall the current version.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere in the Firefox Profile Folder and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    * http://kb.mozillazine.org/Profile_backup

  • HT1338 I wonder if somebody can help me. I am not able to use my internet bank anymore, since Java launched their latest update (7.51). Appearently this one is not compatible with my hardware. I am using Mac OSX version 10.6.8, and Java version 17.0. Than

    I wonder if somebody can help me. I am not able to use my internet bank anymore, since Java launched their latest update (7.51) a few days ago. Appearently this one is not compatible with my hardware. I am using Mac OSX version 10.6.8, and Java version 17.0, which seems to be the newest one for my op sys. Anybody know how I can solve this? In advance thank you!

    Apple support article to enable Java 6.
    Java 6 Enable

  • I tried to install Selenium IDE and got message "Selenium IDE Java formatter could not be installed because it is not compatible with Firefox 5.0". How can I uninstall Firefox 5.0 and roll back to a version that works with Selenium IDE? - 22 Jun-2011

    I tried to install Selenium IDE and I am getting the message:
    '''Selenium IDE Java formatter could not be installed because it is not compatible with Firefox 5.0''

    You can turn off compatibility checking, but more and more of the Google Toolbar will not work. Google is no longer supporting the Google Toolbar so you should use the alternatives.
    Hi Mark,
    See http://kb.mozillazine.org/Using_Google_Toolbar_features_without_toolbars
    If you have an aspect that is not covered, indicate what that is; otherwise, expect you to be fully functional within 1-2 weeks.
    <br><small>Please mark "Solved" one answer that will best help others with a similar problem -- hope this was it.</small>

  • I use mypoints and there surveys etc, however i cannot load the my points toolbar because it is not compatible with mozilla 8 or 9.,what version do i need to download of mozilla

    compatible with mozilla 8 or 9.,what version do i need to download of mozilla edit

    You could use firefox 3.6, which is old but still supported and secure. However the best solution is to give up on using Google Toolbar because Google no longer support it with firefox, mainly because it has little to offer.
    You can still save google bookmarks by copying them into Firefox. Please have a look at
    * [[google Toolbar is not compatible with Firefox]] <-- clickable link -- <br> which may help with some ideas and proposed solutions.
    I am hoping the Norton report you refer to merely says your system has vulnerabilities, rather than that it has an actual infection (or that it has dealt with or quarantined any malware).

  • I tried to install seo spyglass errror message said not compatible with mozilla firefox. When will mozilla make spyglass cpmpatible?

    tried to install seo spyglass error message said not compatible with mozilla firefox. When will mozilla make spyglass compatible?
    I need this plugin for my affiliate business and enjoy using firefox.
    Seo spyglass may work with IE but I'd rather use firefox

    tried to install seo spyglass error message said not compatible with mozilla firefox. When will mozilla make spyglass compatible?
    I need this plugin for my affiliate business and enjoy using firefox.
    Seo spyglass may work with IE but I'd rather use firefox

  • I have Trend Micro antivirus for Windows 7, but I am being told it is not compatible with Mozilla 9.1, how do I get an older version or adapt?

    I am using a lap top, just reinstalled everything, and now have Firefox 9.1 and am being told it is not compatible with my antivirus, Trend Micro Titanium. I am running Windows 7.

    See:
    * http://community.trendmicro.com/t5/Home-and-Home-Office-Forum/Read-Me-Before-Posting-Titanium-Hotfixes/m-p/55632

  • Mozilla thunderbird contact sidebar version 0.7.1_tb is not compatible with this version of Firefox. When/how can I get that addon to work?

    the side bar version listed in the plug in line below is not compatible with the 6.0 version of Firefox. When will you allow/make a version of that plug in that will be compatible?

    Install Firefox Portable 3.6.22 to your hard drive for that website. <br />
    http://portableapps.com/apps/internet/firefox_portable/localization#legacy36

  • Lots of extensions and plugins were not compatible with firefox 6. Is this the same with firefox 7???

    I have always updated firefox until version 6 which I uninstalled and now I have version 4. Version 6 was not compatible with several extensions such as adobe flashplayer, some java.... too many. Version 7 will have the same problems? I will not update my version if those problems continue.
    Thank you

    Plugins (Tools > Add-ons > Plugins) like the Adobe Flash player and the Java plugin are not affected by updating and should still be working.
    Extensions (Tools > Add-ons > Extensions) like the Java Console extension have a minimum and maximum version and may get disabled.<br />
    Extensions are provided by third-party developers and it may take some time to have them updated or the creator may decide to stop the support for the new Firefox version and abandon the extension like happened with the Google Toolbar.

Maybe you are looking for

  • January 2007 Screenshots

    Snowman wrote: Guidelines · DO NOT post full resolution screenshots!  You can use the "mogrify" command (pacman -S imagemagick) to make a thumbnail of your screenshot: $ cp screenie.png thumb-screenie.png $ mogrify -resize 20% thumb-screenie.png Twen

  • Photoshop CC tools not accessible & drop down menu commands greyed out for no apparent reason.

    Hi... I've been having this issue with Photoshop CC recently where in the middle of editing an image file all of a sudden none of the tools work.  When looking at the drop down menus most of the commands are greyed out, except for a few.  When lookin

  • My mac wont start up. please help

    hi, i wanted to reinstall osx panter as my computer was running really slow. I put the disc in ad my mac restarted. It now wont start upat all. i've tried holding down shfit and c abd still nothing happns.I can not get the disc out as i have a mac mi

  • When watching videos it will start and stop.

    when watching vids it will start and stop. what causes it to do this? wondering. This question was solved. View Solution.

  • IPhone firmware  update 3.1.3

    +"Apple today released iPhone OS 3.1.3 for all iPhone and iPod touch models, addressing several specific bugs as well as offering fixes for a handful of security issues.+ +This update for the iPhone and iPod touch contains bug fixes and improvements,