Hey have a problem my iphone 4 die on me when i put it to charge it wold show a dead battery and gets really hot please help me

hey my iphone 4 need help please help me

my phone die and when i put it to charge it only show a dead battery and the phone gets really hot

Similar Messages

  • Hello, i have a problem with my macbook air. When i try to open my iPhoto i should wait about 3mins to get opened it and also in it just appeared around 57000 photos! in which i have 2000. they are not mine, the photos are pics of other people or things

    hello, i have a problem with my macbook air. When i try to open my iPhoto i should wait about 3mins to get opened it and also in it just appeared around 57000 photos! in which i have 2000. they are not mine, the photos are pics of other people or things

    If you want help you’ll need to give us more information. There are 9 different versions of iPhoto and they run on 8 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS. So to get help you need to give as much information as you can. Include things like:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For example, if you have a problem with exporting, then explain by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted? - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • HT201210 Hi, cant update IO6. After downloading the update and processing it through Itunes on my mac.... and I have a factory unlocked Iphone 4S. Cant update the software. Waring message is say this devise is not eligible for build. Please help.

    Hi, cant update IO6. After downloading the update and processing it through Itunes on my mac.... and I have a factory unlocked Iphone 4S. Cant update the software. Waring message is say this devise is not eligible for build. Please help.

    Download iTunes using the tab at the top of this page. Then run the update with iTunes closed.

  • Problems with Runtime.getRuntime().exe and getting output. Please Help me!!

    I'm creating a program that runs the followings programs written in C and compiled with gcc:
    ==========================The first C program====================================
    #include<stdio.h>
    void leia();
    main()
    int x = 20;
    int y = 2;
    printf( "Marcinho e Danny\n" );
    printf( "Te\n" );
    printf( "Vida\n" );
    printf( "Marciorja: %d.\n", x * y );
    ===============================================================================
    ==========================The second C program====================================
    #include<stdio.h>
    void leia();
    main()
    int x = 20;
    int y = 2;
    printf( "Marcinho e Danny\n" );
    printf( "Te\n" );
    printf( "Vida\n" );
    printf( "Marciorja: %d.\n", x * y );
    scanf( "%d", &x ); //This is the statement added to the latter C program.
    ===============================================================================
    I compiled this C program and generates the a.exe program. I have the following Java program:
    ==================================================================================
    import java.awt.Color;
    import java.awt.event.KeyAdapter;
    import java.awt.event.KeyEvent;
    import java.awt.event.KeyListener;
    import java.io.BufferedReader;
    import java.io.BufferedWriter;
    import java.io.DataOutputStream;
    import java.io.File;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.io.OutputStream;
    import java.io.OutputStreamWriter;
    import java.io.PrintWriter;
    import java.util.StringTokenizer;
    import javax.swing.JFrame;
    import javax.swing.text.BadLocationException;
    import javax.swing.text.EditorKit;
    import javax.swing.text.MutableAttributeSet;
    import javax.swing.text.Style;
    import javax.swing.text.StyledDocument;
    import javax.swing.text.StyledEditorKit;
    public class Teste
    private BufferedWriter out;
    private BufferedReader in;
    private Style stylePrompt;
    private LeitorDeEntrada le;
    private String entrada = "";
    private AreaDeEdicao areaDeTexto;
    Process p = null;
    public Teste( AreaDeEdicao areaDeTexto )
    this.areaDeTexto = areaDeTexto;
    public void runCommand( String command ) throws IOException
    StringTokenizer strTokenizer = new StringTokenizer( command );
    String mainCommand = null;
    String argument = null;
    StyledDocument doc = areaDeTexto.getStyledDocument( );
    String[] prefix = new String[] { "cmd.exe", "/c", command };
    p = Runtime.getRuntime().exec( prefix, null, new File( System.getProperty( "user.dir" ) ) );
    in = new BufferedReader( new InputStreamReader( p.getInputStream( ) ) );
    out = new BufferedWriter( new OutputStreamWriter( p.getOutputStream( ) ) );
    out.flush();
    Thread t = new Thread( )
    public void run( )
    super.setName( "Marcio" );
    execute( );
    public void execute( )
    String c = null;
    try
    if( !in.ready( ) )
    try
    this.sleep( 1000 );
    catch( InterruptedException e2 )
    e2.printStackTrace( );
    System.out.println( "in.rea: " + in.ready( ) );
    c = in.readLine( );
    catch( IOException e )
    e.printStackTrace( );
    String str = "";
    while( c != null )
    str = c + "\n";
    try
    areaDeTexto.getDocument( ).insertString( areaDeTexto.getDocument( )
    .getLength( ),
    str, null );
    catch( BadLocationException e3 )
    e3.printStackTrace( );
    try
    c = in.readLine( );
    catch( IOException e2 )
    e2.printStackTrace( );
    areaDeTexto.setCaretPosition( areaDeTexto.getDocument( )
    .getLength( ) );
    try
    in.close( );
    catch( IOException e1 )
    e1.printStackTrace( );
    t.setDaemon( true );
    t.start( );
    le = new LeitorDeEntrada( );
    areaDeTexto.addKeyListener( le );
    public static void main( String[] args )
    JFrame janela = new JFrame( );
    AreaDeEdicao areaDeTexto = new AreaDeEdicao( new MyDocument( ) );
    areaDeTexto.setBackground( Color.black );
    areaDeTexto.setForeground( Color.GREEN );
    janela.getContentPane( ).add( areaDeTexto );
    Teste teste = new Teste( areaDeTexto );
    try
    teste.runCommand( "a.exe" );
    catch( IOException e )
    e.printStackTrace( );
    janela.setSize( 500, 300 );
    janela.setVisible( true );
    class LeitorDeEntrada extends KeyAdapter
    public void keyPressed( KeyEvent e )
    char c = e.getKeyChar( );
    System.out.println( "keyPressed" );
    try
    if( c == '\n' )
    areaDeTexto.getDocument().insertString( areaDeTexto.getDocument( )
    .getLength( ),
    c + "", null );
    out.write( c + "" );
    out.flush();
    catch( BadLocationException e2 )
    e2.printStackTrace( );
    } catch (IOException e2) {
    e2.printStackTrace();
    ==================================================================================
    This Java program is very simple. It runs the a.exe using the method Runtime.getRuntime().exec and gets input for a.exe from a JTextPane and shows the output in the same JTextPane.
    If my a.exe represents the binary code of the first C program the text in the JTextPane is the correct output of the a.exe. But, if my a.exe represents the binary code of the second C program, the JTextPane shows the messages ( "Marcinho e Danny\n", "Te\n", "Vida\n", "Marciorja: %d.\n") after I enter the value claimed by the scanf.
    I tested my Java program running programs that require input and all have the same behavior:.
    What can I need to do to solve this bug?
    I read other posts with the same problem and nobody answers what is the problem.
    I'LL pay 10 Duke dollars to the first that answers me.

    The second C program with the statement fflush( stdout ) produces the right output.
    #include<stdio.h>
    void leia();
    main()
    int x = 20;
    int y = 2;
    printf( "Marcinho e Danny\n" );
    printf( "Te\n" );
    printf( "Vida\n" );
    fflush( stdout ); //added statement.
    printf( "Marciorja: %d.\n", x * y );
    scanf( "%d", &x ); //This is the statement added to the latter C program.
    but what can I do to run C programs that doesn't flush the stdout?

  • Im trying to do itunes match i get to the third part which it says gathering artwork and songs and about half way through it stops and says ther is a problem sign out and sign in again which i do and still it happens getting really frustrated please help

    Hi im having problems loading itunes match everytime it gets to the third installment it stops and tells me there is a problem sign out and sign in again which i do and still the same problem. I did get an email saying notice about your apple id and to verify now but when i go to page its saying 404 not found im now ready to ditch apple products and go else where every where i turn theres a problem this is my final calling please help.

    Hi im having problems loading itunes match everytime it gets to the third installment it stops and tells me there is a problem sign out and sign in again which i do and still the same problem. I did get an email saying notice about your apple id and to verify now but when i go to page its saying 404 not found im now ready to ditch apple products and go else where every where i turn theres a problem this is my final calling please help.

  • I have a problem with bookmarks, all the time when I start Firefox the bookmarks is deleted, or not there. And I need to import them again and again, also the cookies, cash are deleted.

    The bookmarks, cookies, history all the time are deleted when I start Firefox and I need to import them all the time.
    I have version 3.6.12

    This can be a problem with the file places.sqlite that stores the bookmarks and the history.
    See:
    * http://kb.mozillazine.org/Bookmarks_not_saved
    * http://kb.mozillazine.org/Locked_or_damaged_places.sqlite

  • Hello, I have a problem, my macbook pro runs slowly when unplugged but if I plugged it, it runs perfectly.

    Hello, I have a problem, my macbook pro runs slowly when unplugged but if I plugged it, it runs perfectly.

    The battery needs to be replaced, or there is some other hardware problem.

  • IPhone 4 battery drains really fast and phone gets really hot

    I have an iPhone 4 and since November 15 my battery has been draining really fast and gets really hot when I use the phone. When I try to charge the phone with my computer it doesn't charge, but only charges with the wall hub. I have tried deleting the email accounts, deleting all apps, restoring with the backup, restoring without the backup, and still no luck. I went to the Apple store and they briefly looked at it and said it had water damage by looking at the water damage indicator in the charging port. They told me I needed to pay $150 for a new phone. I don't recall getting my phone getting wet and it seems to work fine except for the battery drain and the computer charging problem. iTunes still recognizes the phone. I thought it was a battery problem so I ordered a new battery and replaced it myself and the battery was still draining fast. When I had the phone open the other water damage indicators were still white (no water damage), it was just the charging port indicator that was red (water damaged). Also, when I charge my phone with the wall hub it charges very slowly. I have ran out of ideas and I could really use some suggestions. Thank you.

    i looked on the right there is no solution to my problem.i charge my phone to 100% after 2 hours with no usage at all of the phone with 3G off with wifi off with all applications shut down all notifications and locations off battery goes down to 50% when it was running on the older ios never had this problem in my iphone.when will this problem solved

  • I have a problem with iphone 4s...is ringing but another sounds not working....please help me!!!

    i have a problem with iphone 4s...is ringing but another sounds not working....please help me!!!

    Hi pystyke,
    Welcome to Apple Support Communities.
    You may find these links helpful with troubleshooting the audio issue you're experiencing:
    iPhone Assistant
    http://www.apple.com/support/iphone/troubleshooting/
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Best,
    Jeremy

  • I have a problem in iphone 3g which is not starting and showing usb picture and iTunes logo

    i have a problem in iphone which shows a display in which usb and iTunes logo is shown

    Do what the display is telling you to do: connect the iPhone to your syncing computer running iTunes to restore it.

  • I have a problem with Iphone 5 pocketdialing constantly

    I have a problem with iphone 5 pocketdialing constantly

    Tap the Sleep/Wake button BEFORE you put your phone in your pocket.

  • Hello, I have a problem with iPhone 5c softhware update ( The iPhone "iPhone" could not be restored. An unknown error occurred (27))

    Hello, I have a problem with iPhone 5c softhware update ( The iPhone "iPhone" could not be restored. An unknown error occurred (27))

    Error 1 or -1
    This may indicate a hardware issue with your device. Follow Troubleshooting security software issues, and restore your device on a different known-good computer. If the errors persist on another computer, the device may need service.
    The" may need service' meand there is a hardware problem. In that case make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar

  • Sir i have a problem with iphone its factory locked how to unlock

    sir i have a problem with iphone its factory locked how to unlock

    You have asked this question 3 times. Each time the answer being the same. ONLY, the original cellular provider can unlock the phone. However, if the phone has been previously hacked to provide unlocking, the fact that you have updated it has now re locked it. It is possible that it might never be ale to be properly unlocked.
    https://discussions.apple.com/message/22282979#22282979

  • I have a problem with iPhone is that I can replace it at points of sale in the U.S. because I bought from Saudi Arabia because the problem I think in the hard ware software worked more than 3 times did not fix

    dears,
    I have a problem with iPhone is that I can replace it at points of sale in the U.S. because I bought from Saudi Arabia because the problem I think in the hard ware I do resoftware more than 3 times did not fix.
    Network also always missing.
    I am living in KS Wichita. I hope you help me pleas.
    Regards.

    iPhone warranty is not international. You will have to return your
    iPhone to Saudi Arabia for repair/replacement. Either take it back
    yourself or send to friend/relative for them to take to Apple. Apple
    will not accept international shipments for repair nor will Apple
    ship repaired/replaced iPhones out of the country where the repair
    was done.

  • I have a problem in iPhone . When you receive a contact and press the key at the top to cancel the contact screen stopped working .ataml times after the last restart device

    I have a problem in iPhone . When you receive a contact and press the key at the top to cancel the contact screen stopped working .ataml times after the last restart device

    Since restarting did not help, reset your iPhone, see: Turn your iOS device off and on (restart) and reset  http://support.apple.com/kb/ht1430
    If that still does not solve it, check, if the contact you are trying to add is problematic. Try to save a different contact. Does that work?
    If not, reinstall the Contacts app. This is only possible by restoring your iPhone, unfortunately.
    See: Use iTunes to restore your iOS device to factory settings  http://support.apple.com/kb/HT1414

Maybe you are looking for