Programme stuck and lock error

hi all,
infact such type of request i post in another post, but i think that was not related to its subject. sorry if u ppl think it replica.
i am facing problem in my programme which was stuck randomly, sometime after 12 hours or sometime after 25 hours.
when my programme was stuck send SIGQUIT it returns me following log, can anyone suggest me what could be the reason.
Full thread dump Java HotSpot(TM) Client VM (1.4.2_08-b03 mixed mode):
"Signal Dispatcher" daemon prio=10 tid=0x000cdab0 nid=0x6 waiting on condition [0..0]
"Finalizer" daemon prio=8 tid=0x000c8980 nid=0x4 in Object.wait() [fc77f000..fc77fc30]
at java.lang.Object.wait(Native Method)
- waiting on <0xf1f1efe0> (a java.lang.ref.ReferenceQueue$Lock)
at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
- locked <0xf1f1efe0> (a java.lang.ref.ReferenceQueue$Lock)
at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
"Reference Handler" daemon prio=10 tid=0x000c7020 nid=0x3 in Object.wait() [fe27f000..fe27fc30]
at java.lang.Object.wait(Native Method)
- waiting on <0xf1f1f048> (a java.lang.ref.Reference$Lock)
at java.lang.Object.wait(Object.java:429)
at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:115)
- locked <0xf1f1f048> (a java.lang.ref.Reference$Lock)
"main" prio=5 tid=0x00035a98 nid=0x1 runnable [ffbfe000..ffbff1e4]
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:129)
at oracle.net.ns.Packet.receive(Unknown Source)
at oracle.net.ns.DataPacket.receive(Unknown Source)
at oracle.net.ns.NetInputStream.getNextPacket(Unknown Source)
at oracle.net.ns.NetInputStream.read(Unknown Source)
at oracle.net.ns.NetInputStream.read(Unknown Source)
at oracle.net.ns.NetInputStream.read(Unknown Source)
at oracle.jdbc.driver.T4CMAREngine.unmarshalUB1(T4CMAREngine.java:978)
at oracle.jdbc.driver.T4CMAREngine.unmarshalSB1(T4CMAREngine.java:950)
at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:434)
at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:181)
at oracle.jdbc.driver.T4CPreparedStatement.execute_for_rows(T4CPreparedStatement.java:791)
at oracle.jdbc.driver.OracleStatement.execute_maybe_describe(OracleStatement.java:912)
at oracle.jdbc.driver.T4CPreparedStatement.execute_maybe_describe(T4CPreparedStatement.java:693)
at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:988)
at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:2884)
at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:2925)
- locked <0xf191fe80> (a oracle.jdbc.driver.T4CPreparedStatement)
- locked <0xf1f1f178> (a oracle.jdbc.driver.T4CConnection)
at com.warid.web2sms.Web2SMS.getGameMsg(Web2SMS.java:90)
at com.warid.web2sms.Web2SMS.main(Web2SMS.java:53)
"VM Thread" prio=5 tid=0x000c61d8 nid=0x2 runnable
"VM Periodic Task Thread" prio=10 tid=0x000d0910 nid=0x8 waiting on condition
"Suspend Checker Thread" prio=10 tid=0x000cd1b0 nid=0x5 runnable

