Speacker near the ear doesn't work

I coudn't hear anybody in speacker near the ear in iphone 4... Calls only in Speaker-Mode... I try to remove ios. Had to plug the headphones back in and then take them out again, that didn't solved the problem. what i must doing?

Yes, I solved this problem. I live in Russia and in our country we have own laws. When I found this problem I went to the my apple shop and ask few questions about that. So they said me that I should give my iPhone 4 to the analysis and experts will solve my problem. After 45 days I went to the same shop and he gave me new iPhone 4. So if you want wait and have new iPhone - just do it

Similar Messages

  • My ipod touch 3G the bottom doesn't work. How do i fix it?

    Everything on the top works. From the bottom, its slowly moving up. now i'm not able to slide to unlock it.

    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  It could take well over an hour!  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore, go into Recovery Mode per the instructions here.

  • HT1657 I rented a movie and the sound doesn't work, how do I fix it?, who do I direct to for a complaint?

    Hi, I rented warhorse HD, and the sound doesn't work, my itunes version is 10.6.1(7). How do I fix it or who do I direct to get my money back? Thank you

    I'd report the problem to the iTunes Store.
    Log in to the Store. Click on "Account" in your Quick Links. When you're in your Account information screen, go down to Purchase History and click "See all".
    Find the item that is not playing properly. If you can't see "Report a Problem" next to the entry, click the "Report a problem" button. Now click the "Report a Problem" link next to the item.
    (Not entirely sure what happens after you click that link, but fingers crossed it should be relatively straightforward.)

  • My new iMac has recently had OSX Lion installed on it and now when I start the machine it looks like its updating something every time, and the wireless doesn't work. So I restart and everything is OK - until I have to start up again the next time?

    My new iMac has recently had OSX Lion installed on it and now when I start the machine it looks like its updating something every time, and the wireless doesn't work. So I restart and everything is OK - until I have to start up again the next time - then I have to repeat this again! Any help appreciated.

    I've been having the same issue, but have just discovered something on my own that hasn't been pointed out in any of the forums I've visited.  In what I thought would be a vain attempt to help myself, I went to System Preferences, Users & Groups, and then clicked on Login Items.  I discovered that one of the Items that was listed to open automatically upon login was iTunes Helper and that there was an exclamation point beside it indicating that it was incompatible.  I simply deleted that item and now I don't have the situation you described and my wireless is connected.  Hope this helps!

  • Does anyone else have two Apple IDs? I can't get rid of one of them. It's associated with my iCloud account and I can't fix it. The password doesn't work.

    So, apparently I have two Apple IDs associated with my iPhone. One is an old aol address that got hacked and was shut down. Even aol doesn't recognize the email address anymore, and the password doesn't work. It's associated with my iCloud account, so now I can't access that account. My other Apple ID is with everything associated with my iPhone and everything works just fine. But now I can't get to my iCloud stuff. Has this ever happened to anyone else. The guy at the Apple store says he's never heard of it.

    Does the alert refer to "Local Items?"

  • I have purchased the Adobe Creative Suite 4 and now my first dvd of the software doesn't work anymor

    I have purchased the Adobe Creative Suite 4 and now my first dvd of the software doesn't work anymore. My computer doesn't want to read it anymore. I want to mention that I also tried on some other computers and still the problems continues. How can I solve this? On the Adobe webpage I can't find anymore the download for Adobe CS4. Thanks. Marius Lupu

    You can download the software from http://prodesigntools.com/download-adobe-cs4-and-cs3-free-trials-here.html and can serialize it with the serial number you have.
    NOTE:- READ THE INSTRUCTION PROPERLY TO AVOID ANY ERROR.

  • Count(*) in the loop doesn't work and I really don't know why...

    Hello,
    I can't figure out why the following doesn't work. I cannot debug for I do not have privileges on this server.
    The execution always fails on bolded line. If I substitute the variable with the table name itself it works. The variable is properly populated in each of the iterations as I can see it by using dbms_output package. The small but may be important detail may be I am connected as user A but the tables are in the schema B. However I can list the tables and their columns in all_tab_cols view and there are synonyms made in my schema which allow me to access the B tables without prefixing them.
    I get the error:
    Error report:
    ORA-00900: invalid SQL statement
    ORA-06512: at line 26
    00900. 00000 - "invalid SQL statement"
    *Cause:   
    *Action:
    I ran out of ideas and I do not have access to any of the Oracle instance to be able to debug right now.
    Variable type for v_tables is wrong? I do not have some magic privilege to use execute immediate with variable?
    Oracle server has a bad day today?
    The crap is 11.1.0.7 if it has anything to do with my problem.
    Please help if you can.
    Grzegorz
    declare
    v_number number := 646989;
    v_current_table nvarchar2(50);
    v_itemno number;
    type t is table of nvarchar2(50);
    v_tables t;
    begin
    dbms_output.put_line('Working...');
    select table_name bulk collect into v_tables from all_tab_cols where column_name = 'ITEMNO' order by table_name;
    for i in 1 .. v_tables.count loop
    dbms_output.put_line('Number: ' || i);
    v_current_table := v_tables(i);
    <b>execute immediate 'select count(*) from ' || v_current_table || ' where itemno = :a' into v_itemno using v_number;</b>
    if (v_itemno > 0) then
    dbms_output.put_line('Current table contains specific ITEMNO: ' || v_current_table);
    end if;
    end loop;
    end;

    In SQL Plus run this and see what SQL is your code returning. Then execute the SQL individually.
    set serveroutput on
    declare
         v_number number := 646989;
         v_current_table nvarchar2(50);
         v_itemno number;
         type t is table of nvarchar2(50);
         v_tables t;
         lSqlString varchar2(20000);
    begin
         select table_name
           bulk collect into v_tables
           from all_tab_cols
          where column_name = 'ITEMNO'
          order by table_name;
         for i in 1 .. v_tables.count loop
              v_current_table := v_tables(i);
              lSqlString := 'select count(*) from ' || v_current_table || ' where itemno = :a';
              dbms_output.put_line(lSqlString);
              --execute immediate  lSqlString into v_itemno using v_number;
         end loop;
    end;

  • The left part of the screen doesn't work very well

    The left part of the screen doesn't work very well. It's hard to erase a letter, and impossible to me to insert the "P".
    Does it means that I need to replace the screen? Or there is a other solution?

    Basic troubleshooting steps clearly outlined in the User Guide are restart, reset, restore from backup, restore as new.
    If you've gone through ALL the troubleshooting steps and you're still having the problem, then you most likely have a hardware issue and will need to bring your phone to Apple for evaluation.

  • How can i make a new map on my mail? The way apple has in the manual doesn't work!

    I want to make a new map for my mails, but the way tha apple gives in the manual doesn't work!

    If you mean other folders then you need to create them in your email client e.g. in a browser (which you can only do in IMAP accounts, not POP account) - you can't create new folders in the Mail app itself

  • I have some problem with my computer because when i turn it up, the screen turns in a blue colour and the sound doesn't work and in this way i can't hear anything

    i have some problem with my computer because when i turn it up, the screen turns in a blue colour and the sound doesn't work and in this way i can't hear anything

    Will u help me or not?

  • I need to backup my iPhone, but it is locked and the touchscreen doesn't work

    So I dropped my 3 year old iphone in the toilet and now the touchscreen doesn't work.  I want to backup the information so I can transfer my apps to the new phone, but I have my phone locked and I cannot enter the code because, as I said, the touchscreen doesn't work.  How can I back up my old phone?

    If you back it up using the computer it normally syncs to, you won't be prompted for the passcode. If you have not been syncing it with a computer, then you're pretty much out of luck at this point.

  • Hi, I have a Macbook Air OS X 10.10.3 and the cam doesn't work. How can I fix it?

    Hi, I have a Macbook Air OS X 10.10.3 and the cam doesn't work. How can I fix it?

    How to Troubleshoot iSight - Apple Support

  • How to I set an internal link in a PDF document using Preview?  After setting a link under the Tools/Annotations menu, the link doesn't work and no detailed instructions are provided.

    How to I set an internal link in a PDF document using Preview?  After setting a link under the Tools/Annotations menu, the link doesn't work and no detailed instructions are provided via the Help menu other than it showing the pull-down menu selection to make.

    No.  I am able to use the other features such as underlining, highlighting, adding rectangles and oval and save those changes.

  • In my wife's window, the sound works, when I switch over to my window the sound doesn't work.  I noticed the problem when I went to a YouTube video.  How do I correct this?

    In my wife's window, the sound works, when I switch over to my window the sound doesn't work.  I noticed the problem when I went to a YouTube video.  How do I correct this?

    Hello Kiira Doon,
    The troubleshooting steps detailed below may help get your iPhone's display to function.
    Toggle the ringer switch to see if the unit vibrates. If it does, it could be that iPhone is getting power, but is not displaying any image.
    Try turning iPhone off and then on again.
    While connected to the iPhone charger, try to reset the iPhone.
    If the low-battery screen appears, charge the iPhone.
    My issue is still not resolved. What do I do next?Contact Apple Support.
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Cheers,
    Allen

  • Why the preloader doesn't work in IE 8 but works in FireFox?

    Why the preloader doesn't work in IE 8 but works in FireFox?
    Please see the attached files.  Thanks in advance.

    Why doesn't the preloader work in IE8?
    What's "virtual sandbox"?

