Cannot run Java with Firefox

I have tried anything for 5 hours and nothing works.
New dell laptop with Windows 8.1 64 bits.
Firefox version: 37.0a1 (2014-12-05).
Install Java twice via jxpiinstall.exe and jre-8u25-windows-i586-iftw.exe. 32 bits version.
Java test page https://www.java.com/en/download/installed.jsp reports that 'java is disabled or not installed'.
Java console shows that Java is enabled for browsers.
DOS Command line 'java -version' shows java running.
I have even put the 'C:\Program Files (x86)\Java\jre1.8.0_25' in the global PATH variable and created a JAVA_HOME variable with this directory.
I went into regedit and change the rights on all mozilla mozilla.org keys.
Finally, I downloaded Chrome and it works after some configuration.
Regards.
PS: the register process to be able to ask a question is the most impossible (being polite) that I have ever seen.

Finally, I could find a page to download a previous version.
I downloaded Firefox Setup 33.1.1.exe and installed it. It immediately donwloaded the right plugins.
I configured the Java(TM) Platform SE 8 U25 plugin to be always activated and I went to the Java test page https://www.java.com/en/download/installed.jsp and now it works.
I will try with updated version, but it is clear that this Nightly version has a problem with Windows 8.1

Similar Messages

  • HT1338 i cannot run java with mountain lion

    i cannot run java with mountain lion

    @jnsmth
    I see Barney-15E made suggestions regarding Chrome preferences. There's also a setting on the Mac to deal with this. Regarding the drop-down menus not seeming to scroll through (such as a list of states)--where when you place or click your cursor over the drop-down menu and it only opens to some of the options in a list, I found that you have to change the scroll bar behavior in your computer's (and not the browser's) General Preferences within your System Preferences.
    Open System Preferences, and click on "General" inside the top row of "Personal Preferences" (as it is in my system with Mountain Lion, and I think prior operating systems before that).
    Once inside General Preferences, select the radio button option for your scroll bar which you'd like to use in the "Show scroll bar:" section ("Automatically based on mouse or trackpad," "When scrolling," or "Always." If you're using a mouse and not a trackpad, you'd probably want to select "Always" as it takes swiping over the drop-down list on the trackpad to enable (make visible) the scroll bar and/or scroll the list.
    Either with the installation of Mountain Lion, or the installation of my trackpad (I'm using a desktop iMac and not a Macbook / laptop) I found that the righthand scroll bars seem to automatically disappear. When I moused over or clicked on a drop-down menu (such as the list of states) I'd see only the first few options in the list. In order to access the rest of the states (get the list to scroll) you have to either have the scroll bar setting set to show "Always" or (if you have a trackpad) use the trackpad to swipe/scroll while hovering your cursor over the list's items to get it to scroll the list, and thus then show/reveal the lefthand scroll bar (which can then be accessed with your mouse if you prefer.
    This confused me at first when my scroll bars seemed to disappear, but was an easy fix.
    Hope that helps with that part of your issue.

  • I cannot use JAVA with Firefox but I can use it with Internet Explorer WHY?

    I have never had a problem when JAVA 7 was needed to use a program. Until now. Firefox will not allow me to use Java. I have to open Internet Explorer when working with any program and it works.

    To protect Firefox users, Mozilla has blocked/disabled Java 7 u6 and below due to serious security flaws in the previous versions of Java 7. The security flaw would also apply to any other browser using the affected versions of Java 7. You can see the version of Java and whether it is disabled in Add-ons > Plugins; look for "Java Platform SE...". See - https://addons.mozilla.org/en-US/firefox/blocked/p138
    You can check your '''''enabled''''' Plugins at any time - https://www.mozilla.org/en-US/plugincheck/
    Information about Java, testing and updating it - https://support.mozilla.org/en-US/kb/use-java-plugin-to-view-interactive-content

  • I was running KeyPassFox with Firefox 8.0.1, but the plugin does not work in the new release (9) . Is there a way to restore my previous version with all of my bookmarks intact? I do not mind if I have to restore the plugins myself.

    I was running KeyPassFox with Firefox 8.0.1, but the plugin does not work in the new release (9) . Is there a way to restore my previous version with all of my bookmarks intact? I do not mind if I have to restore the plugins myself.
    The plugin shows on the list as enabled and functioning, yet the tool does not show on the toolbar. It would appear that I need to restore the previous version of Firefox and wait until a newer release of the plugin is available before upgrading the browser.

    I copied the iTunes file from the external drive and it's in both places.  I thought all I would need is the iTunes program (which I downloaded to new computer) and my iTunes library file.  There must be something else that's missing.  My iTunes library looks the same on the new computer as it does when I open it on the external drive.  If I click on an iTunes library song from my new computer, it will only play if I have the external drive plugged in.
    My back-up drive is a mess.  I have multiple copies of music, video, photo, and document files and I don't know how that happened. ={  Obviously, I don't know how to back up stuff properly and there are back-up files extending over a 6- to 8-year period.  I think all I did was just drag and drop the main folders from the back-up drive to the same main folders on the C: drive.  Also (and I'm kind of fuzzy on this) Windows used to automatically save music files in a folder within my document files (which makes no sense to me).  As my Jewish friends would say, "Oy Vey!" 

  • Cannot run java can anyone help??

    cannot run java, it says it is loaded but when I go to Pogo.com java is booted out. Can anyone help??

    have ur java software updated.

  • How to run Java from Firefox Extension using liveconnect?!

    Hi, I'm trying to run a very simple java program from a Firefox extension I'm making but I've run into a brickwall and just can't get it to work. I'm a complete beginner in java and don't know much javascript so I've copied and pasted code from around the net to get where I am now. I'm sure I'm just making some stupid error at some step.
    In order to work out what I'm misunderstanding/doing wrong I'd be really grateful if someone could show me how to get it to work using a very basic example:
    Say I have a .java file taken from the sun pages:
    * The HelloWorldApp class implements an application that
    * simply displays "Hello World!" to the standard output.
    class HelloWorldApp {
        public static void main(String[] args) {
            System.out.println("Hello World!"); //Display the string.
    }So I stick it into a jar using:
    jar.exe cvfe HelloWorldApp.jar HelloWorldApp.class HelloWorldApp.class
    I then place it directly on my C: drive.
    In the javascript of my firefox extension I have code copied and pasted from https://developer.mozilla.org/en/Java_in_Firefox_Extensions:
    var urlClasz = java.lang.Class.forName("java.net.URL");
    var urlArray = java.lang.reflect.Array.newInstance(urlClasz,1);
    urlArray[0] = new java.net.URL('file:///C:/HelloWorldApp.jar');
    var cl = java.net.URLClassLoader.newInstance(urlArray);
    var aClass = java.lang.Class.forName("HelloWorldApp", true, cl);
    var aStaticMethod = aClass.getMethod("HelloWorldApp", []);
    var greeting = aStaticMethod.invoke(null, []);This seems to start java but then only gives me the error:
    "Error: uncaught exception: Error calling method on NPObject! [plugin exception: java.lang.ClassNotFoundException: HelloWorldApp]."
    I would be infinitely grateful if someone could show me the code I would use in this situation to run the HelloWorldApp. If I could get it working in this basic situation I'm sure I could work it out from there.
    Thank you very, very much!!

    By the way, I answered just because nobody did and I have some experience with using java from mozilla javascript.
    But I never played with Firefox extensions.
    No problem baftos, I understand you might not have all the answers but you've helped loads so far, so thanks a lot! I've found it very difficult to find good documentation on this for a beginner like me.
    Adding public did it (although I thought that I'd tried that, oops) so thanks again for that. I may have a couple of other questions just in case you happen to know the answer!
    I'd like to send some string arguments to the method I really want to run eg:
    public class HelloWorldApp {
    public static void sayHello(String[] args)
    {code}After googling .forName and .getMethod to see how to pass parameters I've added some code:
    {code:java}
    var strClass = java.lang.Class.forName("java.lang.String");
    var parameters = java.lang.reflect.Array.newInstance(strClass,2);
    parameters[0] ="My string argument";
    parameters[1] ="3"; // etc...
    var argHolder = java.lang.reflect.Array.newInstance(strClass,1);
    argHolder[0] = strClass;
    var aClass = java.lang.Class.forName("HelloWorldApp", true, cl);
    var aStaticMethod = aClass.getMethod("sayHello", argHolder);
    var greeting = aStaticMethod.invoke(null, parameters);
    {code}What I thought I was doing was creating a java array: argHolder and putting the string class/object thingy?! in it so that getMethod would look for a method called "sayHello" which took a string array as an argument... but apparently not!
    This brings me back to square one with a cannot find method with these arguments error:
    "Error: uncaught exception: Error calling method on NPObject! [plugin exception: java.lang.IllegalArgumentException: No method found matching name getMethod and arguments [java.lang.String, [Ljava.lang.String;]]."
    You don't happen to know how to do this as well do you?!
    Edited by: mzatanoskas on Feb 13, 2009 1:40 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Since installing version 4, I cannot get online with Firefox. No website works. Have reloaded twice. What to do?

    Firefox show problem loading page, no matter what I try. Had no problems before installing version 4. Have reloaded twice to no avail. What to do?

    If you see the message in here: www.google.com/firefox
    '''you are updated''' see your user agent :
    Mozilla/5.0 (Windows NT 6.0; rv:9.0.1) Gecko/20100101 '''Firefox/9.0.1'''
    all you have to do is to '''set another page as the home page''', as '''cor-el '''said with very detailed explanation in [https://support.mozilla.org/en-US/questions/905310 here]
    '''copied from cor-el reply''':
    "That text about not running the latest Firefox version is hardcoded on the www.google.com/firefox site that previous Firefox used as the home page and Google doesn't seem to maintain that page anymore. Current Firefox versions no longer use that Google site as the home page, but use the build-in about:home page as the home page. So Google assumes that you use an older Firefox version if you still visit that site and warns you about that and suggests to update. You can use another page as the home page like about:home or www.google.com or www.google.com/ig (iGoogle)."
    [https://support.mozilla.org/en-US/kb/How%20to%20set%20the%20home%20page How to set the home page]
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • [Solved] Cannot browse youtube with firefox?

    I noticed this last night, and it is still not working this morning (could very well be something that was changed on youtube's side of things that isn't compatible with Firefox, since it works with Chrome).  Anyway, if I'm watching a video on youtube, and I click another video from the suggested videos / sidebar the page will load (within youtube's frame — red progress bar along the top of the page, and the title / comments will change), however, the previous video will still be playing and the new one will not load until I refresh the page. 
    Has anyone else noticed this behavior?  Is it a new youtube "feature" or is some configuration incorrect on my side of things?  Thanks.
    Last edited by hippieben (2013-10-31 00:06:26)

    Jellicent wrote:
    How are people supposed to narrow down your problem without sitting in front of your screen?
    It's not like they can see what plugins and extensions you have installed and so on.
    You'll either have to provide those or you'll have to work alone.
    hahaha I have no idea, I've tried disabling adobe-flash from within firefox, but not removing it from my system.  But then I just get the "you don't have flash installed" error.  I've also tried disabling my adblocker, but I really don't have many FF extensions installed.  I have to run to class in a few minutes, so I'm hoping someone else has had this issue and will come along.

  • Cannot use Java on Firefox in Mac

    I'm Mac user. I have followed all the instruction to set up the java on firefox in my macbook. However, when I browsing those web site which request java, I still unable to open it.
    If I use Safari to open those web sites, that is absolutely fine.
    Does anyone can help me to solve this problem please?

    You can only use IE to display XPS files directly.
    Firefox doesn't know about this file.
    *http://windows.microsoft.com/en-us/windows/what-is-xps-viewer#what-is-xps-viewer=windows-vista
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=358297 bug 358297] - MS-Windows: XPS Viewer incorrectly redirects to firefox (Vista, XP)

  • Cannot open gmail with firefox. with anothers it goes

    I don't know what is the problem when I want to open GMAIL with Firefox. With Explorer or Google Chrome it's OK. I get a mesage that "cookies" or something else is wrong.
    here the error in hebrew:
    הדף מבצע העברה לא תקינה
    Firefox זיהה שהשרת מכוון מחדש את הבקשה עבור כתובת זו בצורה שלא תושלם לעולם.
    Please help me
    Cordially,
    Moshe
    בעיה זו נגרמת לעיתים מסירוב לקבל עוגיות או ניטרולן.

    This can be caused by corrupted cookies.
    *https://support.mozilla.org/kb/fix-login-issues-on-websites-requrie-passwords
    *http://kb.mozillazine.org/Cookies
    Clear the cache and the cookies from sites that cause problems.
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"

  • Cannot run "java -jar javapetstore-2.0-ea5-installer.jar "!

    My java version is:
    java version "1.6.0_06"
    Java(TM) SE Runtime Environment (build 1.6.0_06-b02)
    Java HotSpot(TM) Client VM (build 10.0-b22, mixed mode, sharing)
    When I run "java -jar javapetstore-2.0-ea5-installer.jar"
    I get errors:
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    at com.sun.java.swing.plaf.gtk.GTKLookAndFeel.initSystemColorDefaults(GTKLookAndFeel.java:1267)
    at com.sun.java.swing.plaf.gtk.GTKLookAndFeel.loadStyles(GTKLookAndFeel.java:1509)
    at com.sun.java.swing.plaf.gtk.GTKLookAndFeel.access$000(GTKLookAndFeel.java:37)
    at com.sun.java.swing.plaf.gtk.GTKLookAndFeel$WeakPCL$1.run(GTKLookAndFeel.java:1449)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)
    Exception in thread "main" java.lang.NullPointerException
    at javax.swing.plaf.synth.SynthLookAndFeel$AATextListener.propertyChange(SynthLookAndFeel.java:793)
    at java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:339)
    at java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:347)
    at java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:276)
    at java.awt.Toolkit.setDesktopProperty(Toolkit.java:1784)
    at sun.awt.SunToolkit.fireDesktopFontPropertyChanges(SunToolkit.java:1714)
    at sun.awt.SunToolkit.setAAFontSettingsCondition(SunToolkit.java:1759)
    at sun.swing.SwingUtilities2$AATextInfo.getAATextInfo(SwingUtilities2.java:119)
    at com.sun.java.swing.plaf.gtk.GTKLookAndFeel.initComponentDefaults(GTKLookAndFeel.java:1258)
    at com.sun.java.swing.plaf.gtk.GTKLookAndFeel.getDefaults(GTKLookAndFeel.java:294)
    at javax.swing.UIManager.setLookAndFeel(UIManager.java:537)
    at javax.swing.UIManager.setLookAndFeel(UIManager.java:581)
    at org.jvnet.poormans_installer.Main.setUILookAndFeel(Main.java:88)
    at org.jvnet.poormans_installer.Main.main(Main.java:49)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    at com.sun.java.swing.plaf.gtk.GTKLookAndFeel.initSystemColorDefaults(GTKLookAndFeel.java:1267)
    at com.sun.java.swing.plaf.gtk.GTKLookAndFeel.loadStyles(GTKLookAndFeel.java:1509)
    at com.sun.java.swing.plaf.gtk.GTKLookAndFeel.access$000(GTKLookAndFeel.java:37)
    at com.sun.java.swing.plaf.gtk.GTKLookAndFeel$WeakPCL$1.run(GTKLookAndFeel.java:1449)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)
    My OS is CentOS5.1 final.

    have u set the path to java 1.4.1 ?
    if u set the path ,,, the there will no problem.

  • Cannot access iCloud with Firefox 13.01/OSX 10.7.4

    On my MacBook Pro running OS X 10.7.4, Firefox 13.01 will not load https://www.icloud.com/ I have Adblocker disabled for this page.
    I can successfully load the page using Safari, but my preference is to use Firefox.
    A couple of weeks ago I did speak (now can't remember if it was voice or text - although since my memory says English was not his primary language, it must have been voice) with an Apple CSR. After a pretty lengthy conversation including some rebooting, etc., he ended up saying that he thought it was a Firefox problem.
    And yes, I know there are pages for the general issue "cannot load pages" that have a laundry list of things to try and tweak. Because my issue is with a SINGLE website address, I really would prefer not to tweak my whole machine just for one site.
    Thanks

    I tried the following without any success.
    1) Clicked on App Store.app from Finder
    2) Clicked on App Store from LaunchPad
    3) Clicked on Applications, App Store
    4) Logged out of iTunes App Store, did 1, 2, and 3
    5) Logged back into iTunes App Store, repeated 1, 2, and 3
    If I am able to solve this, I will post my solution. But I am not very hopeful. Here is some additional info about the iMac in case it is of any use.
    iMac
    27-inch, Mid 2010
    Processor  2.93 GHz Intel Core i7
    Memory  8 GB 1333 MHz DDR3
    Graphics  ATI Radeon HD 5750 1024 MB
    Software  Mac OS X Server Lion 10.7.5 (11G63)

  • Firefox crashed, can't open it at all, having to go thru internet explorer to use computer. Crashed when two firefox updates were done. Refreshing and rebooting didn't work. How do I fix this so my computer runs again with firefox?

    We heard firefox had crashed, friend 4 hours away has same problem. She got hers fixed but even tho I can get a message that firefox is running , its not functioning so I can use it. Had two updates to do, one automatically, one I started at firefox request. Since then, we can't get on the internet or any programs. Unless you can tell me what's wrong, I'll have to have a computer company come in to fix problem.

    It is always a good idea to back up your bookmarks, if you are able to do that now it may help, and if you are considering using them in an alternative browser it may be a good idea to back them up as HTML as well as the default .json files.
    * see [[Backing up and restoring bookmarks]]
    Have you read the articles shown in my first message above with the blue clickable links. One of the first things to try is using Firefox in firefox [[safe mode]] which should be available from your program list, BUT when trying that on the first dialogue do not make changes just click on continue.
    *Does that work ?
    * did you see the list of options and click on the continue button ?
    * are you seeing any error messages ?

  • Cannot run java program after archive and install

    Hi,
    I am new to this forum and appreciate the help and advice given here.
    Yesterday, I did an archive and install on my system which install 10.4.3. Afterwards, I installed X11 and did the software updates which brought my system back to 10.4.8. It also installed Java 1.3.1, 1.4.2, and 1.5 (J2SE5).
    Prior to the archive and install, I had no problems executing a java program either in the command line in an X11 window or using Eclipse. However, when I try now I get the exception message "Exception in thread "main" java.lang.NoClassDefFoundError:". I checked my CLASSPATH and it's not the problem. I am able to compile, and execute the javadoc command. If I type java -version I get
    java version "1.5.0_06"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-112)
    Java HotSpot(TM) Client VM (build 1.5.0_06-64, mixed mode, sharing)
    Under Eclipse, I am able to see the Java versions under Preferences - Java - Installed JREs but if I go to the Run -> Run As menu, I see (none applicable).
    Thanks for any suggestions to fix this.
    James
    Dual 867MHz G4   Mac OS X (10.4.8)  

    I resolved the issue. I reinstalled XCode and had an issue with one of the files I was testing.

  • Verified by Visa payments cannot be made with Firefox 7, any help?

    I can get into the Verified by Visa site, secure6.arcot.com, but cannot amend my details. I also cannot enter my password when finalising an internet payment. I can do both these with Internet Explorer. I have tried enabling third party cookies or allowing the sites concerned under exceptions, but neither seem to work. Anyone any ideas???

    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]''' {web link}
    While you are in safe mode;
    Type '''about:preferences#advanced'''<Enter> in the address bar.
    Under '''Advanced,''' Select '''General.'''
    Look for and turn off '''Use Hardware Acceleration'''.
    Poke around safe web sites. Are there any problems?

Maybe you are looking for