hi all,
this is my code
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.sql.PreparedStatement;
import java.sql.Connection ;
import java.sql.SQLException ;
import java.sql.ResultSet;
import java.net.URL;
import java.net.HttpURLConnection;
public class WS
      private Connection        GConn;
      private PreparedStatement GPS;
      public WS()
               gVasDBConnect();
      }//EO constructor
       public static void main(String args[])
           WS  Gd=new WS();
            while(true)
                  try
                      if(Gd.GConn.isClosed() || Gd.GConn==null)
                          Gd.gVasDBConnect();
                      Gd.getGameMsg();
                      Thread.sleep(1000);
                  catch(Exception ex)
                    System.out.print(ex.getMessage());
                    try
                          if(!Gd.GConn.isClosed())
                            Gd.GConn.close();
                      catch(SQLException se)
                        System.out.println(se.getMessage());
            }//EO While
      }//EO main
      public void getGameMsg()
          int total     =0;
          try
                String Qry="SELECT id,to_address,from_address,message FROM tbl_ws_messages WHERE status=0";
                GPS=GConn.prepareStatement(Qry);
                ResultSet rs=GPS.executeQuery();//Programe stuck here
                  while(rs.next())
                     if(rs.getString("message")!=null)
                        sendGameMessage(rs.getInt("id"),rs.getString("to_address"),rs.getString("from_address"),rs.getString("message"));
                      }else{
                        sendGameMessage(rs.getInt("id"),rs.getString("to_address"),rs.getString("from_address"),"");
                  rs.close();
                  GPS.close();
            catch(Exception e)
                System.out.println("getGamemsg "+e.getMessage());
                try
                    if(GConn.isClosed() || GConn==null)
                        gVasDBConnect();
                catch(SQLException se)
                  System.out.println(se.getMessage());
      }//EO get quiz method
       public void sendGameMessage(int uid,String mobile,String sCode,String msg)
            try
                  String postdata = "from="+sCode+"&to="+mobile+"&message="+msg;
                  System.out.println(postdata);
                    try
                      HttpURLConnection HttpURLConn =null;
                       URL url = new URL("http://XX.XX.XX/sms/sendwebmsg.jsp");
                         HttpURLConn = (HttpURLConnection)url.openConnection();
                         HttpURLConn.setDoOutput(true);
                         HttpURLConn.setRequestMethod("POST");
                         OutputStreamWriter wr = new OutputStreamWriter(HttpURLConn.getOutputStream());
                         wr.write(postdata);
                         wr.flush();
                         BufferedReader rd = new BufferedReader(new InputStreamReader(HttpURLConn.getInputStream()));
                         rd.close();
                         wr.close();
                   catch (Exception e)
                      //System.out.println("Error=====from="+from+"&to="+cell+"&message="+msg);
                      System.out.println("in snd message "+e.getMessage());
              String uQry="UPDATE tbl_ws_messages SET status=1,updated=SysDate WHERE id="+uid;
              PreparedStatement up = GConn.prepareStatement(uQry);
              up.executeUpdate();
              up.close();
            catch(SQLException se)
              System.out.println("in sendGMessage"+ se.getMessage() );
        }//EO sendMessage
        public void gVasDBConnect()
                try
                      String jdbc="jdbc:oracle:thin:@XX.XX.XX.XX:1521:orcl";
                      String user="my";
                      String pass="my";
                      java.sql.DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
                      GConn = java.sql.DriverManager.getConnection (jdbc, user, pass);
                      GConn.setAutoCommit (true);
                      System.out.println(new java.util.Date() + " : Connected!!!!!!");
                catch(Exception e)
                  System.out.println("Error in db connect : " + e.toString());
        }//EO
}//EO class