Maybe you are looking for

  • Not all songs are getting synced into my iPhone

    Why is this? I have no clue. Only ~200 of my ~500 songs are getting uploaded. Also, what's the best way to store songs in my computer, such that it will not get duplicated on my iTunes and/or iPhone? Currently, I store the song as "Led Zeppelin - Sta

  • ORA-12547 error while creating new database through dbca

    i installed oracle 10g R2 on parallels virtuozzo container. (it is a product similar to openvz and solaris containers) added: oracle version is 10.2.0.1.0 the installation goes off without too much fuss but when i try to create a general purpose data

  • Ipod mini and new itunes please help

    i got my computer cleaned so it wiped out everything but i asked the people to save itunes they said the songs are still there i just have to download the softwhere but i dont have the disk... and i had the old version of itunes. what do i do to gown

  • Urgent: RV_INVOICE_CREATE - With Posting significance

    Hi everyone. I am trying to use the RV_INVOICE_CREATE and RV_INVOICE_DOCUMENT_ADD to create a billing doc. Both these function modules have a parameter WITH_POSTING. 1. Can anyone tell me what is the significance of this parameter. 2. What are the po

  • Lumia 620 - How to play random tracks?

    Uploaded all my albums to my phone. Cant see an option for the phone t randomly play any track within my whole music library.  Is there one? I can get it to randomly pick songs within a album but not from my whole library.  When I go for  run I like