Why is skype not working with the io6 update?

My skpe app is no longer working since I updated to io6 on my iphone 4 and 4s. The app is still there but nothing happens when I try to call someone and when they try to call me I can't hear or see the attempt.
Skype is still working on my laptop.
help??

Skype works fine on my iPhone 5 with iOS 6.1. Did you reinstall from the App Store or by syncing to your computer. Make sure you have the latest update to Skype. Consider contacting Skype for support.

Similar Messages

  • Why i-tunes not working with the windows 8.1?

    i have windows 8.1 in my laptop,but i-tunes not working with it.when i connect my iphone with my laptop its not shown in itunes.
    can you please help me?

    See this support document. http://support.apple.com/kb/TS1538
    The latest version of iTunes works just fine with Windows 8.1.

  • Why does Skype not work with mavericks?

    I recently "upgraded" to Mavericks and find that several of my other applications no longer work...Great "UPGRADE" I think I know why it was offered FREE.

    Check with HP for new software, in the past after an OS upgrade I have had to delete the printer and re add it to get it to work. The upgrade to Mavericks this did not occur but it did when I upgraded to Lion and then Mountain Lion.
    If this does not fix it please start a new thread.
    regards

  • Why is my page orientation button not working with the new update to pages?

    Since I have updated my pages my print orientation button is not working. amy ideas as to why that is and are ther many people with this problem???

    We are all busy with many other problems in Pages 5.
    Unless you have found some real reason to use Pages 5 just go back to Pages '09 which should still be in your Applications folder, until Apple sorts this all out.
    Peter

  • MY WHATSAPP HAUTELOOK FACEBOOK APPLICATIONS ARE NOT WORKING WITH THE NEW UPDATE iOS 7 ITS DRIVING ME CRAZY! HOW CAN I FIX IT?

    I DOWNLOADED THE NEW UPDATED VERSION FOR THE IPHONE !!!
    AND MY APPLICATIONS ARE NOT WORKING AT ALL
    WHENEVER I ENTER TO WHATSAPP A MESSAGE POPS UP FROM NOWHERE SAYING SOMETHING ABOOUT PUSH UP NOTIFICATION!!
    AND THAT I SHOULD CONNECT IT TO ITUNES, THEN I CONNECT IT TO ITUNES AND ITUNES IS NOT LETTING ME SIGN IN WITH MY APPLE ID ITUNES IS NOT WORKING/!!!
    ALSO WHENEVER I OPEN HAUTELOOK APP ON THE IPHONE IS FREEZING MY PHONE WITH THE PUSH UP NOTIFICATION WINDOW, AND I CLICK OK AND IT STILL APPEARS OVER AND OVER AGAIN
    PLZ HELP ME!!!!!!!!!!!!!!!!!!!!!

    If you do not have enough space, then you would have to free up more space.
    You can also update via itunes on your computer.

  • I often rely on my Norton Toolbar for sites, and it does not work with the new updates. Can I uninstall recent Mozilla updates until this add-on works with Mozilla, or am I stuck? Thanks!

    It's probably really easy to figure this out and uninstall the updates but, well, I'm slightly tech-illiterate! I use my Norton Toolbar a lot for those sites I visit infrequently, and this non-compatibility issue is the same reason I stick with Mozilla over Chrome, but now I can't even use my Norton information with Mozilla. Thanks.

    http://community.norton.com/t5/Norton-Internet-Security-Norton/Norton-Toolbar-not-compatible-with-FF-4-0-1/td-p/442788

  • My Siri is not working with the newest update

    After updating my iPhone with iOS 7.1 my Siri doesn't work. Anyone know how to fix this problem?

    Hello BaileyJake,
    The following article provides some useful troubleshooting steps that can help get Siri working again.
    iOS: Troubleshooting Siri
    http://support.apple.com/kb/TS4079
    Cheers,
    Allen

  • HT1688 The Greek keyboard on the iPhone 5s does not work with the new update still.

    I just had to do a factory restart on my iPhone 5s because if you use the greek keyboard for your password it wont unlock your phone.

    Maybe it's your cable.

  • Why facetime does not working with any carrier in u.s expect att although the iphone is factory unlocked

    why facetime does not working with any carrier in u.s expect att although the iphone is factory unlocked

    Facetime only works via WiFi. Are you trying to set up Facetime with a T-Mobile account?

  • I have laptop with digital persona (finger scanning) to automatic feed the passwords. it was working properly with the older version of firefox but is not working with the latest version of the firefox. why? give me a solution.

    i have laptop with digital persona (finger scanning) to automatic feed the passwords. it was working properly with the older version of firefox but is not working with the latest version of the firefox. why? give me a solution.

    Please authorize ADE 3 with same credentials that you used with older version of ADE

  • Why RSS does not work with my OS X 10.8.2?

    Why RSS does not work with my OS X 10.8.2? There was no problem before the upgrade to the Mountain Lion.

    By clicking on the RSS icon I'm getting a message:
    "No RSS reader is installed. Safari can't open the feed because Safari can't display RSS feeds"
    In Chrome I get xml file of the RSS site.
    Should I buy something what I didn't need with the Snow Leopard?
    Thanks for your help.
    Message was edited by: PZA22

  • Why is scrolling not working with multiple youtube embeds layed out vertically in a stack on one page?

    Why is scrolling not working with multiple youtube embeds layed out in a stack on one page?

    Hi ,  
      This is a sort of performance issue , because your program takes more than the max time set for the program to execute in foreground.
    There are many stuff in program which will hamper your performance.
    I will list down a few
    1. SELECT *
    FROM konp
    INTO CORRESPONDING FIELDS OF TABLE konp_itab
    FOR ALL ENTRIES IN a363_itab
    WHERE knumh EQ a363_itab-knumh
    in this statement you are using for all entries a363_itab , but before this statement you are not checking if the table has any entry or not , please do remember that for all entries has this characterstic , that if you internal table does not contain any record , then all the records are selected from the database table. So in this case if you table a363_itab is empty , so what you want is no data must be seelcted from table konp , but what will happen is all the records in KONP will be seelcted.
    2. While retreiving data you are using seelct * even though you do not require all the fields , an example is
    <b>SELECT *
    FROM mkpf
    INTO CORRESPONDING FIELDS OF TABLE mkpf_itab
    FOR ALL ENTRIES IN mseg_itab
    WHERE mblnr EQ mseg_itab-mblnr.</b>
    in this your internal table contains only 2 fields
    <b>mblnr LIKE mkpf-mblnr, "Number of Material Document
    bldat LIKE mkpf-bldat, "Document Date in Document</b> , but to get these 2 fields you are selecting all the fields of the table.
    3. In select you are using into corresponding fields of table , it is not a good practice., so please avoidd it.
    Please understand that you must try to reduce the access to your database tables and try to keep it minimal , because this same thing may happen becasue data in DEV is very less compared to the volume of data in production , so a program working in DEV will take much more time in PRD if not written properly and may result in timeouts , as in your case.
    Please try to make chanegs to the prorgam and see if it works.
    In case you have more queries , please do revert back.
    Regards
    Arun
    *Reward points if replay is helpful

  • My work computer runs Outlook 2003, which I know will not work with the iCloud, so I hard sync.  But then the new info on my iPhone does not backup to iCloud.  Is there a solution?

    I have a Macbook and iPhone and like to back up to iCloud.  However, my work computer runs Outlook 2003, which I know will not work with the iCloud.  The company has no plans to update anytime soon.  Since the calendar and contact list on my office computer are my primay ones, I hard sync through iTunes.  The problem is that any data synced from Outlook 2003 to the iPhone from iTunes does NOT later backup to iCloud.  Is there a solution?

    I have the same problem with Outlook 2003 and Win XP which the multinational organisation I work for standardises on and will probably stay with forever!

  • [svn:fx-trunk] 5019: ASDoc updates to indicate that some Halo containers do not work with the Spark equiv (ControlBar does not work with Spark Panel/ AppControlBar does not work with Spark Application), and indicate that Canvas, Box, Tile, Panel have Spa

    Revision: 5019
    Author: [email protected]
    Date: 2009-02-19 13:17:21 -0800 (Thu, 19 Feb 2009)
    Log Message:
    ASDoc updates to indicate that some Halo containers do not work with the Spark equiv (ControlBar does not work with Spark Panel/AppControlBar does not work with Spark Application), and indicate that Canvas, Box, Tile, Panel have Spark equivs
    QE Notes: None
    Doc Notes: None
    Bugs: -
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Accordion.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ApplicationControlBar.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Box.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Canvas.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ControlBar.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/HBox.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Panel.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/TabNavigator.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Tile.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/VBox.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ViewStack.as

    Hi DST
    This is a great effort and gesture. thank you on behalf of all the newbies.
    PJ

  • Fast dial (visual bookmarks) does not work with the new 5.0 upgrade. How do I correct this issue

    fast dial (visual bookmarks) does not work with the new 5.0 upgrade. How do I correct this issue Asked this question yesterday. I desperately need info, will I ever be able to use fast dial again?

    I tried it and it WORKED....I even tried the other version BEFORE this one and it didn't work so I tried yours and it worked like a charm so THANKS brother....