Similar Messages

  • Programme hault and lock

    i am facing problem in my programme which was stuck randomly, sometime after 12 hours or sometime after 25 hours.
    when my programme was stuck send SIGQUIT it returns me following log, can anyone suggest me what could be the reason.
    Full thread dump Java HotSpot(TM) Client VM (1.4.2_08-b03 mixed mode):
    "Signal Dispatcher" daemon prio=10 tid=0x000cdab0 nid=0x6 waiting on condition [0..0]
    "Finalizer" daemon prio=8 tid=0x000c8980 nid=0x4 in Object.wait() [fc77f000..fc77fc30]
    at java.lang.Object.wait(Native Method)
    - waiting on <0xf1f1efe0> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
    - locked <0xf1f1efe0> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
    at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
    "Reference Handler" daemon prio=10 tid=0x000c7020 nid=0x3 in Object.wait() [fe27f000..fe27fc30]
    at java.lang.Object.wait(Native Method)
    - waiting on <0xf1f1f048> (a java.lang.ref.Reference$Lock)
    at java.lang.Object.wait(Object.java:429)
    at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:115)
    - locked <0xf1f1f048> (a java.lang.ref.Reference$Lock)
    "main" prio=5 tid=0x00035a98 nid=0x1 runnable [ffbfe000..ffbff1e4]
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:129)
    at oracle.net.ns.Packet.receive(Unknown Source)
    at oracle.net.ns.DataPacket.receive(Unknown Source)
    at oracle.net.ns.NetInputStream.getNextPacket(Unknown Source)
    at oracle.net.ns.NetInputStream.read(Unknown Source)
    at oracle.net.ns.NetInputStream.read(Unknown Source)
    at oracle.net.ns.NetInputStream.read(Unknown Source)
    at oracle.jdbc.driver.T4CMAREngine.unmarshalUB1(T4CMAREngine.java:978)
    at oracle.jdbc.driver.T4CMAREngine.unmarshalSB1(T4CMAREngine.java:950)
    at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:434)
    at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:181)
    at oracle.jdbc.driver.T4CPreparedStatement.execute_for_rows(T4CPreparedStatement.java:791)
    at oracle.jdbc.driver.OracleStatement.execute_maybe_describe(OracleStatement.java:912)
    at oracle.jdbc.driver.T4CPreparedStatement.execute_maybe_describe(T4CPreparedStatement.java:693)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:988)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:2884)
    at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:2925)
    - locked <0xf191fe80> (a oracle.jdbc.driver.T4CPreparedStatement)
    - locked <0xf1f1f178> (a oracle.jdbc.driver.T4CConnection)
    at com.warid.web2sms.Web2SMS.getGameMsg(Web2SMS.java:90)
    at com.warid.web2sms.Web2SMS.main(Web2SMS.java:53)
    "VM Thread" prio=5 tid=0x000c61d8 nid=0x2 runnable
    "VM Periodic Task Thread" prio=10 tid=0x000d0910 nid=0x8 waiting on condition
    "Suspend Checker Thread" prio=10 tid=0x000cd1b0 nid=0x5 runnable

    I think it is obvious, if I were you, i would write it that way;
    import java.io.IOException;
    import java.io.OutputStreamWriter;
    import java.io.UnsupportedEncodingException;
    import java.net.MalformedURLException;
    import java.net.URL;
    import java.net.URLConnection;
    import java.net.URLEncoder;
    import java.sql.Connection;
    import java.sql.Driver;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    public class VS
    public VS() { (new PoolThread()).start(); }
    public static void main(String[] args) { new VS(); }
    class PoolThread extends Thread
    private static final String connectionURL = "jdbc:oracle:thin:@XX.XX.XX.XX:1521:orcl";
    private static final String userID = "my";
    private static final String userPassword = "my";
    Connection connection = null;
    MessagesDAO messagesDAO = new MessagesDAO();
    public void run()
    while (true)
    if (connection != null)
    try
    if (connection.isClosed()) connection = null;
    catch (SQLException e)
    connection = null;
    e.printStackTrace();
    else
    while (connection == null)
    connection = connectDB();
    if (connection != null)
    try
    if (connection.isClosed()) connection = null;
    catch (SQLException e)
    connection = null;
    e.printStackTrace();
    else
    System.out.println("Unable to connect DB; Retry in 10 seconds...");
    sleeping(10000);
    try
    List records = messagesDAO.loadAll(connection);
    Iterator iterator = records.iterator();
    while (iterator.hasNext())
    MessagesVO valueObject = (MessagesVO) iterator.next();
    sendGameMessage(valueObject);
    messagesDAO.update(connection, valueObject);
    valueObject = null;
    iterator = null;
    records.clear();
    records = null;
    catch (Exception e)
    e.printStackTrace();
    sleeping(1000);
    private Connection connectDB()
    try
    DriverManager.registerDriver((Driver) Class.forName("oracle.jdbc.driver.OracleDriver").newInstance());
    return (DriverManager.getConnection(connectionURL, userID, userPassword));
    catch (Exception e)
    return (null);
    private void disconnectDB(Connection dbConnection)
    try
    dbConnection.close();
    catch (SQLException sqlException)
    // do nothing!
    private void sendGameMessage(MessagesVO valueObject) throws IOException
    try
    String data = URLEncoder.encode("from", "UTF-8") + "=" + URLEncoder.encode(valueObject.getStrFromAddress(), "UTF-8");
    data += ("&" + URLEncoder.encode("to", "UTF-8") + "=" + URLEncoder.encode(valueObject.getStrToAddress(), "UTF-8"));
    data += ("&" + URLEncoder.encode("message", "UTF-8") + "=" + URLEncoder.encode(valueObject.getStrMessage(), "UTF-8"));
    URL url = new URL("http://XX.XX.XX/sms/sendwebmsg.jsp");
    URLConnection conn = url.openConnection();
    conn.setDoOutput(true);
    OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
    wr.write(data);
    wr.flush();
    wr.close();
    catch (UnsupportedEncodingException e)
    catch (MalformedURLException e)
    private void sleeping(long millis)
    try
    this.sleep(millis);
    catch (InterruptedException e)
    class MessagesDAO
    public MessagesVO createValueObject()
    return new MessagesVO();
    public List loadAll(Connection conn) throws SQLException
    String sql = "SELECT * FROM TBL_WS_MESSAGES WHERE STATUS = 0";
    List searchResults = listQuery(conn, conn.prepareStatement(sql));
    return searchResults;
    public void update(Connection conn, MessagesVO valueObject) throws SQLException
    String sql = "UPDATE TBL_WS_MESSAGES SET STATUS = 1, UPDATED = SYSDATE WHERE ID = ?";
    PreparedStatement stmt = null;
    try
    stmt = conn.prepareStatement(sql);
    stmt.setInt(1, valueObject.getIntID());
    int rowcount = databaseUpdate(conn, stmt);
    if (rowcount > 1)
    throw new SQLException("Error when updating the table; Many records are exists with same ID!)");
    finally
    if (stmt != null) stmt.close();
    protected int databaseUpdate(Connection conn, PreparedStatement stmt) throws SQLException
    return (stmt.executeUpdate());
    protected List listQuery(Connection conn, PreparedStatement stmt) throws SQLException
    ArrayList searchResults = new ArrayList();
    ResultSet result = null;
    try
    result = stmt.executeQuery();
    while (result.next())
    MessagesVO temp = createValueObject();
    temp.setIntID(result.getInt("ID"));
    temp.setStrToAddress(result.getString("TO_ADDRESS"));
    temp.setStrFromAddress(result.getString("FROM_ADDRESS"));
    temp.setStrMessage(result.getString("MESSAGE"));
    searchResults.add(temp);
    finally
    if (result != null) result.close();
    if (stmt != null) stmt.close();
    return (List) searchResults;
    class MessagesVO
    private String strFromAddress;
    private String strMessage;
    private String strToAddress;
    private int intID;
    public void setIntID(int intID) { this.intID = intID; }
    public int getIntID() { return this.intID; }
    public void setStrFromAddress(String strFromAddress) { this.strFromAddress = strFromAddress; }
    public String getStrFromAddress() { return this.strFromAddress; }
    public void setStrMessage(String strMessage) { this.strMessage = strMessage; }
    public String getStrMessage() { return this.strMessage; }
    public void setStrToAddress(String strToAddress) { this.strToAddress = strToAddress; }
    public String getStrToAddress() { return this.strToAddress; }
    }

  • Film download got stuck and showing error

    Film got stuck while downloading from itune store.
    Reset done, but still no success

    @ToAruShiroiNeko
    It sounds as if you may have to reset your N9 and possibly re-install exisiting software using standalone Nokia Software Updater here:http://nds1.nokia.com/files/support/...erSetup_EN.exe
    As map data is stored in E:\cities you could try deleting this directory (perhaps copy to your desktop) although I am not certain whether folder is re-created when you next open Nokia Maps application upon the N9 as with devices using Symbian version.
    Incidentally when I needed to copy World mapping to N9 I installed from direct download links for compressed .zip files to save aggrevation and time.
    Happy to have helped forum with a Support Ratio = 42.5

  • ASR Hyper-v (VMM) to Azure and we are stuck with this error while preparing the VMM Server

    We are stuck with this error while installing ASR provider and registering with Azure Vault, can i get some help on this
    Error:
    NO Vaults could be retried for the registration key. Please ensure that
    1, your registration key has not expired.You can re-downloading registration key from Azure site Recovery portal
    2, Your system clock is not out of sync with the selected system time zone
    System Clock is set to IST and Azure to southeastasia

    Hi,
    Could you please ensure that you have downloaded the latest registration key from the portal?
    Also ensure that the machine from where you are accessing the portal and the VMM server has the right time according to your time zone.
    Thank you,
    Ruturaj

  • HT3743 How do i restore my iphone from "no Service". I tried to update my iphone 3G TO iOS 6.0. But it got stuck and now my itunes is displaying Error message: "there is no sim card installed in the iphone you are attempting to activate" Kindly suggest

    How do i restore my iphone from "no Service". I tried to update my iphone 3G TO iOS 6.0. But it got stuck and now my itunes is displaying Error message: "there is no sim card installed in the iphone you are attempting to activate" and my iphone is without service. While i am trying to activate my ihone on wifi also it doesnt saying servers are temporary unavailable try after sometime. Kindly suggest

    It sounds a lot like your phone was hacked or jailbroken to unlock it prior to your trying to update it.
    If that is the case, it is nowpermanently bricked.

  • TS3694 How do i restore my iphone from "no Service". I tried to update my iphone 3G TO iOS 6.0. But it got stuck and now my itunes is displaying Error message: "there is no sim card installed in the iphone you are attempting to activate" Kindly suggest

    How do i restore my iphone from "no Service". I tried to update my iphone 3G TO iOS 6.0. But it got stuck and now my itunes is displaying Error message: "there is no sim card installed in the iphone you are attempting to activate" and my iphone is without service. While i am trying to activate my ihone on wifi also it doesnt saying servers are temporary unavailable try after sometime. Kindly suggest

    tariqrehmani wrote:
    How do i restore my iphone from "no Service". I tried to update my iphone 3G TO iOS 6.0. ...
    The iPhone 3G is Not Compatible with iOS 6...
    It also appears that your phone may have been Hacked and / or Jailbroken...
    If this is the case... you are out of luck... Because...
    The discussion of Jailbroken Devices is against the Terms of Use of this Forum.
    Why Jailbreak is Not Supported  >  http://support.apple.com/kb/HT3743

  • Iphone was in the middle of an update, and an error occurred. I think it is stuck in "restore" mode, but my computer won't recognize the device. How do I get it to work?

    My iPhone 4S was in the middle of the latest software update while connected to iTunes on my PC. After it took 45 minutes to download, a pop-up came up and said that an error had occured and it couldn't be updated. I made a mistake and clicked "Okay" instead of "More Information", and now my PC won't recognize the device and connect it back to iTunes. This happened to me last time I updated it, but I've tried everything I did last time and it won't work. I have a feeling I didn't have enough storage on my phone to update it, but now I am stuck and don't know what to do. My phone is frozen with the iTunes logo and the USB drive and says to connect to iTunes. What can I do to fix it?

    If this has happened more than once the problem is likely on your PC.
    See here: http://www.apple.com/support/iphone/assistant/itunes/

  • I tried restoring my iPod, but it told me it was unsuccessful. Now it's stuck at the connect to iTunes screen. I've tried holding the home and lock buttons, just until the unit turns off, and until the unit restarts. What do i do?

    I tried restoring my iPod, but it told me it was unsuccessful. Now it's stuck at the connect to iTunes screen. I've tried holding the home and lock buttons, just until the unit turns off, and until the unit restarts. What do i do? iTunes wont even recognize that an iPod is connected.

    Try to connect in reocvery mose, explained in this article:
    iOS: Unable to update or restore

  • My iPhone 4 lock button is stuck and Ive had my phone for over a year. What do I do.

    My iPhone 4 lock/home button is stuck and I'm out of warranty. How much will it cost to fix the button cause I have no other problems. Or will they cover it because people were saying it's a defect?

    I was able to pay someone to replace the button completely for much less than what Apple wanted.
    Here's a link to the place I had it done:
          http://www.yelp.com/biz/fix-my-phone-sf-san-francisco
    I can understand why Apple has a 1 year warranty, but I believe a busted power button constitutes a design flaw and thus is defective (much like the iBook logic board from 2003 we had to sue them over).
    ( http://www.apple.com/au/support/ibook/faq/ )
    If Apple wasnt the biggest and most profitable company in the world, and instead the nice little apple I used to know, I'd have more sympathy.
    -Matt Bouchard
    San francisco

  • When i restored my iphone 5 it shows 4013 and 4005 error and my phone was stuck with apple logo and above some letters where also there in black and white colour .

    when i restored my iphone 5 it shows 4013 and 4005 error and my phone was stuck with apple logo and above some letters where also there in black and white colour . pls say me how to fix this plssss . my email = **********
    <E-mail Edited by Host>

    Wrong Forum

  • HT1338 Macbook pro two days old...bought logic from app store...logic has installed partly each time i open it up it wants to download rest of programme then stops half way thru and gets error message 'logic is unable to continue with download' help neede

    Macbook pro two days old...bought logic from app store...logic has installed partly each time i open it up it wants to download rest of programme then stops half way thru and gets error message 'logic is unable to continue with download' help needed !

    Hello:
    I would trot back into the Apple store and have them fix the problem (or call Applecare with a warranty issue).  There is no sense in you wasting your time trying to troubleshoot things on a new computer.
    Barry

  • TS3694 pls help my iphone 4 was on activation "required". i jailbroke it then it worked but some of the applications were crashing down,won't open. i tried a lot of tutorials and then error message 3194 came out. stucked in recovery mode,itunes logo. pls

    pls help my iphone 4 was on activation "required". i jailbroke it then it worked but some of the applications were crashing down,won't open. i tried a lot of tutorials and then error message 3194 came out. stucked in recovery mode,and then i use snowbreeze and then it worked!!!! but another problem came, i turned off my iphone then i switched it on again then it stucked in apple logo,.after doing some thing again 1604, 1600 bla bla bla came out..pls help me fix my iphone.

    no help for jailbroken phones here-it's not allowed. good luck.

  • HT4623 I put my IPhone 4 to update but now is lock and showing error 3194, what my be the  problem?

    I put my IPhone 4 to update but now is lock and showing error 3194, anyone now what to do? please.

    Same issue, I hope someone on here can figure this out and share the information. I was on the phone with apple for over 2 hours trying to fix. I guess I have to make another call on Monday!

  • After trying to upgrade from 4.3.4 to 5.0 stuck on recovry and giving error every time im trying to restore

    after trying to upgrade from 4.3.4 to 5.0 stuck on recovry and giving error every time im trying to restore
    what to do ?
    tried tiny umberlla dost do anything

    What OS is on the Install/Restore DVD that came wit your G5? If Tiger 10.4.x, you will need a black, retail Leopard install DVD. There is no free download of Leopard, only free updates once you have installed the base OS.
    First use your Mac's Install/Restore DVD to install an OS & apps. Then upgrade the OS.
    Leopard is no longer available at the Apple Store *but may be available by calling Apple Phone Sales @ 1-800-MY-APPLE (1-800-692-7753)*.
    Installing Mac OS X 10.5 Leopard
    http://support.apple.com/kb/HT1544
    Mac OS X 10.5 Leopard Installation and Setup Guide
    http://manuals.info.apple.com/en/leopard_install-setup.pdf
    After you install the base 10.5, download & install the 10.5.8 combo update at http://support.apple.com/downloads/Mac_OS_X_10_5_8_Combo_Update
     Cheers, Tom

  • Tried synching iphone for the first time on new PC and got error followed by itunes logo and USB cable picture. No idea what went wrong and now phone is in this screen locked. please help!

    tried synching iphone for the first time on new PC and got error followed by itunes logo and USB cable picture. No idea what went wrong and now phone is in this screen locked. please help!

    I tried connecting to iTunes and neither the PC nor iTunes recognizes the device. I went through all the troubleshooting on the Apple website for this issue and nothing worked. I've reinstalled iTunes, the driver, everything and still can't get either the PC or iTunes to recognize the phone.  I don't know what else to do :-( any help or suggestions are highly appreciated!
    I would hate to have lost all my info, especially contacts and calendar items since I have no idea what was backed up prior to the phone getting locked on this screen. I've been told that my only option is to go to the phone carrier and they will reset it for me, but that means it will wipe out all the info.
    I hope someone has a fix other than that one.

Maybe you are looking for

  • Query execution error

    Hi all, I get the below error while executing a query. Row: 82 Inc: LRRMSU13 Prog: SAPLRRMS ASystem error in program CL_RSR_RRK0_CURR and form GET_SX_CURR-01- (see lo ASystem error in program SAPLRRK0 and form INITIALIZE_DATA_ACCESS-01- (see Has anyo

  • Sending clip from Premiere to Photoshop

    I am looking for a way to send edited clips from a Premiere timeline directly into Photoshop to grade with Adobe Camera Raw (please don't tell me to use Speedgrade or Resolve, I like ACR and its what I'm used to). The problem is that I need to import

  • Running jar files

    Hi, I hv a jar file created by compiling the program in an IDE.Now I want to run the jar file directly from command prompt.i.e I want to run it something like java -jar myjar.jar <arguments> Also the program imports another package which is included

  • [solved] What happens if you quit a busy pacman

    This might be a silly question but I cannot find an answer anywhere, What happens if I ctl-c while pacman is removing or installing packages? Will I be left with a half installed package? for example, I was removing the 'gnome' group the other day an

  • GL Accounts for MM Integration

    Hi friends I am in the midst of providing GL accounts for MM Integration.  I am slightly confused about what type of GL I should create for the transaction keys.  For example, for GBB (Offsetting posting for inventory), I am not sure what type of GL