Problem using earphones with iPhone 4S

I cannot play music on my iPhone 4S through earphones - I only get static even though the iPhone speaker works fine. The same earphones work fine with my iPod and other stereo inputs and I've tried multiple earphones with the same result. This just started to happen today.  The phone is only about 8 or 9 months old but Apple wants to charge me to ask a question about this. What might cause the problem?

If the same earphones work fine with your iPod and with other stereo inputs and the same with multiple earphones, it sounds like your iPhone has a hardware problem with the earbuds port.
Apple offers free telephone service for 90 days after the purchase date and for a full two years after the purchase date with the AppleCare extended warranty. If not, they would be fielding all sorts of non-critical calls such as how do I turn my iPhone off that are covered in the user guide and all over the internet with a simple Google or internet search along with plenty of info available here.
AppleCare will request the $29 fee or whatever the amount is upfront and if it turns out to be a problem that cannot be resolved by any other means besides an exchange under warranty, the fee will be credited.
Or you can make an appointment at an Apple store if there is one nearby where there is no charge to inspect, test, and run a hardware diagnostic and if an exchange under warranty is required, you walk out with the exchange.

Similar Messages

  • How do I use earphones with iphone

    I am a grandmother who doesn't use all the apps that are on the iphone. I am planning a nice vacation where I will be flying quite a lot. Please tell me how to use noise cancelling earphones with my iphone. If I download an audio book, will I be able to listen to that on the plane. I also have an ipad, can I use the earphones with that as well. I had such a bad experience on my last trip with screaming babies on international flights. Thanks

    Please tell me how to use noise cancelling earphones with my iphone."
    Plug the earphones into the iphone.  Put the headphones over your ears.
    " If I download an audio book, will I be able to listen to that on the plane. "
    Yes.
    " I also have an ipad, can I use the earphones with that as well."
    Yes.

  • Mic is too sensitive, calls constantly cut out. People tell me y loud, and it sounds like I'm in a tunnel. Any background noise, and call is completely cutting out. This occurs all the time, but more so using earphones with in cord mic.

    I have iphone5 ios6 and the Mic is too sensitive, and calls constantly cut in and  out. People tell me there is loud background noise and it sounds like I'm in a wind tunnel. Any background noise, and call completely cuts in and out and sounds as if call is dropping. This occurs all the time, but more noticeable while using earphones with in cord mic. I never had this problem with my old iphone4. Has anyone experienced this, and is there a setting that can correct this problem?

    Same problem for me.  So bad in fact that I can't really use my headphones for calls.  I have tried it with several sets of headphones.  My primary are the Bang and Olufsen headphones which were great with the previous iphone 4 and 3. 
    Apple please address this issue.

  • Problem Using Multiple With Statements

    I'm having a problem using multiple WITH statements. Oracle seems to be expecting a SELECT statement after the first one. I need two in order to reference stuff from the second one in another query.
    Here's my code:
    <code>
    WITH calculate_terms AS (SELECT robinst_current_term_code,
    CASE
    WHEN robinst_current_term_code LIKE '%60' THEN robinst_current_term_code - '40'
    WHEN robinst_current_term_code LIKE '%20' THEN robinst_current_term_code - '100'
    END first_term,
    CASE
    WHEN robinst_current_term_code LIKE '%60' THEN robinst_current_term_code - '100'
    WHEN robinst_current_term_code LIKE '%20' THEN robinst_current_term_code - '160'
    END second_term
    FROM robinst
    WHERE robinst_aidy_code = :aidy)
    /*Use terms from calculate_terms to generate attendance periods*/
    WITH gen_attn_terms AS
    SELECT
    CASE
    WHEN first_term LIKE '%60' THEN 'Fall '||substr(first_term,0,4)
    WHEN first_term LIKE '%20' THEN 'Spring '||substr(first_term,0,4)
    END first_attn_period,
    CASE
    WHEN second_term LIKE '%60' THEN 'Fall '||substr(second_term,0,4)
    WHEN second_term LIKE '%20' THEN 'Spring '||substr(second_term,0,4)
    END second_attn_period
    FROM calculate_terms
    SELECT *
    FROM gen_attn_terms
    <code>
    I get ORA-00928: missing SELECT keyword error. What could be the problem?

    You can just separate them with a comma:
    WITH calculate_terms AS (SELECT robinst_current_term_code,
    CASE
    WHEN robinst_current_term_code LIKE '%60' THEN robinst_current_term_code - '40'
    WHEN robinst_current_term_code LIKE '%20' THEN robinst_current_term_code - '100'
    END first_term,
    CASE
    WHEN robinst_current_term_code LIKE '%60' THEN robinst_current_term_code - '100'
    WHEN robinst_current_term_code LIKE '%20' THEN robinst_current_term_code - '160'
    END second_term
    FROM robinst
    WHERE robinst_aidy_code = :aidy),
    /*Use terms from calculate_terms to generate attendance periods*/
    gen_attn_terms AS
    SELECT
    CASE
    WHEN first_term LIKE '%60' THEN 'Fall '||substr(first_term,0,4)
    WHEN first_term LIKE '%20' THEN 'Spring '||substr(first_term,0,4)
    END first_attn_period,
    CASE
    WHEN second_term LIKE '%60' THEN 'Fall '||substr(second_term,0,4)
    WHEN second_term LIKE '%20' THEN 'Spring '||substr(second_term,0,4)
    END second_attn_period
    FROM calculate_terms
    )Not tested because there are no scripts.

  • Problem using Toplink with JUnit

    Hi,
    I have a problem using Toplink with JUnit. Method under test is very simple: it use a static EntityManager object to open a transaction and persists data to db. When I invoke the method from a test method, it gives me the exception:
    java.lang.AssertionError
         at oracle.toplink.essentials.ejb.cmp3.persistence.PersistenceUnitProcessor.computePURootURL(PersistenceUnitProcessor.java:248)
         at oracle.toplink.essentials.ejb.cmp3.persistence.PersistenceUnitProcessor.findPersistenceArchives(PersistenceUnitProcessor.java:232)
         at oracle.toplink.essentials.ejb.cmp3.persistence.PersistenceUnitProcessor.findPersistenceArchives(PersistenceUnitProcessor.java:216)
         at oracle.toplink.essentials.internal.ejb.cmp3.JavaSECMPInitializer.initialize(JavaSECMPInitializer.java:239)
         at oracle.toplink.essentials.internal.ejb.cmp3.JavaSECMPInitializer.initializeFromMain(JavaSECMPInitializer.java:278)
         at oracle.toplink.essentials.internal.ejb.cmp3.JavaSECMPInitializer.getJavaSECMPInitializer(JavaSECMPInitializer.java:81)
         at oracle.toplink.essentials.ejb.cmp3.EntityManagerFactoryProvider.createEntityManagerFactory(EntityManagerFactoryProvider.java:119)
         at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:83)
         at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:60)
         at it.valerio.electromanager.model.EntityFacade.<clinit>(EntityFacade.java:12)
         at it.valerio.electromanager.business.ClienteBiz.insertIntoDatabase(ClienteBiz.java:36)
         at it.valerio.electromanager.test.model.ClienteTest.insertDBTest(ClienteTest.java:30)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.junit.internal.runners.TestMethodRunner.executeMethodBody(TestMethodRunner.java:99)
         at org.junit.internal.runners.TestMethodRunner.runUnprotected(TestMethodRunner.java:81)
         at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34)
         at org.junit.internal.runners.TestMethodRunner.runMethod(TestMethodRunner.java:75)
         at org.junit.internal.runners.TestMethodRunner.run(TestMethodRunner.java:45)
         at org.junit.internal.runners.TestClassMethodsRunner.invokeTestMethod(TestClassMethodsRunner.java:66)
         at org.junit.internal.runners.TestClassMethodsRunner.run(TestClassMethodsRunner.java:35)
         at org.junit.internal.runners.TestClassRunner$1.runUnprotected(TestClassRunner.java:42)
         at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34)
         at org.junit.internal.runners.TestClassRunner.run(TestClassRunner.java:52)
         at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:38)
         at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)
    Where is the problem???
    Regards,
    Valerio

    EntityFacade class is very simple and it uses a static EntityManager object. Here the code:
    public class EntityFacade {
         private static EntityManager em = Persistence.createEntityManagerFactory("ElectroManager").createEntityManager();
         private static Logger logger=Logger.getLogger(EntityFacade.class);
         public static void insertCliente(Cliente c)
              logger.debug("Inserisco cliente nel db: " + c);
              em.getTransaction().begin();
              c.setId(getNextIdForTable("Cliente"));
              em.persist(c);
              em.getTransaction().commit();
    If I call the method from inside a main it works well, so I think the problem is not the classpath neither the URL in the persistence.xml. However the URL is:
    <property name="toplink.jdbc.url" value="jdbc:derby:c:/programmi/ElectroManager/db/electroManager"/>
    I use the latest build version of TopLink.
    Thanks.

  • Any Problems using SSL with Safari and the move with Internet explorer to require only TLS encryption.

    Any Problems using SSL with Safari and the move with Internet explorer to require only TLS encryption.

    Hi .
    Apple no longer supports Safari for Windows if that's what you are asking >  Apple apparently kills Windows PC support in Safari 6.0
    Microsoft has not written IE for Safari for many years.

  • Problem using ViewObject with bc4j:table

    Hello !!
    This is the query of my ViewObject:
    select * from speiseplan order by jahr desc, kw desc;
    and everything works fine in the BC4J tester:
    jahr kw
    2003 52
    2003 7
    2003 3
    2002 51
    But in my uix page the rows are not correctly sorted:
    jahr kw
    2003 3
    2003 7
    2003 52
    2002 51
    What's going wrong here?
    Thanks for your help.
    Regards,
    Mareike

    Duplicate post.
    Original problem using ViewObject with <bc4j:table>

  • Can't connect to skype, get invalid port,  using laptop with iphone as router

    can't connect to skype, get invalid port,  using laptop with iphone as router

    can't connect to skype, get invalid port,  using laptop with iphone as router

  • Using wifi with iphone 4

    When using wifi with iphone 4 does it use up your data allowance? Also when using wifi with iphone 4 does your phone automatically detect the wifi present and uses the wifi or o you have to physically turn on the wifi inorder not to use up data allowance?

    Wifi does NOT use plan minutes or amounts - it is wholly independent of your data plan.
    Wifi cannot connect if turned off, so yes, it must be on to connect. And, you may have to log on to a network if you have never done so before (it can remember networks once connected the first time, and then will automatically reconnect when next in range).

  • Can we use siri with iphone 4

    may we use siri with iphone 4

    worse than julian made it sound.  Siri was actually disabled to run on the iphone 4 when the iphone 4S was released.  I had been using it and now I cant unless I buy the newest phone.  ever heard of planned obsolescence?

  • Poor sound reproduction using earphones with a 3 section jack plug

    Hello
    I have found that music, both orchestral and vocal, reproduces almost perfectly when I use earphones that have a 4 section jack-plug, as the ones that were supplied with my iPod touch have. However, the orchestral section is prominant whilst the the vocal section is almost inaudible when I use earphones with a 3 section jack-plug, which I bought recently and were sold marked "for use with iPod touch 4". 
    To make that clearer -- a 4 section jack plug has three plastic seperator discs on the shaft of the jack plug, whilst a 3 section jack plug has 2 seperators.
    Is this normal or is my iPod touch faulty?
    Thanks in advance

    Not normal.
    - Try cleaning out/blowing out the headphone jack. Try inserting/removing the plug a dozen times or so.
    - Could be a bad headpohone jack
    -  Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • Problems using iCloud with Mountain Lion on iMac8,1

    problems using iCloud with Mountain Lion on iMac8,1 - about 5J old - iMac gets slower and slower - total free memory is used in some minutes - no more reaction on input

    Download > http://codykrieger.com/gfxCardStatus Open it and select Integrated Only. It's a bug with NVIDIA graphic cards

  • Problems Using Viber with new iPhone 4S

    When I try and use VIber with my new iPhone is says push notifications are not enabled, even though I've enabled them. I've also tried deleting and reinstalling viber several times, along with restarting the phone. Is anyone else having the same problem and does anyone have any suggestions of something else I could do?

    Hi,
    This is a member of Viber's development team.
    @libbyfromchristchurch - Please check: http://helpme.viber.com/index.php?/Knowledgebase/Article/View/38/0/push-notifica tions-for-iphone---how-to-enable
    @quyenfromseattle - This is a known issue which will be resolved shortly. Make sure that you stay current with our version updates.
    It may help to change 'banners' to 'alerts' on Viber's Push Notification settings as a temporary workaround.
    Thank you for your patience!

  • Problems sending emails with iPhone 3G and outlook exchange

    I have a problem sending email with exchange. Receiving and answering mail works fine and calender updates work fine. However when I initiate an email from the phone it syncs and ends up in the sent folder in the computer but never reaches the recipient. I have tried this many times with different recipients and phones. It only happens from my iphone and ipad. Any suggestions?
    Any help much appreciated

    The iPhone you returned is still syncing against your server and locking out your account. Someone possibly has access to your mail data. I'd recommend having your Exchange Administrator install the Microsoft Exchange Server ActiveSync Web Administration Tool (http://www.microsoft.com/downloads/details.aspx?FamilyID=E6851D23-D145-4DBF-A2CC -E0B4C6301453&displaylang=en) and attempt to wipe/delete/block that other iPhone.
    Message was edited by: ethanm

  • Problem using ipod with itunes 5.0.1

    Could anyone help me?? I'm having serious problems using my ipod mini with my "just downloaded" itunes 5.0.1.
    it says that my comunication software with ipod is not correctly installed and that i have to reinstall itunes again. i did it the problem is always there. what can i do?? can someone help me??

    Man, it seems that iTunes 5.whatever has gotten us all a little hot under the collar. I'm back up and running...this is what I did...I hope it helps some of you out.
    1) created a new folder in MyMusic and copied everything from my iTunes library to the new folder. I then tested a few songs to make sure they still played (you never know)
    2) I deleted iTunes using the control panel selection Add/Delete programs. I emptied the recycle gin and then did a search to see that iTunes was no longer there.
    3) I went to filehippo.com to download iTunes 4.8 (my original disks are packed (Thank you to poster Allison for the filehippo.com suggestion).
    4) I copied all my songs back into iTunes from where I had stored them in the new folder I created in MyMusic)
    5) I connected the iPod Mini and opened iTunes and darn if it STILL didn't recognize the iPod
    6) I did a restore on the iPod
    7) I reconnected the iPod and had to reregister it and Voila! it worked again!!!!
    Whatever the new features were in ver. 5.01, they were NOT worth the hassle I've experienced over the past two weeks. I'll stick with version 4.8 for awhile.

Maybe you are looking for

  • BufferedImage creation slow in JDK 1.4.2

    Hi, The creation of BufferedImage of size 400x400 takes 156ms in JDK1.4.2. It used to take less than 10ms in JDK1.3.1. Image image = new BufferedImage(400, 400, BufferedImage.TYPE_INT_ARGB); In JDK1.4.2, for sizes 363x363 and above, it takes 156ms an

  • HT5654 IPHONE 5 will not restore

    iphone will not restore from backup after updating

  • Condition Type for PO Input Tax

    Good day! I have created a PO but the Input tax does not appear in the Condition tab. I want to change the condition type code but it is not editable. How will I be able to change the condition types for my PO? Thank you.

  • Lockbox issue - Very urgent....

    Hi all, If a payment from the lockbox file is erroneously put ‘On account” for a customer since it was unprocessed and later the user has realized that the payment does not belong to that customer also it is not related to any customer so, he wants t

  • How to install Grid Control 10g Release 3?

    Hello, I need install Grid Control 10g Release 3 for Linux x86_64 on SUSE 9, and I need some tips about this instalation. I need registry 3 database, 1 DB is 10g and the others are in 9.2. Can I help me? Thank's