I have one  iphone 4s is the third time that sends Ai repairs .. not my substitutions with a new record even if I have no guarantee I replace it with a new one I'm tired of this story what I can do;;

I have one is the third time that you send for repair .. not my substitutions with a new record even if I guarantee I'm tired of this story what I can do;;; For two months I have not mobile .. every ten days sends it to my dealer and sends it exactly as you send it back .. and no problems have been made ... find my solution;;

The people responding in this forum are just other Apple product users like you, not Apple itself.  Apple Support Communities is primarily an end-user to end-user (i.e., users like you helping other users) technical issue support feature.
Try:
Contact Us

Similar Messages

  • I see there is another ios update. I have an iPhone 4S. The last time I updated the ios I lost all my contacts, as I had not been using the iCloud as a backup. I am now apprehensive about the latest update. How can I determine if contacts are backed up?

    I see there is another ios update. I have an iPhone 4S. The last time I updated the ios I lost all my contacts, as I had not been using the iCloud as a backup. I am now apprehensive about the latest update. How can I determine if contacts are backed up?

    You should never lose contacts under any circumstances.
    Although contacts are included with the iPhone's backup, contacts are designed to be synced with a supported address book app on your computer where such important data should be available with or without an iPhone or any cell phone. Not a good idea to depend on a cell phone for such important data which can be lost or stolen or damaged beyond repair.
    In addition, there are a number of free email accounts that support syncing contacts over the air including an iCloud account, Gmail, Yahoo, and Hotmail.
    If you are not syncing contacts over the air with an iCloud account and not backing up your iPhone wirelessly with your iCloud account, your iPhone's backup is being updated by iTunes on your computer which is updated as the first step during the iTunes sync process.
    With Windoze, contacts can be synced with Outlook 2003, 2007, or 2010 along with syncing calendar events, notes, and reminders, or with the address book app used by Outlook Express and by Windows Mail called Windows Contacts for syncing contacts only. With a Mac, contacts can be synced with the Address Book app. This is selected under the Info tab for your iPhone sync preferences with iTunes.
    If the supported address book app on your computer is not used and has no contacts available, before the first sync for this data enter one contact in the supported address book app on your computer. This will provide a merge prompt with the first sync for this data, which you want to select.

  • Hi there I have an iPhone 4S on the 3 network that will allow me to tether my iPhone 4S to the ps3, my question is will I be able to access the playstation network on the playstation 3 to download games and content to my ps3 console

    Hi there I have an iPhone 4S on the 3 network that will allow me to tether my iPhone 4S to the ps3, my question is will I be able to access the playstation network on the playstation 3 to download games and content to my ps3 console

    If you're getting normal network access through tethering, I'm not sure why this would not work.
    - JC

  • It's already the third time that i post the same question, please help me!

    I am writing a simple guestbook that is able to insert and fetch text and image from database and display them. There is a html that forms the parameters to this servlet, some text information such as "name", "address" and one picture. Insertion and fetching of text and images works sepearately, but when i combine them there is a conflict between "doGet" and "doPost". My text insertion only works with "doGet" (don't know why, but when i type "doPost" it does not work) while image insertion only works with "doPost" since i am using "Multipartrequest" to read the image.
    Since i write "doGet" in my code, the exception is following
    java.io.IOException: Posted content type isn't multipart/form-data
    SQLB.doGet(SQLB.java:42)Following are the codes , please give me a hand, many thanks!!
    the problem line that causes exception is marked with ////////////////////////////////// above in red color
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.*;
    import java.awt.image.*;
    import com.oreilly.servlet.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.text.*;
    import com.sun.image.codec.jpeg.JPEGCodec;
    import com.oreilly.servlet.ServletUtils;
    import java.net.*;
    import java.sql.*;
    public class SQLB extends HttpServlet{
        Connection con;
        PreparedStatement pstmt=null;
        public void init(){
         //connection need url, username and password
         String url="jdbc:mysql://atlas.dsv.su.se/db_5974722";
         try{
             new com.mysql.jdbc.Driver();
             con = DriverManager.getConnection(url, "usr_5974722", "974722");
         }catch (Exception ex){}
        public void doGet(HttpServletRequest req,HttpServletResponse res)throws IOException, ServletException{
         //get the text fields information     
         String namn=req.getParameter("namn");
         String epost=req.getParameter("epost");
         String hemsida=req.getParameter("hemsida");
         String kommentSQLB.doGet(SQLB.java:42)ar=req.getParameter("kommentar");
         //get the pic as file
         MultipartRequest mreq=null;
         PreparedStatement pstmt1=null;
         PreparedStatement pstmt2=null;
         res.setContentType("text/html");
         String mime=null;
         File file=null;
         File dir = (File)getServletContext().getAttribute("javax.servlet.context.tempdir");
         mreq = new MultipartRequest(req, dir.getAbsolutePath(), 5000000);
         mime= mreq.getContentType("file");     
         file = mreq.getFile("file");
         Statement stmt=null;
         ResultSet rs=null;     
         //first save all the information to the database
         //then go through it and print out all the content
         //both tables have id as key
         try{
             new com.mysql.jdbc.Driver();
             //save the picture
             pstmt2 = con.prepareStatement("INSERT INTO picture(p,type) VALUES ( ?, ?)");
             FileInputStream fis = new FileInputStream(file);
             byte[] data=new byte[(int) file.length()];
             fis.read(data);
             fis.close();
             pstmt2.clearParameters();
             pstmt2.setBytes(1, data);
             //another way to insert blob
             //pstmt2.setBinaryStream(3,fis, (int)file.length());
             pstmt2.setString(2,mime);
             pstmt2.execute();
             //picture saving done
             //save other text information
             pstmt = con.prepareStatement("INSERT INTO guestbook (NAME,TIME,EPOST,HEMSIDA,KOMMENTAR) VALUES(?,?,?,?,?)");
             pstmt.clearParameters();
             pstmt.setString(1,namn);
             pstmt.setString(2,new java.util.Date().toString());
             pstmt.setString(3,epost);
             pstmt.setString(4,hemsida);
             pstmt.setString(5,kommentar);
             pstmt.execute();
             //text informatin saving done
             //pstmt1=con.prepareStatement("DELETE FROM picture");
             //pstmt1.execute();
             //print the guestbook information and invoke the SQLC servlet
             //to display picture
             String queryprint="SELECT * FROM guestbook";
             rs=pstmt.executeQuery(queryprint);
             PrintWriter out=res.getWriter();
             out.println("<HTML><HEAD><TITLE>guestbook</TITLE></HEAD>");
             out.println("<BODY>");
             while ( rs.next() ) {
              String name = rs.getString("id");
              out.println("TID:  "+ rs.getString("TIME"));
              out.println("<br>");
              out.println("FR�N: ");
              out.println("<a href=\"rs.getString(HEMSIDA)\">"+rs.getString("NAME")+"</a>");
              out.println("<br>");
              out.println("e-post");
              out.println("<a href=\"mailto:"+rs.getString("EPOST")+"\">"+rs.getString("EPOST")+"</a>");
              out.println("<br>");
              out.println("Kommentar:  "+rs.getString("KOMMENTAR"));
              out.println("<br><br><br>");
              out.println("<br>");
              out.println("<img src=\"http://localhost:8080/ip/servlet/SQLC?id=" + name+ "\">");
             out.println("</body>");
             out.println("</html>");
                rs.close();
             pstmt.close();
                con.close();
         catch (Exception e){
             e.printStackTrace();
    }

    do you send the mulitipart MIME type like this ?
    <FORM action="youraction"
           enctype="multipart/form-data"
           method="post">

  • HT4528 messaging i sent from my iphone4 my daughters iphone 4s gets the responce anybody thats sends me a message she recieves how can i fix this

    messages sent to my iphone 4 gets recieved by my daughters 4s has been only happining for 2 weeks

    RECEIVING MESSAGES INTENDED FOR OTHER DEVICES
    This occurs if you are sharing the same Apple ID for imessages.
    If you are receiving imessages intended for other devices you can fix this by going to Settings>Messages>Send & Receive and do one of the following:
    Uncheck the email address shown under "You can be reached by iMessage at" on both devices if they are iPhones; or
    On one of the devices go to Settings>Messages>Send & Receive, tap the Apple ID, sign out, then sign in with a different Apple ID.  Note: you can continue to share an Apple ID for the iTunes & App store for purchasing if you wish; it does not need to be the same as the ID you use for iMessage, FaceTime, iCloud and other services.
    To prevent merging of your calendars and contacts when syncing calendars and contacts if you are using the same Apple ID for the iCloud account, be sure to set up separate iCloud accounts on each phone with separated IDs.  Remember that if you change your ID in iTunes & App store, that apps and other purchased content is  forever linked to the ID that was used to download the apps and the apps  can only be updated with the ID that was originally used to download them.  To download content purchased previously downloaded with a particular ID then that ID needs to be used to download past purchases.  If you want all apps to be connected with the same ID you need to delete those apps downloaded with the old ID and download them again with your current and if the apps in question were paid apps then you need to pay again.
    Read http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    If you wish to share an Apple ID with family members then read: http://www.macstories.net/stories/ios-5-icloud-tips-sharing-an-apple-id-with-you r-family/

  • I have a iPhone 3GS but the volume keeps going down till its off when playing songs. Help!, I have a iPhone 3GS but the volume keeps going down till its off when playing songs. Help!

    I have a iPhone 3GS but the volume keeps going down till its off when playing songs. Help!, I have a iPhone 3GS but the volume keeps going down till its off when playing songs. Help! I didn't have this problem before. I am listening via the speakers of my stereo. I have done that before but never had a problem like this before.

    Thought it had worked but soon found out it had not.
    after further days of trying finally, solved it for me Yesterday.
    turned off notifications when locked, and bingo, wow.
    i have not turned off iCloud but location services are also off.
    best thing to do I found was keep checking your usage, settings, general, usage, and flip down to bottom, if the standby and usage are similar there is a problem, if there is a big difference then all is ok. Just keep turning things off and on until the difference is very apparent.
    something on my phone was keeping the phone alive even when turned off, and I think this was the phone repeatedly trying to update continually.
    to me this is definitely down to the iOS, my wife has exactly same phone and iOS but hers doesn't have any problem and the battery lasts for days.
    the guy at the Genius Bar told me to restore the phone via iTunes, not iCloud. This is because iCloud remembers the exact info from your phone and simply reinstates it when you restore, and this includes the iOS too.
    when I get home from holidays that's what I'll do, or wait for iOS 8 in few weeks. But I'm so pleased I finally made it work, I was beginning to think ditch the phone and buy Samsung.
    anyway anyone out there please try my final solution and let me know if it works for you?

  • I plugged my iphone in for the first time to my itunes account and it now reads that this device is already  associated with an apple id.  what does that mean.  i only have one apple id. and do i chose cancel or transfer?

    i plugged my iphone in for the first time to my itunes account and it now reads that this device is already  associated with an apple id.  what does that mean.  i only have one apple id. and do i chose cancel or transfer?

    Hello there, Shellywms09.
    The following Knowledge Base article points out why you are receiving that message on your iPad:
    iTunes Store: Associating a device or computer to your Apple ID
    http://support.apple.com/kb/ht4627
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro

  • I have an iphone 5, and the battery is so bad! I was just wonder if anyone had used an external battery before? are they good? can they do damage to your phone? what's the best one to get? any help would be great thanks!

    I have an iphone 5, and the battery is so bad! I was just wonder if anyone had used an external battery before? are they good? can they do damage to your phone? what's the best one to get? any help would be great thanks!

    I'd just like to say that ahs70's post on Dec 1, 2013 at 1:17am on Pg. 9 worked for me as well: https://discussions.apple.com/thread/5338609?start=120&tstart=0
    If your iPhone's battery is acting up you need to determine if it's a software issue or a hardware/battery issue.  To do that, after syncing your iPhone, erase/hard reset all data and settings from your iPhone to what it was from the factory as new.  This can be found in Settings/General/Reset/Erase All Content and Settings.  Then test it out for a day or two.  If it's still acting up then it's likely a hardware issue and you will need to get your battery replaced.  If your warranty is done than check out this link to get a battery kit to replace your iPhone battery yourself:  http://www.ifixit.com/Store/iPhone/iPhone-5-Replacement-Battery/IF118-001#produc tDescription
    If your iPhone is now working properly after hard resetting it than it's most likely a software issue.  This battery issue only started after upgrading to the new iOs7, so it is obviously related to the update not properly installing itself.  What has worked for me and many others is to manually update to iOS 7.0.4 using the full downloaded version of the update which is about 1.32 Gigs.
    But first you need to find out what model of iPhone you have, click here to determine if it's GSM or CDMA: http://support.apple.com/kb/HT3939?viewlocale=en_US&locale=en_US
    Then go here and scroll down to download the iOS 7.0.4 complete update for your device:  http://www.downloadios7.org/download-ios-7-0-4-ipsw-file.html
    Then scroll up on the download page and follow the instructions of updating your iPhone manually following the instructions below:  "IPSW with iTunes"
    And your done.
    Problem solved.
    I only posted this because it was a very frustrating problem that no one really seemed to figure out a solution for.
    I hope this helps.
    Emile Beaulieu

  • We have 2 iphone 5s sharing the same apple ID.  When browsing Safari on one phone it automatically sends a link to that page to the other phone.  How do we turn this off please?

    We have 2 iphone 5s sharing the same apple ID.  When browsing Safari on one phone it automatically sends a link to that page to the other phone.  How do we turn this off please?

    @apup80
    It sounds that you are running the same iCloud account with two phones.  I recommend you to create a different iCloud account and you should be all set.
    Creating an iCloud account: Frequently Asked Questions - Apple Support
    iCloud: Remove your device from Find My iPhone

  • HT201269 I have an iphone 4 and the screen is jumpy and after a liitle while the colors change, has anyone else had this happen and what did you do (if anything) to fix it?

    I have an iphone 4 and the screen is jumpy and after a liitle while the colors change, has anyone else had this happen and what did you do (if anything) to fix it?

    Read: http://support.apple.com/kb/TS4436
    It is pretty short so here is the entire text:
    Symptoms
    A purplish or other colored flare, haze, or spot is imaged from out-of-scene bright light sources during still image or video capture.
    Resolution
    Most small cameras, including those in every generation of iPhone, may exhibit some form of flare at the edge of the frame when capturing an image with out-of-scene light sources. This can happen when a light source is positioned at an angle (usually just outside the field of view) so that it causes a reflection off the surfaces inside the camera module and onto the camera sensor. Moving the camera slightly to change the position at which the bright light is entering the lens, or shielding the lens with your hand, should minimize or eliminate the effect.
    Which is exactly what eelw wrote.
    No one on Apple Support Communities has authority to speak on behalf of Apple, unless their avatar is accompanied by this Apple image:
    ... identifying themselves as Apple employees.

  • I have 2 iphones syncing on one computer and on the same apple ID. Before i updatad my Itunes to the last available update and my Iphones to 5.01 i had no problem draging jpg. and mp3 files into my iphones DCIM folder (the picture folder that opens when c

    I have 2 iphones syncing on one computer and on the same apple ID.
    Before i updatad my Itunes to the last available update and my Iphones to 5.01
    i had no problem draging jpg. and mp3 files into my iphones DCIM folder (the picture folder that opens
    when conecting to Itunes). Since my updates Itune wont let me drag and drop any files' even pictures that
    were taken with my Iphone on 4.3.3.
    Please help as we have no itunes music in Israel, only apps and i cant copy any of my old music from my computer
    to my iphones.
    If it helps, i am using a pc with 32 bit windows 7.
    Other from the obove Itunes works fine and does sync pictures from my computer to my Iphone from "my pictures" folder.
    Thank you for your time
    Yoni Bliss
    [email protected]

    The title of my initial post is a bit misleading. I already took a chance deleting one of the iPhones, hoping if I deleted the wrong one, I can still reauthorize it (all with the same Apple ID acct, so not subject to 90-day waiting period, right?) The iTunes database just updated itself, and it says I have 4 "devices" "in the Cloud", but 5 "computers" associated w my account. How can I find out what computers are associated? Isn't there a list I can see? I dont have a clue what computers they might be. If I use the  "Deauthorize All" option, is it a pain to add them all back in. I assume I would have to log in from each computer to reauthorize each one. Would I have to be running the newest OS or version of iTunes to reauthorize? I think I have a PowerBook G4 Titanium with an older OS and iTunes. I'd like to keep that authorized, if possible.

  • Phone and my husbands iphone ring at the same time when only one of us is being called. How can I stop this from happening?

    Both my iphone and my husbands iphone ring at the same time when only one of us is being called. How can I stop this from happening?

    This post has already been answered. Why are you plugging your own site with an answer that has already been given? Not to mention that the information you are handing out is incorrect. There is no bug, there is no patch, and no one needs to delete any email addresses. If you take the time to read the posts with the correct answers, you will see that the solution is totally different than the erroneous one you have posted.
    GB

  • I have an apple id but the email address that they send a reply to is one I no longer use. How do I change this in my profile? It does not show up as an add'l email address to delete

    I have an apple id but the email address that they send a reply to is one I no longer use. How do I change this in my profile? It does not show up as an add'l email address to delete

    "The reply" as in the Rescue email to reset your Security Questions? If so, then you will have to contact iTunes Support directly to get them reset:
    ACCOUNT SECURITY CONTACT NUMBERS
    Cheers,
    GB

  • I have 3 iphones and sync the first one is ok but if i try to sync any other ones they sync with all with the samy stuff

    i have 3 iphones and syncing the first one is good but if i try to sync any other one is sync up with all the same stuff as the first one

    http://support.apple.com/kb/ht1495

  • HT201412 I have restored my iphone 5 for the second time now, and it keeps crushing after 1hour of having completely restored it through iTunes. What am I supposed to do?

    I have restored my iphone 5 for the second time today, and it keeps crushing after 1hour of having completely restored it through iTunes. What am I supposed to do? I deleted some apps I had recently installed, even changed the background refresh. What else?

    Well... it said iPhone Recovery Mode, and I pressed 'Restore iPhone' after which it asked me if I am sure that I want to restore the phone to factory settings, I pressed 'yes'. After 20-30min it eventually came to the 'Hello' page where I had to sign in with my Apple ID, and then saw the icons of each of my apps. which one by one turned from grey to their full colour as they downloaded one by one. After 1-2 hours of having completed all the app downloads, I found the phone shut and could not turn it on with the normal way. And this happened after 2 restore sessions. Is there something I need to do, or I need to request a replacement. I have had the phone for 11months, and crushing problems begun on the 13 of Nov, which was a few days after I updated to iOS7. But today is already 48hours since I have not been able to use my iPhone properly.

Maybe you are looking for