Cant end call :(

Good afternoon. I bought my iphone 4 about 2 months back and updated to iOS5 about 2 weeks ago. I dunno if it's due to that but since last week, whenever i make a call, i wont hear it ringing and when i end it, it takes AGESS to end that I just click the home button. Also, for some calls like when i need to get in contact with my service provider, i cant press the call button. I went to ask them and the guy pressed "reset all settings" and it gets okay but after a while, its back to the original problem and i keep having to reset it all the time. HELP

Try to reset all Skype settings.
Quit Skype or use Windows Task Manager to kill any Skype.exe process. Go to Windows Start and in the Search/Run box type %appdata% and then press Enter or click the OK button. The Windows File Explorer will pop up. There locate a folder named “Skype”. Rename this folder to something different, e.g. Skype_old.
Next go to Windows Start and in the Search/Run box type %temp%\skype and then press Enter or click the OK button. Delete the DbTemp folder.
Restart Skype.
N.B. If needed, you will still be able to re-establish your call and chat history. All data is still saved in the Skype_old folder.

Similar Messages

  • Cant end calls :(

    Good afternoon. I bought my iphone 4 about 2 months back and updated to iOS5 about 2 weeks ago. I dunno if it's due to that but since last week, whenever i make a call, i wont hear it ringing and when i end it, it takes AGESS to end that I just click the home button. Also, for some calls like when i need to get in contact with my service provider, i cant press the call button. I went to ask them and the guy pressed "reset all settings" and it gets okay but after a while, its back to the original problem and i keep having to reset it all the time. HELP

    do you have any stickers on the front?
    you could also be holding it a certain way that your covering the sensors
    look just above the screen at the top left and you will see 3 brown dots if you cover those in a call the screen sleeps to save battery cause it thinks its at your ear you could be covering these dots whatever way your are holding the phone preventing the phone from waking from sleep

  • Ever since the ios8 updates i cant do calls when i need to or when someone tries to call me or facetime me i would try to accept and it would say connecting or end it. like *** it screwed up my phone. and my apps always crash

    ever since the ios8 updates i cant do calls when i need to or when someone tries to call me or facetime me i would try to accept and it would say connecting or end it. like *** it screwed up my phone. and my apps always crash

    The process may vary among phones, but on the Bionic:
    Power down phone
    Hold volume up/down & power simultaneously
    Use volume down to navigate to 'Recovery', use volume up to select
    Should see screen with triangle and exclamation point next to an Android
    Press volume up/down simultaneously
    Use volume rocker to navigate to 'wipe cache' and use power button to select
    Once finished, use volume rocker to navigate to 'reboot system now' and use power button to select

  • Why cant I call a getResultSet method more than 1

    Why cant I call the getRSS method more than 1 time from my page?
    I have a class called methods class, here is the code:
    public class methodsClass {
        public java.sql.Connection objConn = null;
        public String query = null;
        public java.sql.PreparedStatement statement = null;
        public java.sql.ResultSet objRS = null;
        /** Creates a new instance of methodsClass */
        public methodsClass() {}
         public ResultSet getRSS(String sql)
            String strSQL = sql;
            try
                Class.forName("oracle.jdbc.driver.OracleDriver");
                objConn = java.sql.DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:CCD","system", "Abcd1234");
                statement = objConn.prepareStatement(strSQL,ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
                objRS = statement.executeQuery();
            catch (Exception e)
                System.err.println("Error in getRSS method");
                e.printStackTrace();
            return objRS;
        public void killConn()
            try
                    objRS.close();
                    System.out.println("Resultset is closed");
                    statement.close();
                    System.out.println("Statement is closed");
                    objConn.close();
                    System.out.println("Connection is closed");
                catch(Exception e)
                System.err.print("Unable to kill all objects");
                e.printStackTrace();
    //END OF CLASS***************************************** I call the method from the following jsp:
    <%
    String eqCat = "Tracked Vehicle";
    String strSQL = "SELECT DISTINCT * FROM robert WHERE eqcategory = '"+eqCat+"'";
    methodsClass mc = new methodsClass();
    ResultSet objRS = mc.getRSS(strSQL);
    java.lang.System.out.println(strSQL);
    %>
         <select name="selectBox">
         <% while(objRS.next()){
             out.println("<option value='"+objRS.getString("eqtype")+"'>"+objRS.getString("eqtype")+"</option>");
               mc.killConn();
    %> The above works fine.
    If I try to call the getRSS function again on this page I get the following error:javax.servlet.ServletException: Exhausted Resultset
    I tried to call it like so:
    newNameSQL = "Select * from robert where eqtypes = 'someVariable'";
    newNameRS = mc.getRSS(strSQL);
    <%=newNameRSS.getString("something");%>I cant understand why I get this error, I am closing the rs,conn and statement in the killConn method.
    TIA!

    I did that but still the same error. The problem is when I attempt to open up another resultset on the same page I get the Exhausted ResultSet error. I have even eliminated the class file altogether by doing this:
      String eqCat = "Tracked Vehicle";
      String strSQL = "SELECT DISTINCT eqtype FROM robert WHERE eqcategory = '"+eqCat+"'";
      Class.forName("oracle.jdbc.driver.OracleDriver");
      Connection objConn = java.sql.DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:CCD","system", "Abcd1234");
      PreparedStatement statement = objConn.prepareStatement(strSQL,ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
      ResultSet objRS = statement.executeQuery();
      System.out.println(strSQL);
    //The above works fine and then below I add this and the error comes back
         <select name="cs_popup_name_1" onchange="CSURLPopupShow(/*CMP*/'cs_form_name_1', /*CMP*/'cs_popup_name_1', 'Main');">
         <% while(objRS.next()){
            String eq = objRS.getString("eqtype");
             out.println("<option value='"+eq+"'>"+eq+"</option>");
    objRS.close();
    objConn.close();
    statement = null;
    strSQL = null;
    strSQL = "SELECT * FROM robert";
      Class.forName("oracle.jdbc.driver.OracleDriver");
      objConn = java.sql.DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:CCD","system", "Abcd1234");
      statement = objConn.prepareStatement(strSQL,ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
      ResultSet rs = statement.executeQuery();
      System.out.println(strSQL);
    //If I leave the field below commented out I get no errors, but if I comment it out I get the error
    <a href="#" onmouseover="showImg('<%=rs.getString("img1")%>')">                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Cannot End Call on Q10 after upgrading to OS 10.2

    I cannot End Call (mostly Outgoing) after upgrading to OS 10.2. The receivers phone keeps ringing even after i try to disconnect the call. The "END CALL" option is grayed out and the red led on the top left keeps blinking. This happens very frequently (mostly Outgoing calls). Any thoughts or solutions Thx

    marootz wrote:
    I cannot End Call (mostly Outgoing) after upgrading to OS 10.2. The receivers phone keeps ringing even after i try to disconnect the call. The "END CALL" option is grayed out and the red led on the top left keeps blinking. This happens very frequently (mostly Outgoing calls). Any thoughts or solutions Thx
    From the main screen, swipe down from the top black bezel to Settings > About... what is the OS Version listed there?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • The method 'commit' cant be called when a global transaction is active.

    Hello,
    I've installed the SOAdemo a couple of times on local machines, and it works fine. Now I've deployed the SOADemo on a separate server and a strange error occurs in BPEL when testing the SOADemo.
    The SOAOrderBooking BPEL process runs into an error at the GetOrderId process:
    ================================
    file:/C:/product/10.1.3.1/OracleAS_1/bpel/domains/default/tmp/.bpel_SOAOrderBooking_1.0_937b09d1bd8dae1b33b028b2871aef63.tmp/OrderSequence.wsdl [ OrderSequence_ptt::OrderSequence(OrderSequenceInput_msg,OrderSequenceOutputCollection) ] - WSIF JCA Execute of operation 'OrderSequence' failed due to: DBWriteInteractionSpec Execute Failed Exception.
    unknown failed. Descriptor name: [unknown]. [Caused by: The method 'commit' cant be called when a global transaction is active .
    ; nested exception is:
         ORABPEL-11616
    =================================
    I am using SOA Suite 10.1.3.0 and Database 10201, deployed on Windows.
    Can anybody tell me what can cause this problem?
    Thanks in advance,
    Regards Leon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi,
    Hi, I am getting the same error using ESB Database Adapter.
    My faultstring is:
    ========================
    oracle.tip.esb.server.common.exceptions.BusinessEventRetriableException: An unhandled exception has been thrown in the ESB system. The exception reported is: "oracle.tip.esb.server.common.exceptions.BusinessEventRetriableException: An unhandled exception has been thrown in the ESB system. The exception reported is: "org.collaxa.thirdparty.apache.wsif.WSIFException: esb:///ESB_Projects/my_ESB/myAdapter.wsdl [ myAdapter_ptt::myAdapter(InputParameters,OutputParameters) ] - WSIF JCA Execute of operation 'myAdapter' failed due to: DBWriteInteractionSpec Execute Failed Exception.
    unknown failed. Descriptor name: [unknown]. [Caused by: The method 'commit' cant be called when a global transaction is active.]
    ; nested exception is:
         ORABPEL-11616
    DBWriteInteractionSpec Execute Failed Exception.
    unknown failed. Descriptor name: [unknown]. [Caused by: The method 'commit' cant be called when a global transaction is active.]
    Caused by Exceptoin [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.1.0) (Build 061004)): oracle.toplink.exceptions.DatabaseException
    Belső kivétel: java.sql.SQLException: The method 'commit' cant be called when a global transaction is active.Error Code: 0.
    ==========================
    (BTW, what has 'commit' to do with a procedure that is only reading the database?)
    Regards,
    Patrik

  • When in phone mode  black screen and no option to "end call" power dwn req

    ok so heres my problem after i updated to 4.0.2 now when i use the "phone" to make recieve call screen goes blank and i loose the option to "end call" then to get outta call i have to press power button and home button to reset i hav already went to itunes and rebooted my phone hoping that would fix it but nope its still jacked up anyone can help?? any ideas

    in phone mode, I face the same problem. I call and then I have to enter a series of numbers to make an international call, but the screen goes blank completely
    This is little bit weird. I am using iphone 3gs; works with other functions, but for the phone. The phone becomes completely useless after I make any call.
    Good that it is still in the 30 day trial period; plan to return it.

  • IPhone not hanging up on "End Call"

    This occurs frequently, about 1 out of every 5 calls I make. When I hit the red "End Call," at the conclusion of a conversation, my phone hangs with it reading, "call ending..." It does not ever read the normal "call ended" and will stay that way until the screen dims. I then have to reboot the iPhone and everything works normally on the iPhone until it happens again within a few phone calls.
    I am running 1.1.1 (3A109a) and have done nothing peculiar to the iphone. (No 3rd-party apps or jailbreak.)
    Just wondering if anyone else is experiencing this…thanks.
    Message was edited by: JKosh

    First thing that you should do is update to 1.1.2. Apple fixed many bugs like that in that patch. Normally its something to do with the call line itself, like if you're phoning a Verizon person or a T-moble machine.
    Do you end the call or does the other person end the call? Try having the other person end the call and see what happens. Also, ask who their provider is and if that doesn't help call AT&T and see what they say.

  • Iphone screen is black when I remove the phone from my ear; can't end call

    This is annoying! It doesn't happen all the time -- only some of the time but at least two times a day. The phone works but it just doesn't show the "end call" option -- or anything for that matter. I can turn it off when I have my headset on but if I don't have the headset on, I have to press the lock key on the top of the phone to get it to do anything. Then it locks, and then when I touch the on button at the bottom of the phone, it shows the display again. Anyone have any ideas or should I take it in?

    Hey jps42247,
    Do you have a protective case on the iPhone? If its covering the Proximity sensor on the iPhone, the iPhone could think the phone is still being held up to your head. In that case the iPhone screen would remain locked so the call could not be ended accidentally.
    If you don't have a case on the iPhone, try resetting or restoring the iPhone.
    http://docs.info.apple.com/article.html?artnum=305743
    http://docs.info.apple.com/article.html?artnum=305744
    Jason

  • Iphone 5 doesn't end call and Siri problems. Need help.

    I can barely open my screen before it closes and when I hit end call--it doesn't. The screen kicks off and goes black--anyone else experiencing this?
    Plus, Siri is acting up and doesn't get the question and the screen goes blank quickly.
    I was switched out for a new phone after all the other issues relating to lack of signal and battery drainage. So, I now have a new phone with a complete new install and now this. I have rebooted to the apple screen--nothing seems to be working to solve this.

    First thing to try is to reset your device. Press and hold the Home and Sleep buttons simultaneously ignoring the red slider should one appear until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.
    If that doesn't help make an appointment at an App,e Store to have your iPhone looked at by a service technician.

  • Ios5.0.1, can't receive calls, can't end call, can't take video!!!!!

    After installed ios5.0.1, can't receive calls, can't end call, can't take video!! The screen become frozen! Any help please? Thx!

    How about going to a corporate store and see if they will let you put your SIM card in a display model. Your number will transfer over with the SIM card. Then if you call your number from your wife's phone or one of store landline phones and the call goes through, you have ruled out the SIM card being the problem.
    You don't have the phone number set to automatically forward to the voicemail, do you?

  • E61i - can't end call

    I have an E61i and nothing happens when I press the end call button now. I can't hang up on calls anymore without going to the options menu.
    I have the latest version of the firmware. I have a memory card but I removed it and restarted with no effect. I used to be able to just turn my phone off and on and the problem would go away. Now it won't go away.
    Any suggestions

    If your phone warranty is still valid - get it repaired. But I suppose this is not the case... So the only thing I can think of is Hard Reset - dial *#7370# and confirm. But be aware that this will format the device - all data on the phone memory including all applications will be erased.

  • RE CAN'T END CALL IN LUMIA 800

    i can't end call in lumia 800 and battery is also not getting full charged ..........pls help

    @himanshuonly4u
    Whilst the latter issue is addressed in soon to be released 1600.2483.8107.11501 the former has only so far produced the response "reset" your device or renew SIM which seems rather fallacious, as Lumia 800 one of the first devices bar iPhone to utilise microSIM and neither of which seem to address this issue if your device is so affected.
    Happy to have helped forum with a Support Ratio = 42.5

  • Can't end call on iPhone

    At the end of a call my iPhone screen is dark and doesn't always pop back to the call screen so I can hit End Call. Therefore, the call continues on until it disconnects. How do I get back to that screen short of never putting the thing to sleep? Could my Marware glove cover have something to do with this?

    Your case is very likely blocking the proximity sensor. Remove the case and see if the problem goes away.

  • Why my iphone6 always cant receive call form other people? i am use the iphone in mainland china. it is my iphone problem or all the iphones have this problem in mainland. please answer me. thanks.

    why my iphone6 always cant receive call form other people? i am use the iphone in mainland china. it is my iphone problem or all the iphones have this problem in mainland. please answer me. thanks.

    Hello tashi1234,
    Welcome to the Apple Support Communities. If you are having an issues with the Phone app on your iPhone, the next step would be to restore the iPhone. The following will assist with backing up your iPhone.
    iOS: How to back up
    http://support.apple.com/kb/HT1766
    Once your iPhone is backed up then go through with the process of restoring the iPhone.
    iTunes: Restoring iOS software
    http://support.apple.com/kb/ht1414
    Regards,
    -Norm G.

Maybe you are looking for

  • Flash 12.0.0.77 plugin installs to wrong folder

    In Vista x64, using either Firefox 28 or Firefox 24.4 ESR, the plugin installer (one downloaded from Adobe distribution) installs the 32 bit .dll file to \system32\macromedia\flash\ folder; installs the 64 bit .dll to:  \sysWOW64\macromedia\flash\  f

  • SharePoint 2010 + SQL 2008 + DPM 2012 Backup Failures

    I have a single SharePoint 2010 WFE and a SQL 2008 server backend. Since configuring DPM to run the SharePoint backup through the WFE, I have had no success with backups. DPM Reports: The VSS application writer or the VSS provider is in a bad state.

  • Form not going in Query mode

    hello freinds, Happy Christmas ..! i have a Master_Detail form, FORM2 "LN_HEAD" table, that has 3 primary key; ln_code ln_no ln_emp_code "LN_DET" table has foreign key; Relation is set at form design time. lnd_ln_code lnd_ln_no lnd_ln_emp_code Form2

  • Getting it on the web

    I made a lovely website for my company in Dreamweaver. Preview in Browser works fine and it looks great. Now how do I actually get this thing on the internet?!? Please be as simple in your answers as possible. I've never done this before.

  • Can't gotoAndStop ...what's wrong with this button code?

    Hi, I'm totally stumped as to why I can't navigate to another frame. I have put 2 days into this simple problem now and I'm ready to give up and go back to AS2. Please help! I'm using CS4; publish settings AS3, 10.0 I have a button on frame 2 that sh