Battery still really bad with 3.1.2

*Why have the Battery Life issues with 3.1 still not been fixed with 3.1.2?*
It's quite simple, since upgrading from 3.0 to 3.1 on my 3GS i now get just a couple of hours of battery life with the phone sitting there on my desk idle. It's warm to the touch and is constantly sending out (or receiving) data (hold it near any unbalanced audio system to hear it chatter).
Change my Exchange Push settings to Fetch every 15 minutes and I suddenly get close to 3 days on idle including average phone call usage. No other changes required, but it's not what I signed up for....
Come on, it's a no brainer, why hasn't this been fixed?
It's been on these forums for long enough.
Martin

Greetings,
I never have had a battery issue, nor has our other iPhone - we have a 3G, mine, and a 3Gs, my wife's, and they work flawlessly in every respect. I have almost every service on and running, except for Bluetooth - I have no use for that service, but my push, fetch, go get, etc, stuff is on and working well. I sync with MobileMe, and Exchange, via, Entourage, and my MobileMe calendars address book, and I sync between the iPhone and 4 other computers, 3 Macs, and 1 Winblows at work. I have both a Mac and a Winblows PeeCee on my desk. All work in perfect harmony.
You may have a misbehaving application that's eating your battery. Calibrate your battery meter once a month, or so, so that it will read correctly. In many cases the battery is fine, but the meter gets out of calibration and when it thinks your battery is about done, it will shut it down, even though the battery has plenty of charge, however unusable.
You need to charge it up fully, and then discharge it through activity, then charge it back up, without using it, and then discharge it one more time, and then the same recharge routine.
After that you should get normal battery readings. If it doesn't you have a bad app, or a bad battery, which is extremely rare. You may need to take it to an Apple Store to get it replaced, or have a technician look at it.
Third Party Apps are the bane of most computers, smart phones, etc. Be careful what you install on your phone. Games are the worst apps and have been the major cause of smart phone issues, Apple, or otherwise.
Cheers,
M.