Maybe you are looking for

  • How to keep the overall sales price same after basic material cost changes

    We have a below requirement from clientu2026 Sales Order with quantity 100 created. Letu2019s say the Basic material cost is $10  each and after the pricing procedure of SD (i.e taking condition types etc in account) overall sales order price came to

  • I dented my mid 2012 macbook pro 15'

    hey guys as the subject says , i dented my macbook pro mid 2012 15' unknowingly and i went to the apple store to ask the price for the upper casing replacement , they told me a price for $180 , do you guys think thats the correct price for the full u

  • Firefox Beta channel does not update to next Beta build, why?

    On both the Nightly and Aurora channels, when a new build is available if you 'check for update' the update is Downloaded and applied. On the Beta channel this does not happen. Is there some config setting I need to change for updates to be found? It

  • Importing .mov files to InDesign CS2

    I am trying to import a H.268 or Mpeg .mov files into InDesign CS2 and every time I select the file, I get the following message pop up: "Error: Cannot place this file. No filter found for requested operation" When I check the 'Interactive Options' t

  • SQL: Select DISTINCT only on certain fields?

    This is an odd question. Partly because it's late and I'm not thinking straight, but... I have a query consisting of 9 joins. It works fine. However, I've encountered a bit of an issue with my data that would much easier to fix via a query than actua