My Upgrading Java Applets Cache won't finish

I had to reinstall Java 6.0 and each time I try to run something requiring Java, it doesn't load. All I get is a box stating Upgrading Java Applets Chache, it runs about half way and then quits. I am getting very frustrated after working on this for 2 days.
It says "Please wait while your stored Java Applets are updated for Java SE 6". Runs for about 20 secs and then stops and the box disappears. Does anybody have any suggestions? I am not very computer savvy so please explain in simple terms.
Thanks

Hi
I had the exact same problem. took me days to find the solution, hope it works for you.
Click on the START button bottom left on the screen, Then look for the CONTROL PANEL button and click, (this should bring up lots of icons for programmes) on some computers its under themes and sttings I think. Click on the JAVA icon this brings up a CONTROL PANEL. Click on SETTINGS at the bottom, then click DELETE FILES. (this took a while to complete on my computer) Just to make sure after you've done this bring up the JAVA CONTROL PANEL again but this time click on ADVANCED. Then at the bottom theres is Miscellaneous, click on this and there should be JAVA QUICK STARTER with a box ticked next to it, Click on the tick and get rid of it then click on OK..
Try a website that uses Java. the cache box might appear again but just hit cancel. When I tried this i was able to use Java again.
Hope it works

Similar Messages

  • Java Applet: Caching data in User HDD?

    Hi,
    I'm trying to write a java applet which requires approximately 700K of mathematical data everytime it runs. One way to do this is to download those data off from server everytime the applet starts up, but it seems terribly inefficient for me cuz those data do not change at all.
    Is there anyway to work around such issue, for example, by storing the data into user's hdd? Or is it possible to pack the mathematical data together with .class files into a jar file and then somehow access them in user's side? (dunno how to do so and not sure if it's possible)
    Any help would be greatly appreciated. Thanks.
    Aaron

    Hi,
    I'm trying to write a java applet which requires
    approximately 700K of mathematical data everytime it
    runs. One way to do this is to download those data off
    from server everytime the applet starts up, but it
    seems terribly inefficient for me cuz those data do
    not change at all.
    Is there anyway to work around such issue, for
    example, by storing the data into user's hdd? Or is it
    possible to pack the mathematical data together with
    .class files into a jar file and then somehow access
    them in user's side? (dunno how to do so and not sure
    if it's possible)
    Any help would be greatly appreciated. Thanks.
    AaronYou have one answer above.
    Create a jar file, put your applet classes in it, and then put the data files in the jar with the application. Theres no restriction as to the types of file you can put in a jar, and Jars are essentially zip files, so no point in zipping the data first.
    As to storing stuff locally on the client, that's unadvisable, and disallowed due to the java security model anyhow. It is possible to override the security manager but, I'm not sure if this is possible with an applet though. It would undoubtedly not be hassle free.
    Another thing that could help is jar caching..
    http://java.sun.com/products/plugin/1.3/docs/appletcaching.html this would improve the start up time by caching the jar file on the client, between invocations.

  • Java applet cache parameter

    I'm sorry if that what I'm looking for is described elsewhere. I couldn't find it. I seem to have a bug with the latest Apple's java implementation (1.5) downloaded with the latest Software Update.
    I have to switch off applet caching for a certain applet and tried to do this via the Java preference app. It seems that it doesn't work using the offered checkbox. Because everytime when I check it and leave the dialog and turn back it's still checked. I tried it with the deployment properties file but had no luck not knowing (finding) the correct parameter to set false.
    As setting the cache size to zero didn't resolve the problem finally I tried to set the cache path to "/dev/zero" what for sure is the worst solution but it works out. Caching is disabled (This way I discovered that trying to write the cache path in the box in the preference pane you can write it only in reverse manner! llun/ved/ No, it's not a joke)
    Anyone could tell me the right parameter for the deployment properties file that I can correct this situation?
    Thanks
    Powerbook   Mac OS X (10.4.6)  

    Unfortunately, this did not resolve the issue. I have been doing a bit more looking and it appears I'm getting a null resource error on reload/refresh:
    public abstract class SimpleWindow extends JInternalFram
       public SimpleWindow()
          initComponents();
    public class FancyWindow extends SimpleWindow
       public FancyWindow()
          initComponents();
    }During startup, it tries to create a new FancyWindow, which calls initComponents(). Inside initComponents is a call to create a JEditorPane.
    The function runs fine, and I am able to create a new JEditorPane; however, when I do:
    jedit.setText("Text Here");I get my null error (tracing through the calls, it looks like it's unable to initialize the editorkit.
    This does not happen on a normal first-time load. It does not happen if I completely close the browser and restart it to re-run the applet, but if I just try to refresh it, it seemingly can't get memory for this?
    Edit: It looks like this may be a regression in 1.6.0_22 and later: 1.6.0_22 HTMLEditorKit throws NullPointerException when reloaded
    Edited by: Jamie.McPeek on Jan 15, 2011 12:28 AM

  • Upgraded Java: Yahoo games won't load

    Just upgraded to the very latest Java (JRE-7U51) and each time I try to play an online Yahoo game, I get the following message:
    Application Blocked by Security Settings
    Name       ygames_applet
    Location   http://yog34.games.sp2.yahoo.com
    Your security settings have blocked an untrusted application from running
    I've uninstalled it and re-installed it, but it's the same thing each time.  Anyone know what I can do about this?

    Roger Barre
    Sorry to hear you are experiencing this problem with Java. As for Java, avoid the new update (Java 7 Update 51). You can uninstall Java and then revert back to the last working version (Java 7 update 45) to get apps that use java working again.
    I would suggest and I hope my post won't get taken down from Apple for advertising. Google "AppCleaner" a Mac must have! Use this utility to remove java and all of it's component files from your Mac. You can then revert to the last working version of java by running the JRE-U45 installer.
    Life is good again

  • Java Applet Caching for 1.7u51 using pack200

    Hi all,
              Currently, I have implemented an applet and use pack200 to pack my jar to reduce the download time for users to run the applet in their side.
              But even if I add "cache_option" = "plugin" and "cache_archive" attributes, I dont see that my applet being cache when running the applet in java 1.7u51's Cache Viewer under java's control panel.
              Could anyone tell/show me how to cache applet to the cache viewer when running a pack200 applet package? FYI, even if I'm not using pack200 jar, I can't seem to see my applet being cache in
              Cache Viewer.
              I'm running my applet using the deployJava.js
              I'm setting the following in the atttributes clause and
               var attributes = { id:'test_applet',
                       name:'test_applet',
                       code:'TestApplet.class',
                       codebase: '<%=url2TestApplet%>',
                       cache_option: 'plugin',
                       mayscript: true,
                       cache_archive:'test_applet.jar',
                       width:300, height:300} ;
                 var parameters = {};
                 deployJava.runApplet(attributes, parameters, '1.6');
    Best Regards,

    Try [URLConnection.setUseCaches(false)|http://java.sun.com/javase/6/docs/api/java/net/URLConnection.html#setUseCaches(boolean)].

  • Satellite T135 - BIOS upgrade to 2.70 won't finish

    I have a Satellite T135 running Win7 with an original BIOS that I am trying to upgrade to 2.70. I have run all the other software updates in Service Station (2.1.51) without any issues. but the 2.7 BIOS downloads, initiates and warns that i'll need to restart (I select Yes to run it) and receive the popup notice about the electrical problem (faulty DC) that this BIOS fixes, then nothing. It just stops.
    I've disabled my antivirus windows firewall but the update still fails to complete. I've downloaded the file straight from Toshiba (outside of Service Station) and run the file and the exact same thing happens.
    Event Viewer doesn't show any related entries.
    Anyone have an idea on how to get the BIOS upgraded?

    Hi mwarwick,
    Have you installed newest version of Value Added Package from Toshiba website? This program is necessary if you want to update the BIOS so check if you have the newest version installed.
    Furthermore I would recommend loading the default settings in BIOS before you do the update. So go into BIOS, press F9 for loading default values, save & exit setup.
    Can you update the BIOS now?

  • Need help with java applet

    Hi all,
    Am having trouble with a java applet that won't run under Mozilla, Seamonkey, and IE 6 but will run under IE 7 Beta 2. Am posting the error info below in the hope that someone can see what could be wrong as i don't want to upgrade user's to IE 7 since it's a beta and also since most of them use mozilla. thanks in advance:
    load: class com.crystaldecisions.ReportViewer.ReportViewer not found.
    java.lang.ClassNotFoundException: com.crystaldecisions.ReportViewer.ReportViewer
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    Exception in thread "Thread-5" java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletException(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletStatus(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception in thread "thread applet-com.crystaldecisions.ReportViewer.ReportViewer" java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletException(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)

    BigDaddyLoveHandles wrote:
    h1. {color:red}MULTIPOST: [http://forums.sun.com/thread.jspa?threadID=5358840&messageID=10564025]{color}
    That wasn't attention-grabbing enough apparantly. Let's try it again.
    h1. {color:red}MULTIPOST: [http://forums.sun.com/thread.jspa?threadID=5358840&messageID=10564025]{color}
    h1. {color:red}MULTIPOST: [http://forums.sun.com/thread.jspa?threadID=5358840&messageID=10564025]{color}
    h1. {color:red}MULTIPOST: [http://forums.sun.com/thread.jspa?threadID=5358840&messageID=10564025]{color}
    h1. {color:red}MULTIPOST: [http://forums.sun.com/thread.jspa?threadID=5358840&messageID=10564025]{color}
    h1. {color:red}MULTIPOST: [http://forums.sun.com/thread.jspa?threadID=5358840&messageID=10564025]{color}

  • Java applet help for mountain lion update on macbook pro

    Hey, I upgraded to the new mountain lion update yesterday and since then when opening java applets, it won't allow me to do anything with them such as entering usernames and passwords. It was working fine yesterday before I did the update but now I can't seem to get it to work. I've reinstalled Java and it says it's all installed correctly. I was wondering if anyone else is having/had the same problem and knows what to do?
    Thanks in advance

    Hi Leonie! I was running into the same problem on my Macbook Air with ML but I just found a soultion that worked for me.
    I downloaded and installed Java 7 from oracle's website.  And then in the java prefences referenced before, changed the Java 7 build to be my default. 
    All my applets work great now for me.
    Hope this helps!

  • Java applet funktioniert nicht

    der Druck von DHL Online Porto Marke funktioniert nicht. Woran kann das liegen? Java Applet ist in den Sicherheitseinstellungen von Safari aktiviert.
    Servus

    sig and J.C. Westin-
    I used the Adobe Flash UNinstaller, and then installed Adobe Flash Player v10.0.12.10. No improvement/it did not correct the problem. Power E*Trade Pro (a Java Applet) still won't start properly (since Apple Software Update installed Java Release 7).
    I even did all the Repair Permissions steps before and after Flash UNinstal/reinstall (suggested by J.C. Westin; even though they did seem somewhat excessive; Note: all permissions were set properly before installing; Permissions DID need repair AFTER installing Flash; guess that Adobe doesn't get the permissions right in it's own installer!).
    To be honest, I did not really place much hope in solving the problem via an update to a BETA version of Flash. The problem occurred when I updated Java (per Apple's Software Update), not when doing anything with Flash. More to the point, I don't believe the Java applet that's having problems now uses Flash at all. Placing hope in a Flash BETA seemed to me like being told to replace my brake fluid after complaining the engine wasn't running.
    I'm (still) looking for a (non-draconian) way of reverting back to Java Release 6. Someone has to have some steps for trashing specific files/binaries to Remove Java Release 7, then installing the full Java Release 6 anew. Please? Anyone? Trashing the entire OS then performing a clean install is a huge amount of work. I just need to trash Java Release 7.
    Thanks in advance to anyone who can help here.

  • Why does my Firefox say my java applet is corruped and will,not download for my game

    I play a lot of games on POGO and they tell me that I have to have JAVA and Mozilla Fire Fox for my browser. I have 1 game that I get kicked off of each time I try to play it. I get a notice telling me that my browser says my applet from Java is corrupted and will not download. I have done everything they suggest and nothing works. Mozilla seems to be a terriable choice for me as a browser I have a lot of ppproblems with them getting me to my web pages.. help!!

    Hi,
    Have you tried deleting the Java applet cache from the '''Java Control Panel''' > '''Temporary Internet Files''' > '''Settings''' > '''Delete Files...'''?

  • Shared applet cache location

    In order to reduce both load times and network burden we are looking at the possibility using a common location for the java applet cache. Our internal tests, albeit limited, have proved successful. By specifying a common local network location for storing temporary files in the java control panel we were able to pull the jars for our applet by one initial user and use that cache (on a different pc) by another user. Specifically, we are looking at implementing this in a citrix environment using a local cache on the citrix server (rather than the network location in our tests).
    Does anyone have experience doing this? If so, what potential problems could arise? Is there a better solution?
    Thanks for any advise.

    Can I get help from you?
    If my question was not clear, please point out and I will supply more information.
    Looking forward to getting answer from you - Java Expert :)

  • Rewriting java applet parameters

    I am attempting to get a java applet to work through the portal. Of
    course it
    does not work "out of the box" The applet is a menuing applet and it
    gets is
    text for the menu options (and the associated links) from the applet
    parameters. I have read the documentation for this and, in typical Portal
    Server documentation fashion, it has been less than helpful.
    Here are the details: The asp page that loads the applet is loaded from
    /menu/menu.asp Here is the HTML that loads applet and sets some of the
    parameters:
    <td><APPLET name='1' code='imgMenu.class'
    codebase='class/'height='17' width='124' id=Applet1>
    <param name='xloc' value='0'>
    <param name='yloc' value='17'>
    <param name='upimage' value='/menu/images/bbusinessunit.gif'>
    <param name='placement' value='right'>
    <param name="item1" value="0|ACT - Alaska Consolidated Team">
    <param name="item2" value="1|ACT Home">
    <param name="URL2" value="http://alaska.somewhere.com/act|_top">
    <param name="item3" value="1|ACT Badami">
    <param name="URL3" value="http://alaska.somewhere.com/cns_badami|_top">
    <param name="item4" value="1|ACT Endicott">
    I configured the rewriter like this:
    /menu/menu.asp imgMenu.class upimage
    /menu/menu.asp imgMenu.class URL*
    so that the upimage parameter would be rewritten as well ad the URL*
    parameters (there are URL1 all the way to URL53). This does not work.
    Has anyone gotten the Java applet paremeters rewriting working? If so,
    what I am I missing?
    Kent
    "For everything there is a season, and a time for every matter
    under heaven: ... a time to love, and a time to hate; a time
    for war, and a time for peace."
    -- Ecclesiastes 3:1,8

    sig and J.C. Westin-
    I used the Adobe Flash UNinstaller, and then installed Adobe Flash Player v10.0.12.10. No improvement/it did not correct the problem. Power E*Trade Pro (a Java Applet) still won't start properly (since Apple Software Update installed Java Release 7).
    I even did all the Repair Permissions steps before and after Flash UNinstal/reinstall (suggested by J.C. Westin; even though they did seem somewhat excessive; Note: all permissions were set properly before installing; Permissions DID need repair AFTER installing Flash; guess that Adobe doesn't get the permissions right in it's own installer!).
    To be honest, I did not really place much hope in solving the problem via an update to a BETA version of Flash. The problem occurred when I updated Java (per Apple's Software Update), not when doing anything with Flash. More to the point, I don't believe the Java applet that's having problems now uses Flash at all. Placing hope in a Flash BETA seemed to me like being told to replace my brake fluid after complaining the engine wasn't running.
    I'm (still) looking for a (non-draconian) way of reverting back to Java Release 6. Someone has to have some steps for trashing specific files/binaries to Remove Java Release 7, then installing the full Java Release 6 anew. Please? Anyone? Trashing the entire OS then performing a clean install is a huge amount of work. I just need to trash Java Release 7.
    Thanks in advance to anyone who can help here.

  • Java Applet - GridBagConstraint

    Hi,
    I have a question, could somebody tell me how to decrease the space between buttons in my applet as g.weighty = 1; is making the gap too big? I would like to have all button on top with some space but the space I am getting now is too big and I can't find a way how to decrease it.
    import java.awt.*;
    import javax.swing.*;
    public class GUI extends JApplet{
      private GridBagConstraints g = new GridBagConstraints();
      private JPanel jPanelContentPanel;
      private JPanel jPanelButtonPanel;
      private JPanel jPanelGraphPanel;
      private JButton jButton1;
      private JButton jButton2;
      private JButton jButton3;
      private JButton jButton4;
      private GridBagLayout gridbag;
        public ApplicationGUI() {
          init();
        public void init() {
      setSize(450,350);
      enableEvents(AWTEvent.WINDOW_EVENT_MASK);
      jPanelContentPanel = (JPanel) this.getContentPane();
      gridbag = new GridBagLayout();
      jPanelGraphPanel = new JPanel();
      jPanelGraphPanel.setBorder(BorderFactory.createTitledBorder(""));
      jPanelContentPanel.add(jPanelGraphPanel,BorderLayout.CENTER);
      jPanelButtonPanel = new JPanel(gridbag);
      jPanelButtonPanel.setBorder(BorderFactory.createTitledBorder(""));
      g.insets = new Insets(5,5,0,5);
      g.anchor = GridBagConstraints.PAGE_START;
      g.weighty = 1;
      jButton1  = new JButton("Button 1");
      jButton1.setPreferredSize(new Dimension(100, 30));
      g.gridx = 0;
      g.gridy = 0;
      jPanelButtonPanel.add(jButton1,g);
      jButton2 = new JButton("Button 2");
      jButton2.setPreferredSize(new Dimension(100, 30));
      g.gridx = 0;
      g.gridy = 1;
      jPanelButtonPanel.add(jButton2,g);
      jButton3 = new JButton("Button 3");
      jButton3.setPreferredSize(new Dimension(100, 30));
      g.gridx = 0;
      g.gridy = 2;
      jPanelButtonPanel.add(jButton3,g);
      jButton4 = new JButton("Button 4");
      jButton4.setPreferredSize(new Dimension(100, 30));
      g.gridx = 0;
      g.gridy = 3;
      jPanelButtonPanel.add(jButton4,g);
      jPanelContentPanel.add(jPanelButtonPanel,BorderLayout.EAST);
    Thank in advance

    sig and J.C. Westin-
    I used the Adobe Flash UNinstaller, and then installed Adobe Flash Player v10.0.12.10. No improvement/it did not correct the problem. Power E*Trade Pro (a Java Applet) still won't start properly (since Apple Software Update installed Java Release 7).
    I even did all the Repair Permissions steps before and after Flash UNinstal/reinstall (suggested by J.C. Westin; even though they did seem somewhat excessive; Note: all permissions were set properly before installing; Permissions DID need repair AFTER installing Flash; guess that Adobe doesn't get the permissions right in it's own installer!).
    To be honest, I did not really place much hope in solving the problem via an update to a BETA version of Flash. The problem occurred when I updated Java (per Apple's Software Update), not when doing anything with Flash. More to the point, I don't believe the Java applet that's having problems now uses Flash at all. Placing hope in a Flash BETA seemed to me like being told to replace my brake fluid after complaining the engine wasn't running.
    I'm (still) looking for a (non-draconian) way of reverting back to Java Release 6. Someone has to have some steps for trashing specific files/binaries to Remove Java Release 7, then installing the full Java Release 6 anew. Please? Anyone? Trashing the entire OS then performing a clean install is a huge amount of work. I just need to trash Java Release 7.
    Thanks in advance to anyone who can help here.

  • Java Applet Won't Initialize

    This is a modified version of a tutorial I've been working with. Code for Main.java:
    import javax.swing.*;
    public class Main {       
    * @param args the command line arguments
    public static void main(String[] args) {
    SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    JFrame f = new JFrame("Swing Paint Demo");
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.setSize(300,300);
    f.setVisible(true);
    Problem is that when I try to load the applet into an html file:
    <html>
    <APPLET code="Main.class"></APPLET>
    </html>
    It doesn't load.
    The file compiles and executes as a stand alone .jar, but when I try to run it as an applet it won't work.
    I know I'm probably missing an easy step. I have already checked my IE7 settings and java is enabled. I have no problem with any other java applets, just the ones I make. haha. Thank you ahead of time.

    I did some research, and got a new tutorial because the old one was inappropriate like you pointed out previously. This one I copy pasted into my editor, it compiled fine. I run it through my browser and it doesn't work still. Same issue, coincidentally, what do you make of it?import javax.swing.JApplet;
    import javax.swing.JTextField;
    import javax.swing.SwingUtilities;
    //Since we're adding a Swing component, we now need to
    //extend JApplet. We need to be careful to access
    //components only on the event-dispatching thread.
    public class Main extends JApplet {
        JTextField field;
        public void init() {
            //Execute a job on the event-dispatching thread:
            //creating this applet's GUI.
            try {
                SwingUtilities.invokeAndWait(new Runnable() {
                    public void run() {
                        createGUI();
            } catch (Exception e) {
                System.err.println("createGUI didn't successfully complete");
            addItem(false, "initializing... ");
        private void createGUI() {       
            //Create the text field and make it uneditable.
            field = new JTextField();
            field.setEditable(false);
            //Set the layout manager so that the text field will be
            //as wide as possible.
            setLayout(new java.awt.GridLayout(1,0));
            //Add the text field to the applet.
            add(field);
        public void start() {
            addItem(false, "starting... ");
        public void stop() {
            addItem(false, "stopping... ");
        public void destroy() {
            addItem(false, "preparing for unloading...");
            cleanUp();
        private void cleanUp() {
            //Execute a job on the event-dispatching thread:
            //taking the text field out of this applet.
            try {
                SwingUtilities.invokeAndWait(new Runnable() {
                    public void run() {
                        remove(field);
            } catch (Exception e) {
                System.err.println("cleanUp didn't successfully complete");
            field = null;
        private void addItem(boolean alreadyInEDT, String newWord) {
            if (alreadyInEDT) {
                addItem(newWord);
            } else {
                final String word = newWord;
                //Execute a job on the event-dispatching thread:
                //invoking addItem(newWord).
                try {
                    SwingUtilities.invokeAndWait(new Runnable() {
                        public void run() {
                            addItem(word);
                } catch (Exception e) {
                    System.err.println("addItem didn't successfully complete");
        //Invoke this method ONLY from the event-dispatching thread.
        private void addItem(String newWord) {
            String t = field.getText();
            System.out.println(newWord);
            field.setText(t + newWord);
    }

  • Java applets won't run on Safari???

    I have reinstalled Java twice, and it still won't run any Java applets. It just sits there with the cup logo and the arrow on either side. It works fine on Firefox but not Safari. Help?

    Hello
    I'm piggy backing on this thread because I too have had problems with Java and Safari
    Java runs fine for me in Firefox, however.
    I went to a federal website
    https://blrscr3.egs-seg.gc.ca/gol-ged/gov/browserdetection/BrowserCheck.html
    that uses java and received this message
    " Java applet unable to load
    To use this service, you must either install a recent version of the Sun JVM or enable "Scripting of Java applets" if it has been disabled."
    so i looked for an update and have downloaded and installed release 6, (at least, it said that it was installed, but have never been able to figure out where)
    when I check Java preferences, the choices are J2SE 1.4.2 or J2SE 5, and when I've switched to 1.4.2 I still have no luck.
    When i run firefox, i get the java console opening, but it doesn't open with safari, and I can't find the option for this to turn on in safari
    i have restarted both safari and my computer and no luck. I have repaired permissions and no changes have taken place.
    Any more suggestions?
    (thank you, by the way)

Maybe you are looking for

  • How can you make FMS 4.5 stop limiting itself to 20-25 Mbps of bandwidth?

    I'm working on an upgrade to an ActionScript 3.0 website, and this upgrade multiplies the number of RTMP connections that are liable to be used at one time for streaming live video and audio (sometimes uploading, but more often downloading).  Well, w

  • Money taken from my account I don't know why

    Hi, I am student and I bought the photoshop license about a week ago and One day after I bought it I realised you had a better offer so a switched to that offer, I asked spoke with one of your colleagues, Lyna, who told me that I wouldn't be charge f

  • How to handle the weekly planned order which cross month?

    Dear All, We do weekly production plan and balance the plant capacity by month. All the planned orders generated on each Monday and covered one week. But we need to measure the plant perfermance by month and use the monthly perfermance report. So the

  • Loading ODS - Data record exists in duplicate within loaded data

    BI Experts, I am attemping to load an ODS with the Unique Data Records flag turned ON.  The flat file I am loading is a crosswalk with four fields, the first 3 fields are being used as Key Fields in order to make the records unique.  I have had this

  • I didn't find configure terminal command in the ios of aironet 1131AG

    Dear All i bought cisco aironet 1131AG yesterday. when the AP get IP from DHCP and trying to access it by internet browser, the web page is empty so i tried to access AP by console and login in to the privileged mode but i did't find the configure te