Any help with this problem please, phone switching off ??

My Phone will just turn off as if the battery has died but phone is fully charged, when I turn the phone back on which has to be with a cable to comp or mains the date and time resets to default 00.00am and 1st of the month every time, I have tried hard resets and everything going but still doing it, could it be a battery fault ??.

DFU mode restore, that's the most powerful restore option. Either you have something installed wrong on your iPhone or your PC won't sync completely with it. I don't know how you guys did those things, i've did a lot with my iPhone but it never gone wrong.
Didn't you like drop it on the ground or something? That maybe explains a lot.

Similar Messages

  • TS2556 when importing photos from iphoto , I am not getting thumbnail images in the browser, any help with this problem

    Looking for advice to get around this problem .. just purchased Aperture 2.1. for my MacBook Pro using snow leopard .

    ok, next idea:
    you're using an iBook => harddrive space is limited...
    tell us, how much free space is on your hd...
    you shouldn't "overcrowd" your drive, 80% filled should be max,
    because all apps use widely socalled "temp-files" - never seen in Finder, but neccessary (you probably have heard of that rule: iDVD needs 10 - 15GB to work smoothly...)

  • Help with this problem please GasPump.java

    I've been working on this program for a week now and i have not gotten it to complie yet. Could anybody help me out? Your help would be greatly appreciated. Thanks.
    public class GasPump {
          double pricePerGallon;
          double gallons;
          int fuelType;
          int paymentType;
          float washPrice;
          String fuelName;
           public GasPump ( )  
             { pricePerGallon = 2.699; }
           public GasPump ( double price)  
             { pricePerGallon = price; }        
           public void setCost(double cost)   
             { double pricePerGallon  = cost; }
           double  getCost( )
             { return pricePerGallon; }
           public setGrade(int fuelType)
             { String fuelName;
            switch (fuelType)
                   case 1:    fuelName = ?Regular Unleaded?
                                  break;
                   case 2:    fuelName = ?Mid grade Unleaded?
                                  break;
                   case 3:    fuelName = ?Super Unleaded?
                                  break;
                   case 4:    fuelName = ?Diesel?
                                  break;
                   case 5:    fuelName = ?Natural Gas?
                                  break;
                   default:   System.out.println(?Unknown fuel type? + fuelType);
                               fuelName = ?Unknown?;
                   public String getGrade ( )
                   { return fuelName; }
                   double calcBill (double gallons)
                   { return(pricePerGallon * gallons); }
                   void paymentMethod(int  paymentType)    
                    if (paymentType  == 1)
                   payInsideMethod();
                    else
                          if (paymentType == 2)
                    payOutsideMethod();
                          else
                        if (paymentType == 3)
                       payInsideMethod ( );   
                          else
                     System.out.println(?Unknown payment type?);
                void payInsideMethod( )
                     System.out.println(?Pay cashier inside the gas station?);
                void payOutsideMethod( )
                System.out.println(?Please pay with your credit card ?);
               float   carWash (int washType)
                 washPrice = 0.00f;       
                  if (washType == 1)
                    washPrice = 7.00f;   
                      else
                  if (washType == 2)
                             washPrice = 8.00f; 
                  else
                            System.out.println(?Unknown wash type?);
                      return  (float)washPrice;   
                       void printReceipt ( )  
                        /*     System.out.println(fuelName + ? ? +gallons + ? Gallons purchased at $ ? + 
                               pricePerGallon + ? per gallon ? + ? Total cost is:  ? + 
                               pricePerGallon * gallons + ? Total bill is $ :" +
                               ((pricePerGallon * gallons) + washPrice)); */
                           System.out.printf("%s %.2f Gallons purchased at $%.2f per gallon.\nTotal
                  cost is: %.2f",
                                               fuelName, gallons, pricePerGallon, pricePerGallon *
                  gallons);
                       System.out.printf(" Total bill is $: %.2f", ((pricePerGallon * gallon) +
               washPrice));
               }

    sorry my compile errors read
    GasPump.java:31: illegal character: \8220
             case 3:    fuelName = ?Super Unleaded?;
                                   ^
    GasPump.java:31: illegal character: \8221
             case 3:    fuelName = ?Super Unleaded?;
                                                  ^
    GasPump.java:33: illegal character: \8220
             case 4:    fuelName = ?Diesel?;
                                   ^
    GasPump.java:33: illegal character: \8221
             case 4:    fuelName = ?Diesel?;
                                          ^
    GasPump.java:35: illegal character: \8220
             case 5:    fuelName = ?Natural Gas?;
                                   ^
    GasPump.java:35: illegal character: \8221
             case 5:    fuelName = ?Natural Gas?;
                                               ^
    GasPump.java:37: illegal character: \8220
            default:   System.out.println(?Unknown fuel type? + fuelType);
                                          ^
    GasPump.java:37: illegal character: \8221
            default:   System.out.println(?Unknown fuel type? + fuelType);
                                                            ^
    GasPump.java:37: ')' expected
            default:   System.out.println(?Unknown fuel type? + fuelType);
                                                                         ^
    GasPump.java:38: illegal character: \8220
                               fuelName = ?Unknown?;
                                          ^
    GasPump.java:38: illegal character: \8221
                               fuelName = ?Unknown?;
                                                  ^
    GasPump.java:59: illegal character: \8220
                              System.out.println(?Unknown payment type?);
                                                 ^
    GasPump.java:59: illegal character: \8221
                              System.out.println(?Unknown payment type?);
                                                                      ^
    GasPump.java:59: ')' expected
                              System.out.println(?Unknown payment type?);
                                                                        ^
    GasPump.java:64: illegal character: \8220
                      System.out.println(?Pay cashier inside the gas station?);
                                         ^
    GasPump.java:64: illegal character: \8221
                      System.out.println(?Pay cashier inside the gas station?);
                                                                            ^
    GasPump.java:64: ')' expected
                      System.out.println(?Pay cashier inside the gas station?);
                                                                              ^
    GasPump.java:69: illegal character: \8220
                      System.out.println(?Pay at the pump with credit card ?);
                                         ^
    GasPump.java:69: illegal character: \8221
                      System.out.println(?Pay at the pump with credit card ?);
                                                                           ^
    GasPump.java:69: ')' expected
                      System.out.println(?Pay at the pump with credit card ?);
                                                                             ^
    GasPump.java:82: illegal character: \8220
                             System.out.println(?Unknown wash type?);
                                                ^
    GasPump.java:82: illegal character: \8221
                             System.out.println(?Unknown wash type?);
                                                                  ^
    GasPump.java:82: ')' expected
                             System.out.println(?Unknown wash type?);
                                                                    ^
    GasPump.java:94: unclosed string literal
                           System.out.printf("%s %.2f Gallons purchased at $%.2f per
    gallon.\nTotal
                                             ^
    GasPump.java:95: unclosed string literal
                   cost is: %.2f",
                                ^
    GasPump.java:97: ')' expected
                     gallons);
                             ^
    26 errorsBasically wherever I have a quotation mark or a semi-colon there is a error there. I just started programming so im still trying to get the hang of it

  • How can i get my Certificate ??Help with this problem please.

    Hello.
    On 18 Oct 2009 I passed 1Z0-047-ENU but the certificate hasnt arrived yet.
    I checked personal info on pearsonvue.com, it's ok. On certview.oracle.com i have Oracle expert Status.
    on 18.12.2009 do two months since the pass but I hasnt got a proof in my hand that I did it.
    How can I find if the certificate has been sent at all or not?
    Who can I go to or talk to about the problem?
    Firstname: Elnara
    Last Name: Imanova
    Thanks.

    Elnara wrote:
    For "SQL Expert" Certificate i passed exam 1z0-147... Fot this certificate enought one this exam..
    I sent email to [email protected] one week ago, but they dont reply to my email..
    1) For many regions this is a holiday break period and there is a strong likelihood non-essential departments will be shut.
    2) The correct procedure when your success kit does not arrive is to goto [http://www.oracle.com/education/certification] Support - FAQ's
    (This leads to [http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=82#5Q1A])
    Under Receiving Certificate there is a question:
    I have not received my certification success kit. What do I do?
    If you expand this there is an explanation of precisely what to do. The relevant email address is ocp-fulfillment_ww....
    Be pleased courteously to explain in your email you have already sent one to ocpexam_ww.
    3) BUT BEFORE YOU DO THAT .... (I do this him the humour of Chris Talent on who wants 2b a millionaire) .... DO THIS INSTEAD ...
    .. on Certview (which I know you have access to) on the Certification Tab you should be able to check the 'Success Kit Status' subtab.
    This page is most interesting and contains a better procedure....
    You should (by now) have a line here for your certification .... if you don't there is a procedure on this page.
    The key item in the line is (created date).
    And the procedure here is to wait 45 days after the created date for your success kit before emailing ocp-fulfillment_ww
    Bonus: As you are able to see you success in Certview you can see you you can publish you success kit to 3rd parties.
    Click on the publish credentials to 3rd parties and then go through procedure to publish credentials to yourself (your own email address) to see how this works. You can then confidently publish to your employer / recruitment agent / husband / wife / boyfriend / girlfriend if they need proof of your study.
    Rgds - bigdelboy
    PS: I think success kits which contain more than just a certficate can take a little longer ...

  • Hi, sometimes big images could not open with photoshop.ı can open with windows but cant open photoshop.if ı try to open i am seeing a white image.is there any answer for this problem please.

    hi, sometimes big images could not open with photoshop.ı can open with windows but cant open photoshop.if ı try to open i am seeing a white image.is there any answer for this problem please.

    Just to assist those who might help you with this, please give the exact version of Photoshop CS6 you are running, for instance CS6 13.0.1.3.
    I had already asked for that in my previous post, but I guess you didn't quite know what I was referencing when I typed "exact version".
    Sorry, I cannot help you myself because I don't deal with that kind of 3D images, don't use Windows, and in all frankness I'm not quite following your last post.
    Also please give the exact model of your graphics card, so they can check whether it is on the list of cards tested by Adobe.
    Thank you.

  • I am having problems loading sampler patches into the exs24 sampler, when i got into edit menu and load multiple samples all the samples r greyed out and i cannot slect them, any help with this would be much appreciated

    I am having problems loading sampler patches into the exs24 sampler, when i got into edit menu and load multiple samples all the samples r greyed out and i cannot slect them, any help with this would be much appreciated

    It is very difficult to offer troubleshooting suggestions when the "os version" you are using is unknown as each os has their own troubleshooting solutions. 
    How large is your hard drive and how much hard drive space do you have left? 

  • HT4208 When I tap the Apple store, youtube and the itunes apps on my iPad they do not open. Any help with this please?

    When I tap the Apple store, YouTube and the iTunes apps, they don' launch. Any help with this?

    1. Double-click the Home button to close all Inactive Apps in Task Bar
    2. Hold the Apps in Task Bar down for a second or two until you see the minus sign
    3. Tap the minus sign to close App
    4. Tap center of screen to return to Home Screen
    5. Reset iPad. Hold the Sleep and Home button down for about 10 second until you see the Apple logo. Ignore the red slider

  • I need advise and help with this problem . First , I have been with Mac for many years ( 14 to be exact ) I do have some knowledge and understanding of Apple product . At the present time I'm having lots of problems with the router so I was looking in to

    I need advise and help with this problem .
    First , I have been with Mac for many years ( 14 to be exact ) I do have some knowledge and understanding of Apple product .
    At the present time I'm having lots of problems with the router so I was looking in to some info , and come across one web site regarding : port forwarding , IP addresses .
    In my frustration , amongst lots of open web pages tutorials and other useless information , I come across innocent looking link and software to installed called Genieo , which suppose to help with any router .
    Software ask for permission to install , and about 30 % in , my instinct was telling me , there is something not right . I stop installation . Delete everything , look for any
    trace in Spotlight , Library . Nothing could be find .
    Now , every time I open Safari , Firefox or Chrome , it will open in my home page , but when I start looking for something in steed of Google page , there is
    ''search.genieo.com'' page acting like a Google . I try again to get raid of this but I can not find solution .
    With more research , again using genieo.com search eng. there is lots of articles and warnings . From that I learn do not use uninstall software , because doing this will install more things where it come from.
    I do have AppleCare support but its to late to phone them , so maybe there some people with knowledge , how to get this of my computer
    Any help is welcome , English is my learned language , you may notice this , so I'm not that quick with the respond

    Genieo definitely doesn't help with your router. It's just adware, and has no benefit to you at all. They scammed you so that they could display their ads on your computer.
    To remove it, see:
    http://www.thesafemac.com/arg-genieo/
    Do not use the Genieo uninstaller!

  • When I attempt to send an email it goes to my trash folder. Any help with this?

    When I attempt to send an email it goes to my to my trash folder. Any help with this?

    you are a genius! i have been going mad with this, i have done everything o2, aol, and every 'expert' has suggested.
    the strange thing is that it was only one aol account that was affected, the other aol account on my phone was fine???
    any ideas on how to get rid of the primary smtp server that was causing the problem?
    thanks again!
    just ike to add if theres any relevance, my phone is a standard iphone4. BUT..... i think it was fine until everything synced with i cloud, through my Ipad2... i dont think its a ios 5 problem, as i didnt update to that until last weekend when i had run out of answers and tried to restore, whch didnt fix it either.

  • After installing the new Yosemite OS on my iMac I can no longer send email. I can receive email, but not send. I use gmail and can send email on the gmail (google) site, but not on "mail" on my iMac. Any others with this problem? What should we do?

    After installing the new Yosemite OS on my iMac I can no longer send email. I can receive email, but not send. I use gmail and can send email on the gmail (google) site, but not on "mail" on my iMac. Any others with this problem? What should we do?

    My gmail, which is correctly configured for Mail with gmail SMTP and Google IMAP, works for awhile on Mail, which I leave open while working on other applications. But several times a day I get msg from Google: "We recently blocked a sign-in attempt to your Google Account" . . . and requiring me to verify my account details, re-enter passwords, confirm security settings (or change them from "disable" to "enable less secure methods" and so on). In Mail I also have tried "taking all accounts online", and re-entering my gmail password inside Mail account settings. These steps successfully re-set comms between gmail and Mail ... for awhile, then it happens again. Enough occurrences over a work day that I just quit Mail and revert to accessing gmail directly. Apple Care advisor and an Apple knowledge base article say that Apple can't deal with this, as gmail is third-party app, and they refer me to gmail, and so far I've found nothing helpful there.
    From today I also have several instances of a window saying "Mail has unexpectedly closed" and asking me to Re-open it.
    I also use Yahoo mail, which stops working with Mac Mail at the same time as gmail, but I do not receive notices to re-verify from Yahoo.
    I recently upgraded from Mavericks to Yosemite. The Mail problem happened occasionally with Mavericks but is far more frequent with Yosemite.

  • My iMessage screen is locked horizontally and will not rotate. When I access the camera through iMessage it will not rotate either. Any help with this will be very much appreciated.

    My iMessage screen is locked horizontally and will not rotate. When I access the camera through iMessage it will not rotate either. Any help with this will be very much appreciated.

    Hi MikeyGway,
    If you are having rotation issues on your iPad, you may find the following articles helpful:
    iOS: Screen does not rotate
    http://support.apple.com/kb/ts3805
    iPad: Understanding the side switch
    http://support.apple.com/kb/HT4085
    Regards,
    - Brenden

  • My iPod touch was stolen and recovered.  I can use my Apple id for this site but the theif changed the Apple id needed to update apps etc and I do not know how to delete his acct. Any help with this will be greatly

    My iPod touch was stolen and recovered.  I can use my Apple id for this site but the theif changed the Apple id needed to update apps etc and I do not know how to delete his acct. Any help with this will be greatly appreciate

    If the thief enabled activation lock on the device, then there is nothing that can be done.  Only the password for the Apple ID that it is locked with can disable activation lock.

  • After installing the new Yosemite OS on my Macbook pro late 2013 touch trap has its own mind. Any others with this problem? What should we do?

    After installing the new Yosemite OS on my Macbook pro late 2013 touch trap has its own mind. Any others with this problem? What should we do?
    Even I tried to get back to Maverick but the touch pad doesn't work again. well, it works for a couple hours then start doing things but its own. it is so annoying.

    Hello josefromlaie,
    Thank you for using Apple Support Communities. 
    The following article provides some effective steps to troubleshoot trackpad issues:
    Intel-based Mac notebooks: Troubleshooting unresponsive trackpad issues
    Regards,
    Jeff D. 

  • Powerpoint presentation I have stored in icloud until recently were syncing to Keynote on my iPad with no problem.  Now when I open Keynote on my iPad there is nothing.  I could use some help with this problem.

    powerpoint presentation I have stored in icloud until recently were syncing to Keynote on my iPad with no problem.  Now when I open Keynote on my iPad there is nothing.  I could use some help with this problem.

    Morning AndreD86,
    Thanks for using Apple Support Communities.
    These articles explain exactly what is backed up by using their method.
    iTunes: About iOS backups
    http://support.apple.com/kb/ht4946
    and
    iCloud: Backup and restore overview
    http://support.apple.com/kb/ht4859
    Also we want to double-click the Home button and swipe the Task Bar to the right.
    Then make sure the button on the far left of Task Bar is not muted.
    Best of luck,
    Mario

  • I just installed Lightroom 5 but can't import photos, there is no import option anywhere. Get pop-up saying error attempting to change modules  ?? Any help with this??

    I just installed Lightroom 5 but can't import photos, there is no import option anywhere. Get pop up saying error attempting to change modules.
    I had this with the trial , then I purchased license and still happens.  Any help with this ??

    <moved from Downloading, Installing, Setting Up to Photoshop Lightroom>

Maybe you are looking for

  • Long running broadband/voiceline fault

    I've seen a couple of similar threads so I will not bore any readers with the long version of the story.  I was with Demon as my ISP for years and since I moved into my current address have been unable to get an issue resolved where there would be oc

  • Calculation in Secondary Hierarchies

    Hi Can anyone help me to apply a different calculation for a secondary hierarchy ? I have designed a BSO cube and the one of the Dimensions has a an Secondary Hierarchy . The requirement is that when a user look at the data for the Sec Hierarchy I wa

  • Down payment- vendors

    Hi gurus In case of downpayment for venodrs, at the time making payment f-48 the Special G/l indicator in in required status how can i make that Special G/L indicators icon to optional status. can you please tell me............. Thanks Sreenivasulu.P

  • My iphone 4 music player doesn't display the arabic songs names ?

    My iphone 4 music player doesn't display the ARABIC songs names ?

  • Logic Pro 7.0.1(840) crashes when attempting to bounce

    Hi, folks. I've seen this problem posted in this forum before, but it doesn't appear that anyone's come up with an answer yet, and the rest of the interwebnets is nearly silent on the issue as well. I'm attempting to bounce my final mix down to stere