Battery Issue still not fixed

This is my first iPhone.  I like the phone but the battery issue is not resolved.  I downloaded the software fix and it did not fix it.  In fact it might have made it worse!  I have to keep everything turned off all the time or the battery is used up in a few hours.  What good is having the phone if you can't have anything turned on.  I see no difference in the battery life even with the software update.  I don't mind charging it each night, had to do that with the Blackberry too but I don't want it going dead mid day when I have barely used it.  Has anyone found a way to keep the battery at a decent level all day?

why don't you search the forum before asking a question that's been asked and answered over and over and over and over again?
There are a multitude of postings with excellent suggestions on how to maximize your battery life.

Similar Messages

  • X-Fi Titanium PCI-E x1 and known UT3 OpenAL issue still not fixed!!!!!!!

    Dear creative support... wtf is this?! This issue is known since so looooooong time, as i've read at other forums fixed with all other x-fi sound cards but with not my one. Installed yesterday latest beta driver, day before yesterday i've been using stable 2.7.0008 driver and with both versions i got this **bleep** annoying crash.
    I want to remember to you issue details: random crashes of game during play it with ingame OpenAL enabled.
    I have 5. speakers set and i want to play the game with surround audio, i can get it only by enable OpenAL in game menu so do not even try to suggest to me to disable OpenAL!!! I tried many known "fixes" and workarounds, using latest versions of driver but issue still happens to me.
    IF this issue will not be fixed i will buy asus xonar asap, temporary i just have no money to buy new sound card. Gi've me driver fixing this issue, ffs!!!!!!!!!!!!
    Here is full PC configuration:
    AMD Phenom II x4 B35 2,9GHz
    Palit Radeon HD3850 52MB GDDR3 PCI-Ex
    Creative X-Fi Titanium pci-e x
    3xGB Kingmax DDR2 066MHz
    Gigabyte GA-MA785GM-US2H

    This is the only game with which i have a problem.
    I contacted with support via email form, they suggested to me to contact with game's customer support i did so and waiting for answer from them.
    Creative support in answer said that this issue happens not only with creative x-fi products but unfortunately it's not true. In many forums problem were analysed by users and result is one: x-fi users only are facing this issue. Also before i bought card i've been playing long time ut3 with integrated realtek sound card and there was no problem with enabled openal, it shown up when i bought and installed x-fi titanium sound card.

  • Keyboard issue still not fixed with Bootcamp 3.1

    It appears that bootcamp 3.1 did nothing to solve the most annoying issue I face. Everytime I unplug my Mac keyboard from my MacBook Pro, and then plug it back in, bootcamp reverts the keyboard back to mapping the function keys using the apple standard regardless of the setting in the bootcamp control panel.
    So everytime I unplug/plug-in the keyboard (which is a lot during the day given my job) I have to open the control panel, uncheck the "Use function keys as standard function keys" checkbox, click apply, then check the same checkbox again to re-enable it and click OK.
    I've actually become quite used to doing this, but it's still annoying nonetheless.
    I'm wondering if there is no way to fix this. Maybe it's a USB thing. Maybe it's a firmware thing in the apple keyboard. Who knows.
    Apple, I have posted several times and have never had a response. It would be nice to hear something from someone on the issue.
    Thanks.

    Dear Deputy Dwane T.,
    Hopefully this will help solve the constant setup problem. I found a solution for what may be a similar problem, but it was with the keyboard in OS X rather than in Windows. The problem I had was that I would start up in OS X and then connect the keyboard. I then would get a keyboard setup "wizard", and this problem would happen each time I connected the keyboard. I found that if I would start the computer up with the keyboard first connected before startup, then go through the keyboard setup, and then restart with the keyboard still connected, after that I never would get the setup stuff again. Now I could connect the keyboard at any time before or after startup, and the keyboard would be recognized properly. As for the mis-assignment of the key positions, is there no way to reassign these in the keyboard control panel item in Windows? I see that under the Control Panel "Region and Language" item, if one chooses the tab entitled "Keyboards and Languages" and then the "Change Keyboards" button, followed by the "Add" button, there is an option for "United States-International (Apple)". Does that keyboard layout solve the problem?
    Sincerely,
    Wilson

  • Why iCal cancel of event edits issue is still not fixed after over 2 years?

    Why iCal "cancel of event edits" issue is still not fixed after over 2 years?
    I have been in the software engineering industry for over 14 years, but I have never seen a large corporation being so slow at addressing major issues like these.
    What would it take for Apple to start working on this issue?

    Yup. This is fully ridiculous that you can't cancel your updates once you start. I love the tool but this is on pretty significant issue.
    Sometimes I accidentally move a mtg or make some edit while viewing and you can't back you!!
    If you feel the same way, you should post a note here:
    http://www.apple.com/feedback/ical.html
    Message was edited by: SteveMc10123

  • 3.1EA2 bug still not fixed - Members of package body not listed in the tree

    Hi, I was working today with SQL Developer again and found that this bug is still not fixed even when it was reported more than 1 year ago!!!
    I did a quick search and found it here
    Package Body Tree not always showing
    The problem is when you expand the package specification or package body tree, not all members of the specification/body are listed. This is mostly observable in the package body, but it regards to the specification as well.
    Consider this case:
    CREATE TABLE EMP (
        ID               NUMBER(6,0) DEFAULT 0,
        NAME             VARCHAR2(20 BYTE) DEFAULT NULL,
        DEPT             VARCHAR2(20 BYTE) DEFAULT NULL,
        FUNCTION         VARCHAR2(20 BYTE),
        PROCEDURE        VARCHAR2(20 BYTE));
    CREATE TABLE LOOP (
      AREA    VARCHAR2(5),
      VALUE   VARCHAR2(2));
    CREATE OR REPLACE PACKAGE Test_Package1 AS
    gvc_const CONSTANT VARCHAR2(10) := 'xxx';
    PROCEDURE Test(p_RC OUT NUMBER,
                   p_ID IN NUMBER);
    END Test_Package1;
    CREATE OR REPLACE PACKAGE BODY Test_Package1 AS
    PROCEDURE Test(p_RC OUT NUMBER,
                   p_ID IN NUMBER)
    IS
    BEGIN
      --INSERT INTO EMP (ID, NAME, DEPT, PROCEDURE) VALUES (1, 'Tina', 'xxx', 'xxx');
      --INSERT INTO EMP (ID, NAME, DEPT, FUNCTION) VALUES (2, 'Jeff', 'xxx', 'xxx');
      --INSERT INTO LOOP(AREA, VALUE) VALUES('a','b');
      NULL;
    END;
    END Test_Package1;Compile the package specification and the body. Expand the spec + body in the tree. Uncomment any of the commented lines in the package body and compile the body again. Now expand the package body again and look what is displayed.
    Why? It is because SQL Developer handles words "Function", "Procedure" and "Loop" as keywords and according to them does the parsing.
    Another case
    CREATE OR REPLACE PACKAGE Test_Package1 AS
    gvc_const CONSTANT VARCHAR2(10) := 'xxx';
    TYPE Loop_rec IS RECORD(
      item1   LOOP.AREA%TYPE);
    PROCEDURE Test(p_RC OUT NUMBER,
                   p_ID IN NUMBER);
    END Test_Package1;Compile just this specification and try to expand it in the tree. Again, during parsing the package, SQL Developer takes the word "LOOP" into consideration and fails to parse the specification.
    There is exactly the same problem when you declare functions from external dll libraries in package body. Since there is no "END;" in this case, SQL Developer's parser fails...
    To me it seems you simply blindly took some keywords like "FUNCTION" and expect there will be some "END;" keyword corresponding with it.
    Can anyone have a look at this and finally fix it?

    Hi,
    Thanks for trying out SQL Developer 3.1 EA2 and providing a clear, reproducible test case for this issue. I logged an internal bug for it:
    Bug 13438696 - 3.1EA2: FORUM: CERTAIN KEYWORDS IN PKG BODY BLOCK MEMBERS FROM CONN VIEW TREE
    It seems the bug noted in the other forum thread you reference has been fixed, but really had nothing to do with problems discussed either here or there. That fix involved adding an Edit Body... item to the Package context menu in the Schema Browser, not displaying Package members correctly in the Connection view tree.
    Regards,
    Gary
    SQL Developer Team

  • Gmail archived/labeled Emails not showing problem FIX SOLUTION FOUND - BUT STILL NOT FIXED!

    Newest edits in here:
    http://forums.crackberry.com/general-blackberry-discussion-f2/please-send-very-important-10os-device...
    100% FIX SOLUTION GUARANTEE for Gmail archived/labeled Emails not showing problem!
    How to fix it? FIX "Show Read Filed Emails" button to respond to ON and OFF devices Blackberry HUB for Gmail accounts - NOW IT IS ALWAYS OFF if you press ON or OFF!
     "Show Read Filed Emails" button ON and OFF for Gmail account works on Blackberry Blend desktop version!
    Works with: Blackberry Blend desktop version responds to "Show Read Filed Emails" button ON AND OFF with Gmail accounts! (pressing "Show Read Filed Emails" button ON and OFF again and again, view in Blackberry Blend immediately changes in order you press ON or OFF, but Blackberry HUB is always on OFF)
    Error/Bug: Blackberry HUB do not show Gmail labeled emails
    Main problem: Blackberry HUB "Show Read Filed Emails" button doesn't respond to ON AND OFF and is always OFF fo Gmail account.
    Main problem: ALL Blackberry 10OS devices Blackberry HUB"Show Read Filed Emails" button ON AND OFF doesnt respond with Gmail accounts!
    "Show Read Filed Emails" button doesn't work with: Gmail accounts
    Status: NOT FIXED!
    OS version: Blackberry 10 OS version OFFICIAL 10.3.1.1565
    PROBLEM FOUND!
    I created new Gmail account send 5 test emails and made first 2 test emails labeled and made step by step set up on my Blackberry 10OS device to confirm this ''Show Read Filed Emails'' button BUG/PROBLEM/ERROR:
    1. I signed in with my Blackberry 10OS device like this:
    http://forums.crackberry.com/attachments/blackberry-10-os-f269/338846d1425503380t-gmail-archived-lab...
    2. When I set on Gmail account settings "Sync Timeframe" is set to FOREVER and "Sync All Emails Folders" is set to ON
    http://forums.crackberry.com/attachments/blackberry-10-os-f269/338847d1425503392t-gmail-archived-lab...
    3. And at last I go to devices Blackberry HUB and see this:
    http://forums.crackberry.com/attachments/blackberry-10-os-f269/338856d1425505143t-gmail-archived-lab...
    As you can see it doesn't matter if "Show Read Filed Emails" button is set to ON or OFF, Blackberry HUB doesnt respond at all, but Blackberry Blend view changes at same second then I press.
    CONCLUSION: "Show Read Filed Emails" button ON and OFF BUG/PROBLEM/ERROR for Gmail accounts is confirmed and it STILL NOT FIXED!
    Please spread the word to people who have all the power to influence and accelerate processes to FIX this VERY SERIOUS ISSUE or please tell me there could I send this FIX SOLUTION to to get fastest respond and get it FIXED ASAP. THANK YOU!
    STILL NO FIX!

    If you select one month for mail days to sync, only one month's worth will be synced and available - the last month which will be constantly changing to the most recent 30 days. Select No Limit for Mail Days to Sync.
    Show 1000 recent messages is for the selected mailbox only and if there are more than 1000 messages in a mailbox and you have one month for mail days to sync selected, if the last 30 days for the mailbox includes 100 messages, only 100 messages will be available.
    Are these additional server stored mailboxes separate mailboxes and what I mean by that is not sub-mailboxes for the Inbox mailbox?
    Since you have had this issue with other operating systems, the common denominator is your Hotmail account. Have you contacted Hotmail technical support regarding this issue you have had with other operating systems?
    All server stored mailboxes with an Exchange account should be available with the email client used to access the account. If all are not available when accessing the account as an Exchange account with an email client, something is wrong with your setup for these mailboxes at the server level.

  • IPad Safari Landscape innerHeight/outerHeight bug still not fixed in iOS 7.1.1

    iPad Safari Landscape innerHeight/outerHeight bug still not fixed in iOS 7.1.1
    No bug in Chrome or other third party browsers.
    When are Apple going to fix this bug? It's painful.
    more info here:
    http://stackoverflow.com/questions/19012135/ios-7-ipad-safari-landscape-innerhei ght-outerheight-layout-issue

    Tell Apple not other users.
    Use http://www.apple.com/feedback/ipad.html

  • 1 month and my issue is not fixed yet you closed my thread?

    I never got the credit applied to my account.  My account is still not fixed and its been a month! Now my bill is due! Thanks so much comcast for showing me the worst customer service ive ever seen in my entire life. What do I have to do to get this resolved? Cancel my account? Thanks for closing my thread with out solution.  http://forums.xfinity.com/t5/Billing/no-help-from-support-or-the-store-sales-agent-lied/td-p/2559631

    Hello Gunslingerx64,
    I am sorry for the delay. I have sent you a private message addressing the changes and credits applied to your account.

  • Aperture is asking to upgrade library every time I open the application, even after it has already been upgraded.  I just ran the update and it is still not fixed.  What can I do???

    Aperture is asking to upgrade library every time I open the application, even after it has already been upgraded.  I just ran the update and it is still not fixed.  What can I do???  My plug are asking me to re-register them too.  This is annoying.  Please help!!!!!

    How do you try to start the repair dialogue? By starting Aperture or by opening the Library?
    If you not already have tried it with directly opening the library: 
    reveal your Aperture Library in the Finder
    Whilst holding down Command(⌘)- option (⌥) double click on the Aperture Library.
    Select "repair library" from the dialogue.
    What about Frank Caggiano's questions above?
    It would be really helpful to know, how many libraries you have, and if this problem is restricted to one of them.

  • HT4060 I'm having some problems with my ipad and charging it. I am having to leave it in charge for a lot longer, but when I take it out and want to use it the battery is still not completely full and goes down a lot faster than usual

    I'm having some problems with my ipad and charging it. I am having to leave it in charge for a lot longer, but when I take it out and want to use it the battery is still not completely full and goes down a lot faster than usual. The other day, I had charged  my iPad overnight so that I could take it to university with me for the day, and when I had switched it on the next day the battery was on 5% and I had not used it since charge.

    Your battery may be dying. THey are only good for so many charges/discharges. If you have an apple store near by make an appointment and have them check itout

  • ITunes 10.6 album artwork still not fixed

    Still Album artwork not fixed - it refuses to clear album artwork and will not paste new artwork??
    absolutley rediculous for this basic element to be so buggy and its meant to be fixed in 10.6 ???/
    geesus app ****

    The same way as it didn't work before. When i delete an artwork, or change an artwork for another, the changes aren't made in the cloud. So when I download the same song with another computer, the song still has the old artwork.
    edit: I just realized, that I'm not in the "iTunec Match" forum, sorry. I will post in the apropriate forum from now on...

  • SAP QM QE01 - Result Recording issue - scope not fixed

    Hi QM experts!
    I am facing the issue with the QE01 tcode, while result recordning. My caracteristic has a "scope not fixed" indicator marked. I have the sampling prcedure n=1. While result record the system doesnt allow me to regitster more then 1 result. The "Sigle result" dropdown is blurred, not letting me enterring more then one result.
    With the sampling procedure n=2 I am able to multiple the results as much I want.
    I am not sure if there is any OSS Note for that problem, once I searched and haven´t came across any.
    Anyone familiar with that problem?
    I apreciate any hint,
    best regards,
    Anna

    Hi Karen,
    yes, my caracteristics are checked for "single results" record.
    What I meant by N=1, N=2 is the size of my sampling procedure. While using samling procedure of size fixed=1, I can not regiser more then one result, even though caracteristic is marked as "scope not fixed / single results.
    And when I use the sample procedure size Fixed=2 (QDV1) for the same caracterisic I am able to register 2 results / 4 /6..etc. as many I as intend to.
    What  am tryin to figure out here, why the system doesnt let me register more then one result in the first senario, seems like a bug to me.
    thank you for your valuable input. Any suggestions?

  • Laptop charging battery ,but still not full charge

    i have hp pavillion dv3 2004tu , my laptop charge for 3 hour but my battery only get  27% . Does it cause by software or my AC adapter or my battery ? if cause from battery why? .... who could help me  

    Hello erasmusfry,
    Welcome to the HP Forums!
    I understand that no charging is taking place. Before anything else, please try the steps I provided in this thread, as they will likely resolve the issue: Re: battery charging
    If not, please try Testing and Calibrating the Battery.You should be able to find out if the battery has any issues.
    If the battery appears to be fine, you can try to improve your battery performance. For more information on improving battery performance, please review the following document: Improving Battery Performance (Windows 8, 7, Vista).
    If none of this helps, you can try purchasing a motherboard if the computer isn't in warranty. If it is, you should be able to get a replacement over HP phone support. You can utilize this website to learn how to contact HP appropriately, based on your region: Contact HP Worldwide
    Please let me know if you have any other questions or concerns, and if this helped you. Thanks for choosing the HP Forums. Have a great day!
    Mario
    I worked on behalf of HP.

  • IPhone 3Gs Battery Issues or Not? WunderRadio or IheartRadio

    Does anyone use their Iphone to listen to IHeartRadio or WunderRadio? I like to use it at work to listen to different stations but it makes me wonder if my battery is ok. I have wifi turned off and 3g off so I am using EDGE and I am getting about 4.5 hours usage with 22% battery remaining. Does this seem right or should I hook up my iphone via USB while at work to save battery?
    This is my second 3gs as my first definetly had battery issues.

    well, as for battery consumption, EDGE is much better (12hrs advertised) compared to 3G (5hrs).
    4.5hrs seems not so much, but it could be normal, internet drains the battery pretty heavily. if your phone behaves normal otherwise I wouldn't worry about it

  • New macbook air battery, yet still not charging is it the adaptor that's going as well?

    I just got the battery in my mba replaced and I went to go and charge it again and I've tried to charge it. However, it still does not charge. I've tried different outlets and the two pronged vs the three pronged cables and it still won't work. Could it be the charger itself?  I'm hoping it's nothing serious like the logic board or something. I'm going to try another adapter tomorrow, but it would be nice to know if it might be my adapter that's broken. When I plug it in no light turns on, but it is still running off of the adapter, it's just not charging.

    A new Mac comes with 90 days of free tech support from AppleCare.
    AppleCare: 1-800-275-2273
    Call AppleCare or take it to the Apple store to have it checked out.
    You can try resetting SMC.
      Reset SMC.     http://support.apple.com/kb/HT3964
      Choose the appropriate method.
      "Resetting SMC on portables with a battery you should not remove on your own".
      Charge the battery fully before using the computer for the first time.
      Best.

Maybe you are looking for

  • Two versions of Front Row?

    I just noticed using System Profiler that there are two versions of Front Row on my iMac. Version 1.0 is located in /Applications Version 2.1.6 is located in /System/Library/CoreServices/ Double-clicking either one brings up versions 2.1.6. Does all

  • We have tvo computer Can I make more than one website Hove do i do?

    Can I bulit a website one one cumputer Than built another website on another cumputer? I have tryed !It don´t work [email protected]

  • Premiere elements 13 won't download.

    I have entered my serial in over at www.adobe.com/go/getserial, and as such I receive a download link. When I click it, it downloads some "Arvato Bertelsmann" download manager, which simply refuses to download Premiere Elements. See attached image. I

  • Flash Player FLV SWF Confusion

    Fellow Forum Members, I"m using Acrobat 10. I have installed the latest Flash Player and Quicktime apps. I'm also using Adobe Media Encoder V4. The work flow I'm following is as follows: 1. I'm using Adobe Media Encoder to convert MP4 to FLV format.

  • Il mio iphone si spenge improvvisamente, perchè??

    mi è successo tre volte che l'iphone si spengesse improvvisamente... sapete dirmi perchè?