I cannot find a Java update, or my software update is not working... Running Mac OS X 10.5.8 keep getting need Java 1.0.6_11 with no luck...?

I am running 10.5.8, I can find no software update as recommended by Ziplogix for Java which keep saying that I am missing 1.0.6_11
Where do I go to download and install this so I may work... lol?

This was the last Java update for Leopard:
Update 10, 29 June 2011 - This release updates J2SE 5.0 to 1.5.0_30, and updates Java SE 6 to 1.6.0_26. J2SE 1.4.2 is no longer being updated to fix bugs or security issues and remains disabled by default in this update. Support for out-of-process Java applets on Mac OS X 10.5 Leopard has been removed with this update.
This release is only for Intel Macs running versions of Mac OS X 10.5. http://support.apple.com/kb/DL1359
Since August 2012 updates for Java (and especially Java Runtime Environment, which is what you actually need) must now be downloaded direct from Oracle:
http://www.oracle.com/technetwork/java/javase/downloads/jre7-downloads-1637588.h tml
(which is for Java 7)
Further information here:
http://www.oracle.com/us/corporate/press/1735645
and their FAQ’s:
http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/mac-faq.html

Similar Messages

  • Java 7 update 17 not  working on Mac os x 10.7.5

    Hi,
    I am trying to get my Java working on my mac os x 10.7.5, but everything is saying that the plug-in is inactive, or java applets just continuously load. My java is enabled and up to date, as is my safari. I have read about all this stuff saying apple disabled java then renabled it without telling anyone. What exactly is going on and how can i get java to work?!?! I have tried fiddling with its settings, uninstalling, reinstalling, downloading chrome, etc etc and nothing seems to have any affect. Is there a way of reverting to some old software in either safari, java, or something to make this work as it used to until it decided to not one magical day?
    Thanks in advance,
    Jen 

    Hi Jen,
    I am having the same issue, from what i am reading and understanding is apple and there in genius ideas decided to block Java because its apparently a security risk - a joke i know!
    see i had my course materail for tafe all working then i decided to do the update that kept popping up since then it doesnt work, i installed java 7 update 17 on my old mac book pro and it works perfectly the only thing that is different between those 2 is safari my imac is running 6.0.3 and my macbook is still on the one before that..
    i am still currently working on a way to enable this again unless apple relise that this was a completly stupid idea and come to there sens before i come up with away then ill keep you updated when i get it working
    so for those who are reading this and havent updated yet my advise if you need java for online games or course materail or anything really DONT UPDATE
    thanks
    mel

  • Cannot find symbl method update Date(int,java.util.Date)

    I get following error
    cannot find symbl method update Date(int,java.util.Date) on compling class called GuestDataBean at line ( rowSet.updateDate( 4, guest.getDate() ); ).
    GustBean.java. I need help on why I get it.
    // JavaBean to store data for a guest in the guest book.
    package com.deitel.jhtp6.jsp.beans;
    import java.util.*;
    public class GuestBean
       private String firstName;
       private String lastName;
       private String email;
       private Date date;
       private String message;
       //Constructors
       public GuestBean(){
            public GuestBean(String firstname, String lastname, String email,Date date,String message){
                 this.firstName=firstname;
                 this.lastName=lastName;
                 this.email=email;
                 this.date=date;
                 this.message=message;
       // set the guest's first name
       public void setFirstName( String name )
          firstName = name; 
       } // end method setFirstName
       // get the guest's first name
       public String getFirstName()
          return firstName; 
       } // end method getFirstName
       // set the guest's last name
       public void setLastName( String name )
          lastName = name; 
       } // end method setLastName
       // get the guest's last name
       public String getLastName()
          return lastName; 
       } // end method getLastName
       // set the guest's email address
       public void setEmail( String address )
          email = address;
       } // end method setEmail
       // get the guest's email address
       public String getEmail()
          return email; 
       } // end method getEmail
       public void setMessage( String mess)
          message = mess;
       } // end method setEmail
       // get the guest's email address
       public String getMessage()
          return message; 
       } // end method getEmail
       public void setDate( Date dat )
          date = dat;
       } // end method setEmail
       // get the guest's email address
       public Date getDate()
          return date; 
       } // end method getEmail
    } // end class GuestBean
    GuestDataBean.java/**
    * @(#)GuestDataBean.java
    * @author
    * @version 1.00 2008/7/18
    // Class GuestDataBean makes a database connection and supports
    // inserting and retrieving data from the database.
    package com.deitel.jhtp6.jsp.beans;
    import java.sql.SQLException;
    import javax.sql.rowset.CachedRowSet;
    import java.util.ArrayList;
    import com.sun.rowset.CachedRowSetImpl; // CachedRowSet implementation
    import java.sql.*;
    public class GuestDataBean
       private CachedRowSet rowSet;
       // construct TitlesBean object
       public GuestDataBean() throws Exception
          // load the MySQL driver
          Class.forName( "org.gjt.mm.mysql.Driver" );
          // specify properties of CachedRowSet
          rowSet = new CachedRowSetImpl(); 
          rowSet.setUrl( "jdbc:mysql://localhost:3306/virsarmedia" );
          rowSet.setUsername( "root" );
          rowSet.setPassword( "" );
           // obtain list of titles
          rowSet.setCommand(
             "SELECT firstName, lastName, email,date,message FROM guest" );
          rowSet.execute();
       } // end GuestDataBean constructor
       // return an ArrayList of GuestBeans
       public ArrayList< GuestBean > getGuestList() throws SQLException
          ArrayList< GuestBean > guestList = new ArrayList< GuestBean >();
          rowSet.beforeFirst(); // move cursor before the first row
          // get row data
          while ( rowSet.next() )
             GuestBean guest = new GuestBean();
             guest.setFirstName( rowSet.getString( 1 ) );
             guest.setLastName( rowSet.getString( 2 ) );
             guest.setEmail( rowSet.getString( 3 ) );
             guest.setDate( rowSet.getDate( 4 ) );
             guest.setMessage( rowSet.getString( 5 ) );
             guestList.add( guest );
          } // end while
          return guestList;
       } // end method getGuestList
       // insert a guest in guestbook database
       public void addGuest( GuestBean guest ) throws SQLException
          rowSet.moveToInsertRow(); // move cursor to the insert row
          // update the three columns of the insert row
          rowSet.updateString( 1, guest.getFirstName() );
          rowSet.updateString( 2, guest.getLastName() );
          rowSet.updateString( 3, guest.getEmail() );
          rowSet.updateDate( 4, guest.getDate() );
          rowSet.updateString( 5, guest.getMessage() );
          rowSet.insertRow(); // insert row to rowSet
          rowSet.moveToCurrentRow(); // move cursor to the current row
          rowSet.commit(); // propagate changes to database
       } // end method addGuest
    } // end class GuestDataBean

    This isn't a JSP question, it better belongs in the JavaProgramming, or JDBC forums.
    But the problem is because the updateDate method uses a java.sql.Date object and you are giving it a java.util.Date object. You have to convert from java.util.Date to java.sql.Date. See: [the api for java.sql.Date|http://java.sun.com/javase/6/docs/api/java/sql/Date.html] .
    Edited by: stevejluke on Jul 21, 2008 5:43 PM

  • My auto updates are not working. I cannot find where to download Camera Raw 8.1 for Photoshop CS6.

    My auto updates are not working! I cannot find where to download Camera Raw 8.1 for Photoshop CS6 (Windows 8 64 bit). My Camera Raw is now at 7.1. I had the online Adobe folks tell me to just download all updates manually. That's great, yet I cannot find camera raw 8.1 to download...
    Please help.
    Thanks, Janet

    there's a direct download link on this page: https://blogs.adobe.com/lightroomjournal/2013/06/camera-raw-8-1-and-dng-converter-8-1-now- available.html

  • Cannot find class java/lang/Thread

    I'm getting this error trying to compile a program that I'm writing in java. Its a very simple program just to get me back to basics. Any ideas as to how I can fix this problem??

    Extracted from Sun's website,
    * Error Message: "Exception in thread NULL" or
    "Unable to initialize threads: cannot find class java/lang/Thread"
    If you are getting one of these fatal error messages when running java,
    javac, or appetviewer, you should check your CLASSPATH environment variable.
    It may list "c:\java" or the "classes" directory from an older release. You can either unset the CLASSPATH variable, or set it to
    include only the latest version of the Java platform class library. For example:
    C:\> set CLASSPATH=.;C:\jdk1.1.8\lib\classes.zip
    This will make sure that you are using the correct classes for this release.
    -- Sudha

  • Accidentally pressed "Diasgree" to update terms & conditions, now cannot find the io7 update. It's still on version 6.x and says software phone is up-to-date.

    Accidentally pressed "Diasgree" to update terms & conditions, now cannot find the io7 update. It's still on version 6.x and says software phone is up-to-date.

    You need to update iTunes to version 10.7. http://www.apple.com/itunes
    You also need to update you profile. It says you have an iPhone 3G with iOS 6.0.1. That is not physically possible.

  • JDK7 INSTALLATION FAILS WITH ERROR CANNOT FIND REQUIRED JAVA RUNTIME ENVIRONMENT

    Hi
    I am trying to install jdk7 on windows7 through command line with command java_ee_sdk-6u4-jdk7-windows-x64 -j "C:\Program Files\Java\jre7\bin". But it fails with error cannot find required java runtime environment in C:\Program Files\Java\jre7\bin. I have set the java_home and path environment variables to above path. Also I tried instaling through installer but it gave same error with null in path. Can anyone help?

    Hi
    I am trying to install jdk7 on windows7 through command line with command java_ee_sdk-6u4-jdk7-windows-x64 -j "C:\Program Files\Java\jre7\bin". But it fails with error cannot find required java runtime environment in C:\Program Files\Java\jre7\bin. I have set the java_home and path environment variables to above path. Also I tried instaling through installer but it gave same error with null in path. Can anyone help?

  • Cannot find app to update

    My Ipad shows I have 1 update but I cannot find anything to update. It had 4 updates, I found 3 in the purchased but not currently on my ipad but I cannot find the last one and the 1 will  not go away.

    I have done exactly what you said. When I check "update", a screen  drops down that asks that I enter my email address to continue........but i cannot find any way to do this.
    In the past, all I would do is check "update", and the update would take place. Since I upgraded to Mountain Lion, this has changed, and i do not know how to do this simple thing.......the app store shows an update is due to be updated, but i cannot find out how to do it.

  • Cannot find: Legacy Java SE 6 runtime

    Loaded OX Yosemite on my Mac and now cannot find Legacy Java SE 6 runtime to fix my Illustrator on CS4.  UGH!  Anyone have a link?  E

    Justin,
    In addition to what mo said, some have found that the page with the direct download link,
    http://support.apple.com/kb/DL1572
    may turn up blank to start with, so it may be necessary to reload the page.

  • Java 7 Update 11 Not Working with Firefox

    For me, the problems described in the thread "Java 7 Update 10 Not Working with Firefox? " Java 7 Update 10 Not Working with Firefox?
    are continuing with Java 7 Update 11.
    Windows 7 64 bit
    Firefox 18
    The problem is that "Java(TM) Platform" is missing from the plug-in list.
    I've uninstalled Java 7 Update 11 and reinstalled Java Update 9 which correctly installs the plugin and restores Java functionality which was broken immediately upon installing both Java 10 & 11.

    981243 wrote:
    So why not using Ju11 ? You can workaround the issue. It would sucks but still be safer than using Ju9.
    Also ask Mozilla forums if Firefox has options where to search for plugins.
    Or try 64-bit Firefox.As I explained in both threads ...
    Java 7 Update 10 Not Working with Firefox?
    Java 7 Update 11 Not Working with Firefox
    ... neither jre7u10 nor jre7u11 are working ... and they are BOTH broken with the same problem ... "Java(TM) Platform" pliugin is missing from the plug-in list. It cannot be enabled, because it simply is NOT there. A suggestion was made the jre7u12 will be the "fix" for this issue ... so I installed the Update 12 Preview and it sis ALSO broken, no "Java(TM) Platform" in the plug-in list.
    The ONLY Java version that actually works for me is jre7u9.
    As far as installing Firefox 64bit ... I see no future in installing a browser that has been discontinued.
    http://www.computerworld.com/s/article/9233976/Mozilla_suspends_work_on_64_bit_Firefox_for_Windows
    Even though Mozilla relented due to backlash, I continued development will be a somewhat low priority.
    http://www.computerworld.com/s/article/9234997/Mozilla_compromises_on_x64_Firefox_after_user_backlash

  • I bought osx lion for download but I cannot find where it is on the app store.  i currently have 10.5.8 so I dont know if that has something to do with it.

    i bought osx lion for download but I cannot find where it is on the app store.  i currently have 10.5.8 so I dont know if that has something to do with it.

    You cannot use Lion until you have upgraded to 10.6.8:
    Upgrading to Snow Leopard
    You can purchase Snow Leopard through the Apple Store: Mac OS X 10.6 Snow Leopard - Apple Store (U.S.). The price is $19.99 plus tax. You will be sent physical media by mail after placing your order.
    After you install Snow Leopard you will have to download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store. Access to the App Store enables you to download Mountain Lion if your computer meets the requirements.
         Snow Leopard General Requirements
           1. Mac computer with an Intel processor
           2. 1GB of memory
           3. 5GB of available disk space
           4. DVD drive for installation
           5. Some features require a compatible Internet service provider;
               fees may apply.
           6. Some features require Apple’s iCloud services; fees and
               terms apply.
    You received a coupon you can use and redeem on the App Store to download Lion. There is no App Store in Leopard.

  • Java(TM) Update Registration not working anymore

    Hello,
    I updated my java 7.u10 to 7.u11 couple days ago.
    It's working on IE, but not on Google Chrome and the other browsers.
    I re-installed Google Chrome, re-installed java, but neither worked.
    I'm clueless.
    Everytime after I re-installed java I get this message:
    'Java(TM) Update Registration not working anymore'
    More details:
    Probleemhandtekening:
    Gebeurtenisnaam van probleem:     APPCRASH
    Naam van de toepassing:     jaureg.exe
    Versie van toepassing:     2.1.9.0
    Tijdstempel van toepassing:     4ff3180c
    Naam van foutmodule:     jaureg.exe
    Versie van foutmodule:     2.1.9.0
    Tijdstempel van foutmodule:     4ff3180c
    Uitzonderingscode:     40000015
    Uitzonderingsmarge:     00018894
    Versie van besturingssysteem:     6.1.7601.2.1.0.256.1
    Landinstelling-id:     1043
    Aanvullende informatie 1:     2d10
    Aanvullende informatie 2:     2d10958005027d6e0c36717b2dc39dab
    Aanvullende informatie 3:     5384
    Aanvullende informatie 4:     538468aeed23aef40edb492cc7fa9a53
    Lees de onlineprivacyverklaring:
    http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0413
    Als de onlineprivacyverklaring niet beschikbaar is, lees dan onze offlineprivacyverklaring:
    C:\Windows\system32\nl-NL\erofflps.txt

    981243 wrote:
    So why not using Ju11 ? You can workaround the issue. It would sucks but still be safer than using Ju9.
    Also ask Mozilla forums if Firefox has options where to search for plugins.
    Or try 64-bit Firefox.As I explained in both threads ...
    Java 7 Update 10 Not Working with Firefox?
    Java 7 Update 11 Not Working with Firefox
    ... neither jre7u10 nor jre7u11 are working ... and they are BOTH broken with the same problem ... "Java(TM) Platform" pliugin is missing from the plug-in list. It cannot be enabled, because it simply is NOT there. A suggestion was made the jre7u12 will be the "fix" for this issue ... so I installed the Update 12 Preview and it sis ALSO broken, no "Java(TM) Platform" in the plug-in list.
    The ONLY Java version that actually works for me is jre7u9.
    As far as installing Firefox 64bit ... I see no future in installing a browser that has been discontinued.
    http://www.computerworld.com/s/article/9233976/Mozilla_suspends_work_on_64_bit_Firefox_for_Windows
    Even though Mozilla relented due to backlash, I continued development will be a somewhat low priority.
    http://www.computerworld.com/s/article/9234997/Mozilla_compromises_on_x64_Firefox_after_user_backlash

  • HT6208 Cannot download the latest update 7.1.1 even though plugged in and on wifi keeps saying error help!!!!!

    Cannot download the latest update 7.1.1 even though plugged in and on wifi keeps saying error help!!!!!

    I am not getting an errr #. It just says that there are purchases on my ipod, not in my itunes. I transfer all of my ipod purchases into itunes. Then I try an download the new version of my ipod 7.1.1. It still says there are purchases on my ipod touch. So I just hit continue because their are not purchases on my ipod, that aren't in itunes. It extracts the software, and backs up ipod. Then itunes just closes. When I reopen it I get the same message A new iPod software version (7.1.1) is available for the iPod “My" iPodl”. Would you like to update your iPod now? My imac has recently been restored to as new, I have the newest ipod touch, and my version of itunes is also the newest version. The only thing that I can assume is that the problem, is another untested & bad update, from Capn Cook.

  • HT201177 I cannot view some videos and participate in some websites since Adobe upgraded all to Flash 11.7. I have an older Mac G5 PowerPC (no Intel chip) running OS 10.5.8. I keep getting splash screens saying I have to update to Flash 11.7 but 11.7 is m

    I cannot view some videos and participate in some websites since Adobe upgraded all to Flash 11.7. I have an older Mac G5 PowerPC (no Intel chip) running OS 10.5.8. I keep getting splash screens saying I have to update to Flash 11.7 but 11.7 is made for those Macs with an Intel chip. I am running the newest Flash for my system. It seems all concerned should have made Flash retro-compatible for those of us with older Macs. Is there a work around to this Flash requirement short of buying a new Mac with the Intel chip?

    I'll bet you'll have better luck if you post your question in the Power Mac discussions here: https://discussions.apple.com/community/desktop_computers/power_mac
    Either that, or one of the forums at Adobe.
    Good luck.
    Russ

  • Hello I have lost my serial number for adobe photoshop elements. Bought from John Lewis last month. I did have it installed but had to uninstall but cannot find the any of the packaging etc plus did not register. What is the best way of getting it install

    Hello I have lost my serial number for adobe photoshop elements 13. Bought from John Lewis last month. I did have it installed but had to uninstall but cannot find the any of the packaging etc plus did not register. What is the best way of getting it installed again/replacement? Thanks

    Do you have the receipt? If you have proof of ownership, you _may_ be able to persuade Customer Support to help you out.  I imagine you would need to scan and email that proof if it works at all.

Maybe you are looking for

  • Bug fixes in 10.1.2 AS (OC4J)

    Does anyone know of 10.1.2 bug fix list? We are migrating from 9.0.4 and want to understand how much has changed in the J2EE/OC4J core. On the functionality side there appears to be limited to no change?

  • Re : what is diffrent Between  Synchronies and   Asynchronies  process

    Hi ,       what is diffrent between Synchronies and   Asynchronies  process in  session Method and call Transcation method  pls give one Example... Thanks Arief .S

  • Delete standby database fails

    Hello, I setup replication on database A in server A to Server B and on the same database A i have logshipping setup as well to Server C. Now I removed logshipping configuration on database A in server A and trying to delete the mirrored copy of data

  • Customer Return of Manuafctured Goods

    Hi Gurus How do I reverse my excise invoice? Understand we can use J1IH but it is reversing the whole document.. I only want to reverse partial since customer is returningf partial..How do I reverse the excise invoice for the return qty? Appreciate y

  • Where can I re-doanload premiere elements 11 organizer?

    Somewhere along the line some files got messed up with the organizer, is there a place i can redownload it or should i just email adobe?  I'm not too happy about this. All I did was download the orignal disk to my new computer, and alot of aspects of