Vibration does not stop near my ear

I think this happens after the iOS 8 updates.
After pressing the green button for receiving a call, the phone keeps vibrate a while and does not stop even when it's close to my ear.
This is really annoying!
I don't know if it's a problem of the proximity sensor of my phone or not. Any suggestion?

You may need to perform a software repair using PC Companion.The process will erase all internal memory.You might need to charge your device for about 1-2 hours before so the device has at least 60% battery.
Make sure the device is not connected to computer or laptop and turned off (sometimes you have to press power button and volume up until the device vibrates 3 times or on some devices you have to press the small button near the SIM tray or on the back of the device).
Open PC companion->support zone->phone/tablet software update->repair my phone/tablet blue highlighted.Follow the steps given,do not connect your phone until prompted to press volume down while plugging USB cable. If PC companion does not start the repair process, you might need to run it in compatibility mode with Windows 7 (in some cases XP).
All we have to decide is what to do with the time that is given to us - J.R.R. Tolkien

Similar Messages

  • Music does not stop playing when I disconnect from USB in car

    When iphone is connected to car stereo, music does not stop playing when I disconnect the usb cable. If someone is calling me and I unplug from USB, all I hear in my ear is music...I cannot hear the person calling me. Not sure what's happened but it never used to do this. Any suggestions?

    Nseries phones have behaved this way since forever.
    I don't know any way to change this. Same behavior happens if you unplug your headset or headphones.
    640K Should be enough for everybody
    El_Loco Nokia Video Blog

  • I have a new Macbook pro, about 2 months old, and at times running video, the fans starts and does not stop. how do you get it to stop.

    I have a new Macbookbook, about 2 months old, and at times running video, the fans starts and does not stop. how do you get it to stop. Also i am thinking once the video is done  the fan should be slowing down and getting quiet on its own.

    Your fan(s) will run at high speed (i.e., loudly) while video is playing, and you can't get around that.
    If your fans are not slowing down within 2-4 minutes after CPU- and/or GPU-intensive usage ends, and the application that was showing the video is still running, Quit that application. (In fact, if you're accustomed to Windows, you may not realize that simply closing a Mac application's window does not quit the application. You still need to use the Quit command in the application-name menu. There will always be a bright dot beside or below the application icon in your Dock for each application that is open.) Quit the ones you aren't using, and see whether that allows the fans to slow down without restarting the machine. If that doesn't do the trick, reset the SMC:
    http://support.apple.com/kb/HT3964?viewlocale=en_US&locale=en_US

  • I have my Calendar app syncing with iCloud.  Every time I open it it says, "Moving Calendars to Server Account..."  It runs and runs and does not stop.  As a result, I cannot access my calendars.  Please help.

    I have my Calendar app syncing with iCloud.  Every time I open it it says, "Moving Calendars to Server Account..."  It runs and runs and does not stop.  As a result, I cannot access my calendars.  Please help.

    I have the same problem, I tried the solution of Dr Cox but that didn't work as he said go to system preference then mail, contacts etc. but I don't have that.  Can someone help?
    Elaine

  • HP Officejet Pro 8500A: Initial Checking Printer Procedure does not stop

    I have a big problem.
    My printer does not stop to run the "Checking Printer" procedure.
    It tells me: "Open the print-carriage access door, clear the jam, and then touch OK to continue.
    Unfortunately there is no paper inside.
    Pressing OK, the printer continues the procedure and it NEVER stops.
    Switching OFF and ON the power does not help.
    But if you try to print the Auto Test Report it works. The printer prints the report without any problem!!!
    PLEASE HELP ME
    Andrea

    Hi there andrea_lugano,
    This article should cover the issue you are experiencing. Give the steps outlined a shot and let us know if it helps.
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • I needed to install a previously purchased CS6 versus on new computer. To do this, I had to download a version from CC. I will not be using CC. How do I activate Photoshop under my license so that it does not stop working when I am out of communication ra

    I needed to install a previously purchased CS6 versus on new computer. To do this, I had to download a version from CC. I will not be using CC. How do I activate Photoshop under my license so that it does not stop working when I am out of communication range a month from now?

    The CC version will not activate with your perpetual CS6 license. Download the version from here:
    http://helpx.adobe.com/x-productkb/policy-pricing/cs6-product-downloads.html
    Your number should work with this version.

  • Unable to update when executed, table gets lock Execution does not stop Execution even for an hour

    Following is my Query unable to update when Executed table gets lock Execution does not stop even for an hour.
    update Employees 
          set Status = 'Close'
          where statusid IN (select statusid 
                                             from MyView 
                                              where DownloadedDate ='2014-07-27 00:00:00.000'
    here Employee contains 3,00,000 of records and Subquery return 1,50,000 Empid 
    i tried in various ways but not able to solve, statusid  column have no index on,  i tried using cursor but it does not work.
    plz let me know how to solve this Issue, THANKS IN ADVANCE.

    Hello,
    You should better post your question to a more related Forum, like Transact-SQL or SQL Server Database Engine; this Forum is for samples & community Projects.
    Have you checked the execution plan if indexes are used?
    You could update the data in chunks, e.g. 10.000 rows per execution. For this you have to add a TOP clause and a filter to update only those, who are not updated yet.
    update TOP (10000) Employees
    set Status = 'Close'
    where statusid IN
    (select statusid
    from MyView
    where DownloadedDate ='2014-07-27 00:00:00.000')
    AND Status <> 'Close'
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Unable to update, when executed table gets lock and Execution does not stop even for an hour.

    Following is my Query, which unables to update. When Executed, table gets lock and Execution does not stop even for an hour.
    update Employees 
          set Status = 'Close'
          where statusid IN (select statusid 
                                             from MyView 
                                              where DownloadedDate ='2014-07-27 00:00:00.000'
    here Employee contains 3,00,000 of records and Subquery return 1,50,000 Empid 
    i tried in various ways but not able to solve, statusid  column have no index on,  i tried using cursor but it does not work.
    plz let me know how to solve this Issue, Its very Important to get solve as all my further work depends on Updation
    , THANKS IN ADVANCE.

    See also your other thread with the same question:
    http://social.msdn.microsoft.com/Forums/en-US/80243625-fc3b-4ee1-bce1-4adcdbc16c14/unable-to-update-when-executed-table-gets-lock-execution-does-not-stop-execution-even-for-an-hour?forum=sqlserversamples
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Hi help unlock the phone happened after we installed a new programa we can not get the activation password and ID, I know and still does not stop the phone bought in Israel and what documents should be sent to confirm that my phone Please read through the

    hi help unlock the phone happened after we installed a new programa we can not get the activation password and ID, I know and still does not stop the phone bought in Israel and what documents should be sent to confirm that my phone Please read through the help

    What I am saying is ..........
    The iPhone HAS to be active making calls on the UK carrier network for the carrier to identify as "theirs" and therefore eligible for the Carrier to unlock
    The way to achieve this is to use a PAYG sim making and receiving calls to establish a customer relationship  with the Carrier and then follow the Carrier's process to unlock
    With a PAYG it usually means adding a specified (by the carrier ) amount  usually £15 /£20 depending on the carrier
    This is how O2 function and according to Gemma  this is how Vodafone work

  • If you unplug the headphones ipod does not stop the music. How do I fix this?

    If you unplug the headphones ipod does not stop the music. How do I fix this? При отключении наушников ipod не останавливает музыку. Как это исправить?

    What happens if you reset the Nano? To do this, press and hold both the Sleep/Wake and Volume down buttons together long enough for the Apple logo to appear.  Start playing another track, and then pull the headphones out?  Any change?
    I am going to try this out with my 6G Nano later on to see if this functionality does indeed exist on this model. Or perhaps somebody who comes along to this thread can offer an answer.
    B-rock

  • Synchronization does not stops

    Hi all
    After installing MI, MAM etc, during the Synchronization for the data (5000 measurement points), the data comes but the Synchronization does not stops or takes a very long time to stop. Confirmed about the data by tracking the memory and also by restartign the device once the memory is stable, the data exists.
    Similarly while creating measurement documents for 150 docuemtns syn works fine, but for 300 documents the data gets successfully posted but the sync does not stops unitl we manually restart the device.
    We use Symbol 9090 and program memory available is 2 to 3 MB.
    Is it a memory issue??  Did any one had come accross this problem??
    Thanks
    Raj

    Hi Raj
      Surprised that these recomendations doesnt work. Anyway i have one more recomendation which is related to TIME AGENT. If you are using any of the Agent feature, which is made available recently in MI then this could also result in an endless sync. The Time agent which is one of the several Agents, can never have a value TRUE for the History parameter. As for the possible solution,  please change the value of AGENT_HISTORY in the TIME_AGENT parameter set to FALSE and then assign this parameter set to a device configuration which inturn in assigned to a device.  Please test this new scenario with a fresh client installation and not with an already synced client. This should solve this endless problem.
    Or other way of testing this is In the client there is a file named <b><i>agents.properties</i></b> in the MI settings folder. Here there would an entry called TRACE_AGENT#AGENT_HISTORY=TRUE. Please set his value to FALSE. Let me know if this works.
    Best Regards
    Sivakumar

  • Entering values in TableMaintenance,cursor does not stop at error record ?

    Hello,
    Very Good Morning!
    When creating new entries in Table Maintenance, Cursor does not stop at the error record. It display's an error where the error is. But, cursor will skip to the first field of the record.
    Ex : Sales Org, Mater, Sales Obj %, Frist arr date.
    Suppose these are the fields available and I want to create a new entry.
    When i enter incorrect value in Sales Obj %, it is displaying error message saying that i need to enter correct value. But the Cursor is skipping away to the first field Sales Org.
    PLease help what to do...I tried using set cursor. But, I am not sure how to excatly use it and it was not working. 
    Any help will be appreciated.....
    Thanks & Regards,
    Krishna Chaitanya

    Hello,
    This question is not answered.
    I want to close this question.

  • Setting geo.enabled to false does not stop websites from knowing location. Seems to be related to my proxy setting.....Any ideas on how to completely disable this?

    Setting geo.enabled to false does not stop websites from knowing location. It changes based off of what proxy I am using. Is there a way to completely disable this?

    I use Comcast in the Chicago area market and have a problem with the "Opt Out" stopping about once a year or so. It appears as being enabled at the Comcast Opt Out page, but the unresolved addresses are still going to the DNS "domain helper" service.
    What works for me is to turn off the opt out preference, log off from that Comcast account, and close Firefox. When I restart Firefox, log in to Comcast, and then set the pref to "opt out" again - it works as intended and doesn't cause me a problem until it happens like 10 to 12 months later.
    As far as why it seems to affect browsers in a different way, I have no idea. I do have Safari, Opera, and IE 8 installed, in addition to multiple versions of Firefox, but I don't use those other browsers enough to have seen a difference. I am usually opening pages from within Firefox in those other browsers to view the difference, ''or to print something that Firefox screws up in the Print Preview''.

  • Firefox does not stop loading even after the site is loaded and continues as if it is still loading. I have clocked it to 15 minutes, why?

    Firefox does not stop loading even after the site is loaded and continues as if it is still loading. I have clocked it to 15 minutes, why? edit
    Details

    Sorry, I should distinguish between slow loading and manual reloading.
    I understood your problem to be that Firefox never finished loading the page, i.e., some part of the page was loading too slowly.
    By reloading, I meant Ctrl+r (or the reload button), to manually reload the page. You can disregard any cached files and reload all content fresh from the server by adding the Shift key, i.e., Ctrl+Shift+r (helpful when specific sites do not load correctly).
    If the page is automatically reloading itself over and over, that sounds like a completely different problem.

  • Proram RSNAST00 does not stop when scheduled.

    HI experts,
    proram RSNAST00 when scheduled does not stop, its in active status from past 5 days.
    Please provide any possible reason for this issue.
    Regards,
    Jayant.

    Hi shetty,
    just an idea: Output is configured for a certain printer and the printer can not be reached because switched off or not configured correctly. Output can be see in SP01 spooler in status WAITING.
    Regards,
    Clemens

Maybe you are looking for

  • Quicktime animation codec bad playback

    Hello, ever since I updated to the newest version of quicktime, any file using the Quicktime animation codec stutters and freezes on playback. This has happened before, and rolling back to previous versions helped then, but isn't helping now. I've go

  • Problems with integracao of the JDeveloper with Software Configuration Management (S

    1) Error with JDeveloper 9i and Software Configutarion Management (SCM) I have a problem with the JDeveloper 9i integrated with the repositorio 6i (SCM). When I make checkout of a source in java of the repositorio, after that I make the alteration an

  • JNLP Error resource not found...

    Hi All, I am trying to use versioning in a JNLP file. But I get errors when: 1. if I have version="0.8" I get resource not found. If not entered jar found with no issues. 2. If I use __V0.8"  added to the file name the same issue. But if I use _V0.8"

  • Premiere Pro CS5 No Longer Saves Project

    I am working on a Mac OS X Version 10.6.8 with 2 x 2.8 GHz Quad-Core Intel Xeon Processors and 12 GB 800 MHz DDR2 FB-DIMM Memory. I am running Premiere Pro CS5 on this machine. I work for a company who produces 50-100 short, education-based videos fo

  • Iphoto 9.5.1 no codec (mov) slideshow exporting option

    Hi All, When exporting slideshow to .mov, I can't find exporting options. However, I can choose resolution BUT NOT codec/framerate! It was implemented on previous versions, but not here on 9.5.X As I see, Iphoto always exports h.264 at 30fps. Trying