Similar Messages

  • HT4993 why is my battery life so bad with ios6?

    I had no problem with the battery life with the old operating system.  Now my phone is dead [with no use] within hours.  Yes, my apps are closed.  Yes, I totally drain and recharge at least once a month.  Yes, I have decreased my locations.  This is awful!  Is there help with this coming?

    My iPad 2 battery life has cratered since updating to iOS 5.  I have done nothing to chage the iPad except install the update.  I use bluetooth, and it has never been a problem before, so I am not going to turn it off.  I use WiFi too, so I am not going to turn that off either.  I also use cellular data, so I am not turn that off either.  My fully charged iPad 2 will drain at least 33% overnight, just sitting there.  It is always slightly warm now. I can see this is going to kill my battery at least a year earlier than normal if the problem is not found.

  • Is the Iphone 5 Battery Life really bad?

    I'm planning to get a Verizon Iphone 5 but I'm a little hesitant because of all the battery life complains I read in the internet, is it true that the battery loses 10% charge every 15 minutes under normal usage?! does the battery life lasts only for 5 hours maximum and not the 8+ hours as Apple said? please help me.

    it is true very bad battery

  • CLR mountpoint freespace query scaling *really bad* with high number of mountpoints_

    Hi All,
    In order to get to the size and free space info on mountpoints i used several variations on this theme:
    EXEC master..xp_cmdshell 'wmic logicaldisk where (drivetype ="3" and volumename!="RECOVERY" AND volumename!="System Reserved") get deviceid,volumename  /Format:csv'
    and then decode what came back, not pretty, but hey... it worked and was reasonably fast, about  100-400ms or so.
    But due to some weird DR STRETCHED SAN config fubar of our hosting supplier we found ourselves unable to expand mountpoints on the DR stretched 3 way cluster, and each time when we ran out of space we simply piled on more and more mountpoints and files to databases.
    Don't shoot the messenger guys....   i just inherited this setup and have to deal with it until it reaches it's intended lifespan.
    As the mountpoint number went up, the runtime of the xp_cmdshell / wmic took longer and longer to complete, up to several minutes, and i started to worry :(
    So convinced something had to be done, i grabbed a C# book and did some serious catching up on my aging 30 year old C knowledge (yeah, i still have the white/blue kernighan and richie book from my school days), and wrote my first CLR. 
    After the struggling with hello world issues that come with using Visual Studio 2013 C# for the first time, i got a cmd window working with precisely what i needed. But only to find out that .NET SQL CLR is "some what limited" in the things you can
    use.
    Long story short, (and with many a thanks to all who share code snippets) this is what i came up with; a CLR that does 3 things: 
    - Physical disk info (no mountpoint support)
    - Logical disk info (with mountpoint support) 
    - and a SPLIT function.
    Here's my code (download)
    using System;
    using System.Collections; /// IEnumberable
    using System.Data;
    using System.Data.SqlClient;
    using System.Data.SqlTypes;
    using System.Diagnostics;
    using System.IO; /// DriveInfo
    using Microsoft.SqlServer.Server;
    public partial class StoredProcedures
        // Logical volume info (works for mountpoints)
        AvailableFreeSpace     Indicates the amount of available free space on a drive.
        DriveFormat             Gets the name of the file system, such as NTFS or FAT32.
        DriveType         Gets the drive type.
        IsReady              Gets a value indicating whether a drive is ready.
        Name                 Gets the name of a drive.
        RootDirectory       Gets the root directory of a drive.
        TotalFreeSpace      Gets the total amount of free space available on a drive.
        TotalSize         Gets the total size of storage space on a drive.
        VolumeLabel             Gets or sets the volume label of a drive.
        [Microsoft.SqlServer.Server.SqlProcedure]
        public static void spClrLogicalDriveInfo()
            string serverName = Environment.MachineName;
            PerformanceCounterCategory pcc = new PerformanceCounterCategory("LogicalDisk", serverName);
            SqlDataRecord record = new SqlDataRecord(
                new SqlMetaData("DriveLetter", SqlDbType.NVarChar, 256),
                new SqlMetaData("TotalSize", SqlDbType.BigInt),
                new SqlMetaData("TotalFreeSpace", SqlDbType.BigInt),
                new SqlMetaData("DriveFormat", SqlDbType.VarChar, 32),
                new SqlMetaData("DriveType", SqlDbType.VarChar, 32),
                new SqlMetaData("VolumeLabel", SqlDbType.VarChar, 20),
                new SqlMetaData("AvailableFreeSpace", SqlDbType.BigInt));
            SqlContext.Pipe.SendResultsStart(record);
            foreach (string instanceName in pcc.GetInstanceNames())
                PerformanceCounter pcPercentFree = new PerformanceCounter("LogicalDisk", "% Free Space", instanceName, serverName);
                PerformanceCounter pcFreeMbytes = new PerformanceCounter("LogicalDisk", "Free Megabytes", instanceName, serverName);
                float percentfree = pcPercentFree.NextValue();
                if (percentfree == 0) { percentfree = 1; };
                float TotalFreeSpace = pcFreeMbytes.NextValue();
                float TotalSize = (TotalFreeSpace * 100) / percentfree;
                if (instanceName != "_Total")
                    record.SetSqlString(0, instanceName + @"\");                //DriveLetter
                    record.SetSqlInt64 (1, Convert.ToInt64(TotalSize));         //TotalSize
                    record.SetSqlInt64 (2, Convert.ToInt64(TotalFreeSpace));    //TotalFreeSpace
                    record.SetSqlString(3, "");                                 //DriveFormat (not supported by PerfMon)
                    record.SetSqlString(4, "");                                 //DriveType (not supported by PerfMon)
                    record.SetSqlString(5, "");                                 //VolumeLabel (not supported by PerfMon)
                    record.SetSqlInt64 (6, Convert.ToInt64(0));                 //AvailableFreeSpace (not supported by PerfMon)
                    SqlContext.Pipe.SendResultsRow(record);  
            SqlContext.Pipe.SendResultsEnd();
        // Performance counters
        // ToDo
    public partial class UserDefinedFunctions
        // Physical disk info (no mountpoint support)
        AvailableFreeSpace     Indicates the amount of available free space on a drive.
        DriveFormat             Gets the name of the file system, such as NTFS or FAT32.
        DriveType         Gets the drive type.
        IsReady              Gets a value indicating whether a drive is ready.
        Name                 Gets the name of a drive.
        RootDirectory       Gets the root directory of a drive.
        TotalFreeSpace      Gets the total amount of free space available on a drive.
        TotalSize         Gets the total size of storage space on a drive.
        VolumeLabel             Gets or sets the volume label of a drive.
        [SqlFunction(FillRowMethodName = "FillRow",
            TableDefinition = "DriveLetter nvarchar(256)," +
                             "TotalSize bigint null," +
                             "TotalFreeSpace bigint null," +
                             "DriveFormat nvarchar(32) null," +
                             "DriveType nvarchar(32) null," +
                             "VolumeLabel nvarchar(20) null," +
                             "AvailableFreeSpace bigint null"
        public static IEnumerable fnClrDriveInfo()
            return System.IO.DriveInfo.GetDrives();
        public static void FillRow(Object obj
                                 , out string DriveLetter
                                 , out SqlInt64 TotalSize
                                 , out SqlInt64 TotalFreeSpace
                                 , out string DriveFormat
                                 , out string DriveType
                                 , out string VolumeLabel
                                 , out SqlInt64 AvailableFreeSpace
            DriveInfo drive = (DriveInfo)obj;
            DriveLetter = drive.Name;
            DriveType = drive.DriveType.ToString();
            // Check if the drive is ready (cdrom drives, SD cardreaders etc)
            if (drive.IsReady)
                TotalSize = new SqlInt64(drive.TotalSize) / 1048576;
                TotalFreeSpace = new SqlInt64(drive.TotalFreeSpace) / 1048576;
                DriveFormat = drive.DriveFormat;
                VolumeLabel = drive.VolumeLabel;
                AvailableFreeSpace = drive.AvailableFreeSpace / 1048576;
            else
                TotalSize = new SqlInt64();
                TotalFreeSpace = new SqlInt64();
                DriveFormat = null;
                VolumeLabel = null;
                AvailableFreeSpace = new SqlInt64();
        // Split replacement
        [SqlFunction(Name = "fnClrSplit", 
        FillRowMethodName = "FillSplitRow",
        TableDefinition = "txt nvarchar(10)")]
        public static IEnumerable fnClrSplit(SqlString str, SqlChars delimiter)
            if (delimiter.Length == 0)
                return new string[1] { str.Value };
            return str.Value.Split(delimiter[0]);
        public static void FillSplitRow(object row, out SqlString str)
            str = new SqlString((string)row);
    And after some testing i rolled it out, hoping my mountpoint info would be returned much faster...
    And murphy made damn sure it was'nt....  not even by a long shot :'(
    Having learned the hard way never to trust just one measurement, I tested it against 45 SQL instances, and then something caught my eye.....
    The more mountpoints there are, the longer it took, and the curve was *no way near linear*.
    So this is where i am now....  ,having almost run out of available letters of the alphabet, having no way to stop the grow of the mountpoints or databases, and fast loosing the ability to check to see if the mountpoints are running out of space from within
    SQL.
    So i'm hoping some fellow DBA out there, cursed by as many a mountpoint as i am had cracked a way to get stable performing free space info on mountpoints?
    Suggestions anyone?

    Hi Erland,
    I've made a little console app containing the same loop i'm using in the CLR and ran that on my PC and on a server.
    Code:
    using System;
    using System.IO;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Diagnostics;
    namespace ConsoleApplication1
    class Program
    public static void Main()
    string serverName = Environment.MachineName;
    DateTime StartDT = DateTime.Now;
    DateTime StartStepDT;
    DateTime EndStepDT;
    double StepRuntimeMs;
    double EnumRuntimeMs;
    StartStepDT = DateTime.Now;
    PerformanceCounterCategory pcc = new PerformanceCounterCategory("LogicalDisk", serverName);
    EndStepDT = DateTime.Now;
    StepRuntimeMs = (EndStepDT - StartStepDT).TotalMilliseconds;
    Console.WriteLine("Init Runtime: {0, 8} ms", StepRuntimeMs);
    StartStepDT = DateTime.Now;
    foreach (string instanceName in pcc.GetInstanceNames())
    EndStepDT = DateTime.Now;
    EnumRuntimeMs = (EndStepDT - StartStepDT).TotalMilliseconds;
    StartStepDT = DateTime.Now;
    PerformanceCounter pcPercentFree = new PerformanceCounter("LogicalDisk", "% Free Space", instanceName, serverName);
    PerformanceCounter pcFreeMbytes = new PerformanceCounter("LogicalDisk", "Free Megabytes", instanceName, serverName);
    float percentfree = pcPercentFree.NextValue();
    if (percentfree == 0) { percentfree = 1; };
    float TotalFreeSpace = pcFreeMbytes.NextValue();
    float TotalSize = (TotalFreeSpace * 100) / percentfree;
    if (instanceName != "_Total")
    Console.WriteLine("Drive {0}", instanceName + @"\");
    Console.WriteLine(" Total available space: {0, 8} MB", TotalFreeSpace);
    Console.WriteLine(" Total size of drive: {0, 8} MB", TotalSize);
    EndStepDT = DateTime.Now;
    StepRuntimeMs = (EndStepDT - StartStepDT).TotalMilliseconds;
    Console.WriteLine(" Enum Runtime: {0, 8} ms", EnumRuntimeMs);
    Console.WriteLine(" Step Runtime: {0, 8} ms", StepRuntimeMs);
    StartStepDT = DateTime.Now;
    DateTime EndDT = DateTime.Now;
    double RuntimeMs = (EndDT - StartDT).TotalMilliseconds;
    Console.WriteLine("");
    Console.WriteLine("Runtime: {0, 8} ms", RuntimeMs);
    The steps that takes the most time is ofcourse the first Enum step, that has to init everything, 2.7 sec on my laptop and 4.6 sec on the server.  After that, my latop rips throug the for each loop in about 1 ms per loop, but the server takes 300 to
    450 ms per loop.
    laptop
    Init Runtime:            1,0001 ms
    Drive F:\
      Total available space:              3748 MB
      Total size of drive:                3757 MB
      Enum Runtime:          2700,3429 ms
      Step Runtime:            3,0004 ms
    Drive HarddiskVolume1\
      Total available space:                70 MB
      Total size of drive:                  99 MB
      Enum Runtime:                 0 ms
      Step Runtime:            0,5001 ms
    Drive D:\
      Total available space:            278710 MB
      Total size of drive:              476936 MB
      Enum Runtime:                 0 ms
      Step Runtime:            0,5001 ms
    Drive C:\
      Total available space:             75930 MB
      Total size of drive:              244095 MB
      Enum Runtime:                 0 ms
      Step Runtime:            1,5002 ms
    Runtime:          2730,8468 ms
    Server
    Init Runtime:                 0 ms
    Drive D:\
      Total available space:             80121 MB
      Total size of drive:              102409 MB
      Enum Runtime:            3931.2 ms
      Step Runtime:             343.2 ms
    Drive O:\MSSQL\DATA\DATA9\
      Total available space:             10120 MB
      Total size of drive:               30720 MB
      Enum Runtime:                 0 ms
      Step Runtime:               312 ms
    ----- snip --------------- removed 120 entries
    Drive O:\MSSQL\DATA\DATA6\
      Total available space:              2318 MB
      Total size of drive:               10238 MB
      Enum Runtime:                 0 ms
      Step Runtime:               312 ms
    Drive O:\MSSQL\DATA\DATA5\
      Total available space:              8559 MB
      Total size of drive:               10238 MB
      Enum Runtime:                 0 ms
      Step Runtime:               312 ms
    Drive R:\
      Total available space:             15763 MB
      Total size of drive:               20479 MB
      Enum Runtime:                 0 ms
      Step Runtime:             296.4 ms
    Runtime:           39873.6 ms
    So i was wondering Erland, do you know of any other way to get to mountpoint free space faster then this ?
    Grtz, T :)

  • I'm really, really bad with speakers. (Polk Audio T15 Setup)

    So I bought these speakers and don't even know what the first step is. What cords/home theater setup do I need? I'm connecting it to a sony google TV. 

    Sony - 945W 7.1-Ch. 3D Pass-Through A/V Home Theater Receiver
    Model: STRDH520 | SKU: 2023402
    This receiver features 3D pass-through, Deep Color and x.v.Color technologies for a crisp, clear picture to enhance your home theater experience. Dolby TrueHD, Pro Logic IIz and DTS HD MA surround sound decoders provide a lush soundscape. Includes HDMI 3D pass-through technology for compatibility with 3D TVs, Blu-ray players and gaming consoles.
     4.2 Read reviews (53)
    Sale: $249.99
    First, you'll need to buy an A/V Receiver to hook/power the speakers with. Some speaker wire as well to hook them up.  Personally, I'd recommend a center channel speaker to go with the setup, too.  And then you'll just need an HDMI cable to run from the A/V receiver to the television.

  • HT201436 voice mail management is really bad with the newer version of software for my iPhone5  my old version deleted VMs instantly but now my phone freezes up and at times the delete button does not work until i set the phone aside for up to a minute.

    I am having a hard time deleting unwanted voice messages with my new phone and software as compare to my iphone4 which was as easy as clicking on the delete button.  VMs would delete instantly.  with my iPhone 5 7.0.4 software ver the first one or two delete immediately then the phone freezes up for several seconds making the process frustrating.  I am wondering if either I am doing something wrong or if there is a fix out there.  its a giant step backwards for Apple.

    I am having a hard time deleting unwanted voice messages with my new phone and software as compare to my iphone4 which was as easy as clicking on the delete button.  VMs would delete instantly.  with my iPhone 5 7.0.4 software ver the first one or two delete immediately then the phone freezes up for several seconds making the process frustrating.  I am wondering if either I am doing something wrong or if there is a fix out there.  its a giant step backwards for Apple.

  • What should i do if it lags really bad with no apps opened up?

    So i was just having a ordinary day at a ordinary time. Usually it wont lag much, only lags when i play games and stuff. But that day. I came home. Opend up my mac. And there i was gonna edit my vids in movie11 when i cant click or anything. It just has the pringy spinny rainbow thingy. So i was liek thats wierd. So i closed it. Then i try to open up youtube. I cant. It just lags too much. I repair my disk. I thought it would fix it. No dice. The lag is there. And i realised there is something that is clogging up my RAM. So i checked Activity Monitor. Nothin. There is nothing unusual. I dont know what to do. If this post dosent work. Ill just have to go to the Apple Store.

    Have you tried creating a new login ID that has no login items associated with it, to see if any login programs are causing severe system lags? You would do that through System Preferences. 
    How much free disk space do you have? You want 10% to 15%, or more, of it free for systems usage.

  • I need help with a intro because I am really bad with After effects!

    So at my school right now we are on a Romeo and Juliet lesson and for a whole 8th grade class activity we are doing something called "Verona's got Talent" its basically like Americas got talent and I was wondering if someone could help me by making an intro to the video. I am hoping it would look like the America's got talent intro but if its not its fine. It should say the Judges names and the names are Romeo Stirn, Juliet Klum, Mercutio Mandel, Mel Benvoilio. The Exctuive Producer Heather Meskimen and the host Nick Shakespeare Cannon. It should be 45 to 1:30 intro and it should have the America's got talent intro music in the back. If you anyone can help me by making this for me it would help ENORMOUSLY. Thank you!!!!

    You can learn to do this yourself.
    Start here to learn After Effects:
    http://adobe.ly/AE_basics

  • I got problem with volume of calls...its on max and i still can hear person on other side really bad...i got 4s

    i got problem with volume of calls...its on max and i still can hear person on other side really bad...i got 4s

    Did you fix the problem? I have the same problem and it has been pain in the neck.

  • Ios 6.1.2 on my 3gs that really slowly with chinese typing keyboard. And battery run out so fasttttttttt!!!!!

    I just wanna say ios 6.1.2 on my 3gs that really slowly with chinese typing keyboard. And battery run out so fasttttttttt!!!!!
    do you guys feel the same ?????

    Same here. My 32GB iPhone 3GS works great under iOS 6.1.3. Since I am the original owner of the phone, purchased in July of 2009 and it is long out of contract with AT&T, I had AT&T unlock the phone (not jail break) and my son now uses it on T-Mobile. He has a non-data pay as you go plan so he must be on WIFI to get data, but his school has it as do all his friends houses so it is no real issue. Also very cheap. Amazingly good support by Apple that an almost 4 year old phone still runs the latest and greatest OS. Does not happen with Android. Heck, many new Android phones have an old version, incredible as that may be.

  • HT4137 My battery life is bad.....not getting long on full charge. How do I trouble shoot to see if it's a problem with the battery?

    How do I determine if my battery life is bad??

    The quickest way (and really the only way) to charge your iPad is with the included 10W USB Power Adapter. iPad will also charge, although more slowly, when attached to a computer with a high-power USB port (many recent Mac computers) or with an iPhone Power Adapter (5W). When attached to a computer via a standard USB port (most PCs or older Mac computers) iPad will charge very slowly (but iPad indicates not charging). Make sure your computer is on while charging iPad via USB. If iPad is connected to a computer that’s turned off or is in sleep or standby mode, the iPad battery will continue to drain.
    Apple recommends that once a month you let the iPad fully discharge & then recharge to 100%.
    How to Calibrate Your Mac, iPhone, or iPad Battery
    http://www.macblend.com/how-to-calibrate-your-mac-iphone-or-ipad-battery/
    At this link http://www.tomshardware.com/reviews/galaxy-tab-android-tablet,3014-11.html , tests show that the iPad 2 battery (25 watt-hours) will charge to 90% in 3 hours 1 minute. It will charge to 100% in 4 hours 2 minutes. The new iPad has a larger capacity battery (42 watt-hours), so using the 10W charger will obviously take longer. If you are using your iPad while charging, it will take even longer. It's best to turn your new iPad OFF and charge over night. Also look at The iPad's charging challenge explained http://www.macworld.com/article/1150356/ipadcharging.html
    Also, if you have a 3rd generation iPad, look at
    Apple: iPad Battery Nothing to Get Charged Up About
    http://allthingsd.com/20120327/apple-ipad-battery-nothing-to-get-charged-up-abou t/
    Apple Explains New iPad's Continued Charging Beyond 100% Battery Level
    http://www.macrumors.com/2012/03/27/apple-explains-new-ipads-continued-charging- beyond-100-battery-level/
    New iPad Takes Much Longer to Charge Than iPad 2
    http://www.iphonehacks.com/2012/03/new-ipad-takes-much-longer-to-charge-than-ipa d-2.html
    Apple Batteries - iPad http://www.apple.com/batteries/ipad.html
    Extend iPad Battery Life (Look at pjl123 comment)
    https://discussions.apple.com/thread/3921324?tstart=30
    New iPad Slow to Recharge, Barely Charges During Use
    http://www.pcworld.com/article/252326/new_ipad_slow_to_recharge_barely_charges_d uring_use.html
    Tips About Charging for New iPad 3
    http://goodscool-electronics.blogspot.com/2012/04/tips-about-charging-for-new-ip ad-3.html
    Prolong battery lifespan for iPad / iPad 2 / iPad 3: charging tips
    http://thehowto.wikidot.com/prolong-battery-lifespan-for-ipad
    iPhone, iPod, Using the iPad Charger
    http://support.apple.com/kb/HT4327
    Install and use Battery Doctor HD
    http://itunes.apple.com/tw/app/battery-doctor-hd/id459702901?mt=8
    In rare instances when using the Camera Connection Kit, you may notice that iPad does not charge after using the Camera Connection Kit. Disconnecting and reconnecting the iPad from the charger will resolve this issue.
     Cheers, Tom

  • Broadband speed has been terrible with really bad ...

    Hi, for the past few days i have been receiving a really bad broadband speed, its varies from 0.90Mbps to 5Mbps normally i would be getting around 3.50mbps to 5mbps but lately its been terrible constatly changing. I tested my speed on speedtest.net and was getting a ping of around 100 + and sometimes it will go down to 50 ish. I have contacted BT the other day and they said they would get back to me today but they have not. Also for the past few days my connection has been dropping but since contacting BT that has stopped but im still getting slow download speeds to the point i cant even watch a YouTube video on a low video quality.
    What i want to know is why i am getting so slow download speeds and a very unstable connection?
    Is there a problem in my area? I have no changed any settings messed around with any cables to make my connection drop.
    Thanks for any help.

    Can you also post the full results from http://speedtester.bt.com/
    Have you tried connecting to the test socket at the rear of the master socket
    Have you tried the quiet line test? - dial 17070 option 2 - should hear nothing - best done with a corded phone. if cordless phone you may hear a 'dull hum' which is normal
    also you could try the hints given by poster RogerB in this link they may help http://community.bt.com/t5/BB-in-Home/Poor-Broadband-speed/m-p/14217#M8397
    Then someone here may be able to help and offer more advice.
    This is a customer to customer self help forum the only BT presence here are the forum moderators
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

  • Is there a way that i can downgrade my iOS 7.1 on my iPhone 4 to iOS 6xx? battery life not good, and performance isn't better than iOS 6.. Please apple i am really disappointed with iOS 7 on my iPhone 4

    Is there a way that i can downgrade my iOS 7.1 on my iPhone 4 to iOS 6xx? battery life not good, and performance isn't better than iOS 6.. Please apple i am really disappointed with iOS 7 on my iPhone 4, it can runs great on iPhone above 4 such as 5/5s/etc.. iPhone 4 just good with iOS 6...

    No.

  • I Phone 4 with I OS 4.2  shuts downs with 30% battery still remaining.

    Hi,
    I have been an Apple fan for years, But recently my new I Phone 4 has been giving me a lot of trouble.
    I purchased the Phone in Oct'10, it was working great till last week. All of a sudden my phone automatically switches off with 30% battery still remaining. when I plug in the charger it starts from 30% percent battery and goes all the way till 100%. but when I start using it, it lasts till 30% and then kaput. no warnings, no signs just switches off and all attempts to switch it back on fail till the charger is plugged in and, then it will start still showing 30% battery and then charging all the way till 100%.
    I wonder if this is a software or a hardware issue, I am worried as the Phone was purchased in Singapore where I used to live but have moved back to my home town New Delhi in India. I can't go back to Singapore to get it fixed and if I go to a service center here I don't know how much I might have to shell out.
    I'm desperately looking for some help.
    Thanks
    DevRachit.

    to be honest these are the solutions that may or may not work..
    first thing I would try is rebooting the phone by holding the sleep/wake button and home button for 15 seconds until you see the white apple logo
    if that doesn't work I would restore from backup and if that doesn't work I would restore as new if all that fails unfortunately you would need to take it back to the country you purchased it for replacement

  • I have problem with my iphone 5 the battery still running so fast

    i have problem with my iphone 5 the battery still running so fast

    Click the link below choose your country then choose service and see if you have an Apple Authorised Service Provider in your country.
    https://locate.apple.com/au/en/
    If you dont have any Apple Authorised Service Providers near you either then contact AppleCare and ask them for options for postage in your country/region. You can find the number for your country below:
    http://support.apple.com/kb/HE57
    Hope this helps

Maybe you are looking for

  • Po list showing the total amount with advances given & open GR quantity

    Hi Gurus, My client need to know the list of total p/os showing its gross total amount only (& not with the line items) with the advances rendered to them & its open GR quantity against total qunatity mentioned. I hv tried in ME80FN, ME2N, ME2L ME2M.

  • Report Level Trigger and Creation of View

    Hello Experts! I want to know that is it possible to create view in database before running the report and after entering values in report's parameter? Regards. Oracle User.

  • Multiple tag fields in page properties dialog

    Is there a way to have multiple tag fields in the page properties dialog and have them work with the default TagManager API?  From what I've tried so far it looks like anything that is not in the root jcr:content node of a page or asset doesn't apply

  • Alert Configuration Link error

    We have done the ALERT configuration.After which we get a link as shown below through e-mail.. http://hostname:port/rwb_mdt/index.jsp?rwb=true&objectName=name=is.01.uctvt701,type=XIServerEngine&messageid=24F2553025E611DD829B0016357312D2 The problem i

  • SOA server status

    I am new in SOA 11g. I run scripts: startWebLogic.cmd startManagedWebLogic.cmd soa_server1 startManagedWebLogic.cmd bam_server1 Then, I login to the EM. Under the Resource Adapters in the left, the oracle-bam(11.1.1) and soa-infra are down. Under the