Not able to send SMS after IOS 7.1.1 update

I updated to 7.1.1 last nite and today noticed that my SMS messages are not being received. I have tried all of the following with no success at all:
Activated iMessage successfully
Send as SMS activated
Send & receive: only my phone number (I live in Greece so the number shown starts with +30) is ticked, email is NOT ticked
Deactivated iMessage
Reset network settings
I do receive SMS messages from my husband's Samsung but my messages sent to his phone and others show on my phone as sent but they are not received. We have no carrier issues; this problem only started after the IOS update.
Appreciate any suggestions! Thank you.

iMessages or SMS which are different, or both?
SMS/MMS are exchanged via a carrier's cellular network only. If an SMS or MMS is successfully sent, what happens to the message after that has nothing to do with the cell phone that successfully sent the message.

Similar Messages

  • I recently buyed totally unlocked sprint iphone which was legally contract free and i am using that phone in india but i am not able to send sms .everything is working fine except sending sms. i have tried everything plz help me !!

    i recently buyed totally unlocked sprint iphone which was legally contract free and i am using that phone in india but i am not able to send sms .everything is working fine except sending sms. i have tried everything plz help me !! i have tried everything i.e. reset iphone /hard reset/network setting reset /sms service no i have also changed but i am still not able to send sms.. please help me as i am really worried .. thank you !!

    I had the same problem.  Kept getting message of waiting for activation or check network connections.  I also tried every solution out there and nothing worked.  This did though:  I download the newest version of itunes (through Internet Explorer - Google Chrome wouldn't work).  It pulled in my entire library thank goodness and then I plugged my iphone 4s into the computer.  I let itunes find it, did a complete backup in icloud, then did a restore.  Entire process took a couple of hours, but I now have imessage and facetime back.  I was about ready to give up on Apple and go get a different phone ~

  • Nokia N95 not able to send sms.

    My nokia N95 is unable to send sms messages. The screen is saying "general memory is full, close some applications and try again". Have deleted all messages from inbox, outbox, photos, etc. But is still not able to send. I am able to recieve sms and calls. Don't understand where to find 'general memory'??? Can anyone help me please?? It has been like this for a week. Thanks

    Check in File Manager where your phone thinks memory is being taken up (Options>Memory details) - this will tell you if you have large amounts of memory taken up by thing which can be moved to memory card (such as photos, videos, music files etc.)
    If this is not the case, make a backup of your personal stuff (contacts, messages etc.) using PC Suite, leaving out anything that you don't need and also leaving out settings; then reformat your phone with the code *#7370# - the phone will ask you for confirm, then enter the lock code (12345 if you haven't changed it from standard) then shut down and restart - you should be able to send again after this. You can then restore your personal datat to the phone.

  • I am not able to send sms to certain contacts from my iphone5

    hi
    iam not able to send message to certain contacts from my iphone5

    Hi sri_sr,
    If you are unable to send SMS messages to certain contacts, we may need to check a few things:
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    If you still can't send or receive SMS or MMS messages
    - See the iPhone Troubleshooting Assistant.
    - Verify that every phone number in your contacts list includes an area code.
    - When sending to existing contacts, ensure that your contacts include the full phone number, and not just the information needed to dial locally.
    - If you have recently ported your number from another carrier, please contact your current carrier to verify that the porting process has completed successfully.
    Thanks,
    Matt M.

  • 3G Setting - not able to send SMS text messages

    I have a £GS iphone. Can anyone explain why my SMS messages fail to send if the 3G setting is enabled but it will send when 3G is disabled. It makes no difference whether I have a strong 3G signal or none at all.

    I suggest contacting your carrier. I don't believe this is an iPhone problem since you are able to send SMS when connected via EDGE or when 3G network access is off. Although technically data, SMS is exchanged over the same network as calls - not via the carrier's data or internet network.

  • I am not able to send SMS through mac

    I have an iPhone six and is already upgraded to latest version . I am able to call through my mac but not been able to activate SMS service . Tried to do setting though iPhone forward SMS but i don't find any code popping up on my mac . Same problem on iPad and iMac
    Dr Abhay Patil

    Hello drabhay.p,
    Welcome to the Apple Support Communities! Let’s see if we can figure out what is going wrong so that we can get these great new features working. I’d like to start off by checking to see that you are signed in with the same Apple ID on all of the device (for iMessage). For more information, check out the following resources:
    Connect your iPhone, iPad, iPod touch, and Mac using Continuity - Apple Support
    http://support.apple.com/en-us/HT6337
    Get help using Continuity with iOS 8 and OS X Yosemite - Apple Support
    http://support.apple.com/en-us/TS5458
    Cheers,
    Matt M.

  • Not able to send SMS  " Application server error"

    Hi Experts,
    I am trying to send sms using one URL . but it is giving application server error. if i seperately copy this url on internet explor it is working fine .
    I am getting error in below methos
    call method client->receive
    exceptions
    http_communication_failure = 1
    http_invalid_state = 2
    http_processing_failed = 3
    others = 4.
    returning 1  and error message
    <html><head><title>Application Server Error</title>##<style type="text/css">##body { font-family: arial, sans-serif;}##</style>##</head>##<BODY text="#172972" link="#808080" vlink="#808080"##alink="#8e236b" bgcolor=white  leftmargin="0" topmargin="0"##mar
    below is the code
    call function 'SCP_CODEPAGE_FOR_LANGUAGE'
    exporting
    language = 'L'
    importing
    codepage = i_codepage
    exceptions
    no_codepage = 1
    others = 2.
    data : I_msg type string.
    ***Repalcing the starnge characters
    call function 'SCP_REPLACE_STRANGE_CHARS'
    exporting
    intext = I_message
    in_cp = i_codepage
    importing
    outtext = I_msg
    exceptions invalid_codepage = 1
    codepage_mismatch = 2
    internal_error = 3
    cannot_convert = 4
    fields_not_type_c = 5
    others = 6.
    endif.
    gv_sms_number = I_SMS_number.
    ****Check the recipient Number
    replace all occurrences of '+' in gv_sms_number with ' '.
    condense gv_sms_number no-gaps.
    data: client type ref to if_http_client,
          url type string.
    ****Build the  URL
    url created
    ****Create the HTTP client
    call method cl_http_client=>create_by_url
    exporting url = url
    importing client = client
    exceptions others = 1.
    *****Set the Request type to GET******
    ***Sets the value of the specified header field
    client->request->set_header_field( name = '~request_method' value = 'GET' ).
    CALL METHOD client->send
        EXCEPTIONS
          http_communication_failure = 1
          http_invalid_state         = 2.
    **client->request->set_header_field( name = '~request_method' value = 'GET' ).
    "#EC *
    ****Make the call client->send( ).
    ****Receive the Response Object
    call method client->receive
    exceptions
    http_communication_failure = 1
    http_invalid_state = 2
    http_processing_failed = 3
    others = 4.
    if sy-subrc <> 0.
      call method client->get_last_error
        importing
         code    = gv_subrc
         message = gv_errortext.
    endif.

    Hi,
    Pls see this link... Re: Sending SMS frm SAP

  • Not able to send mail after Embarq took over Sprint

    After over three hours on the phone with Embarq, I finally am able to receive mail but not send. They claim it is a problem with Apple Mail. I never had this proble untill the change over from Sprint to Emgarq. This is the message I receive when I try to send mail;
    "This message could not be delivered and will remain in your Outbox until it can be delivered.
    Verify that you have addressed this message correctly. Check your SMTP server settings in Mail Preferences and verify any advanced settings with your system administrator."
    I am seriously thinking about dumping Embarq and going with cable.
    Any suggestions?
    David

    Hi Thanks for the tips with the Embarq trouble. Just to pass on a word of success on the proper setting with these guys. The Incoming Mail Server: pop.embarqmail.com The User Name will be your email address, don't drop the @embarqmail.com it won't work without it. Enter your password for the incoming server. The outgoing will be smtp.embarqmail.com:email address. It kind of looks goofy but it just like the incoming, but swap the pop for SMTP. My server port is still set at 25 and you'll need to add the password here as well. I sent a test email yesterday. I could view it on the webmail, but had no success on Mail 2.1, until today. Thanks for the info being posted. This is not a typical setup for an account on Mail. They kept on telling me the user name was everything before the @ when in fact it's your whole email address.
    Hope this helps.

  • Iphone 5s not receiving imessages or sms after ios 8.1 update

    Since updating to iOS 8.1 this morning I have not received any iMessages or SMS, despite my wife having told me she has sent numerous messages to me today! Anyone else have this problem, and any ideas as to how to resolve it?  Thanks.

    I had this problem too. Upgraded this morning and didn't receive any messages all day. Got home and looked at my iPad and found that I'd missed several messages.
    Turned out that iMessage was switched off. Don't know why that would be the case...  but I went into Settings -> Messages, saw that it was now off, switched it on, and all is back to normal.

  • Can not open videos on iPad after iOS 8.0.2 update

    I've updated my iPad's software to iOS 8.0.2 from iOS 8 and suddenly I can not watch any video from Youtube or any website. This is a big issue for me and couldn't find any solution. When I open the Youtube app, videos do not load and an error occurs. Then I tried to watch something on a website and realized that the problem is not only for Youtube but any kind of web based platforms. By the way, this not because of wifi connection. It is connected with a strong signal. Everything works fine except watching something.
    Can I convert my software to previous version through iTunes or is there any other way to fix this? I hope the only way to get rid of this problem is not waiting for the next software version to be released.
    Thanks
    Elif

    (A) Try reset iPad
    Hold the Sleep/Wake and Home button down together until you see the Apple Logo.
    Note: Data will not be affected.
    (B) Close all apps in the multi-task window
    1.Double-click the Home button.
    2. Swipe the app's preview up to close it.
    3. Preview will fly off the screen.

  • I am not able to send messages to multiple person from my iphone 5s after updating to ios 8.1.2. It shows message not delievered

    I am not able to send messages to multiple person from my iphone 5s after updating to ios 8.1.2. It shows message not delievered

    Hi waqaskhan91,
    Thank you for visiting Apple Support Communities.
    If you're not able to send text or iMessages to certain contacts after updating your iPhone, start with the troubleshooting tips in this article:
    iOS: Troubleshooting Messages - Apple Support
    If you only see this behavior with a few contacts, you may want to try these steps first:
    If the issue occurs with a specific contact or contacts, back up or forward important messages and delete your current messaging threads with the contact. Create a new message to the contact and try again.
    If the issue occurs with a specific contact or contacts, delete and recreate the contact from the Contacts app. Send a new message to the contact.
    Best Regards,
    Jeremy

  • Not able to send any SMS

    Hi All,
     I am not able to send any SMS  from my blackberry device from past one day. I have checked all possible things including my network, the message settings etc. I am able to choose contacts and type messages but when I am trying to send it it gets hanged , the track pad doesnot send it...even if  I try clicking the green tab for options to choose,it doesnot wrk...as a result I have to press back, once i press back i see the typed message highlighted in green in my message box and if i click on it it goes away.The sent outbox doesnot show that the message is sent also when i enquire with the recipient they inform that message is not delivered. Could anybody advice why this can happen? also is this due to some virus? If so can the scan and restore back my curve with difault settings....reuqest you all to please please reply back soonnnnnnnnnnnnnn.......My curve model is 8520, carrier VODAFONE and OS v5.0..
    Thanks ,
    Prasun
    Solved!
    Go to Solution.

    You need to turn off the media sync in the Desktop Software, so that it does not occur immediately and only when you click to initiate it.
    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

  • I am having ipad4 and my network is Vodafone, myself is not able to send,receive calls sms

    I am having ipad4 and my network is Vodafone, myself is not able to send,receive calls sms

    Correct, as the iPad has no native phone or SMS capability.

  • Hello! Im having problems about my Iphone showing NO SERVICE on top. Im not able to send and receive msg, same with calls

    Hello Guys! I hope someone could help me, Im having trouble with my phone's signal, I am not able to send and receive msgs, same as make calls and receive calls. At first, my phone is working fine (iphone 4, iOS 7.0.4) and all of a sudden, my text messages are not getting through, and I noticed that my phone shows NO SERVICE, I refreshed the phone by turning it off and turning it on after a couple of minutes, it worked. My phone is okay again after that, Im able to send and receive messages again. But after few hours, the problem came again. NO SERVICE sign is displayed again, but this time after refreshing the phone nothing good happened. I tried almost every possible thing I can to fix it but it doesn't work. What should I do.
    Thank you

    Hey Clara,
    These are the recommended troubleshooting steps to resolve No Service issues on iPhone:
    Toggle airplane mode: Tap Settings > Enable Airplane Mode, wait five seconds, then turn off airplane mode.
    Turn iPhone off and then on again.
    Remove the SIM card and verify that it's a valid, carrier-manufactured SIM. Also verify that it isn't damaged, worn, or modified. Then reinsert it.
    Check for a carrier-settings update. Connect to a Wi-Fi network. Then tap Settings > General > About. If an update is available, iOS will ask you if you want to install it. If Wi-Fi isn't available, connect your device to iTunes.
    Update your iPhone to the latest version of iOS.
    Reset network settings by tapping Settings > General > Reset > Reset Network Settings. This will reset all network settings, including Bluetooth pairing records, Wi-Fi passwords, VPN, and APN settings.
    Restore the iPhone.
    If you are outside the United States, please also follow these steps:
    Go to Settings > Carrier > Automatic.
    If the phone registers any carrier network, Settings > Carrier will be present.
    If the Carrier option is missing in Settings and you are outside of the Unites States, please contact Apple for support and service options.
    Set the option for Automatic to off.
    A list of potentially available carriers appears after about two minutes. If the device is locked to a carrier, it may connect only to the carrier network to which it is locked. If the device displays carrier networks, then the device is working as expected.
    Set Settings > Carrier > Automatic back to on.
    If you're still experiencing No Service issues, contact your carrier to check for any network or account issues that could cause these symptoms.
    from: iPhone: Troubleshooting No Service
    http://support.apple.com/kb/TS4429
    Welcome to Apple Support Communities!
    Take care,
    Delgadoh

  • Windows Phone - To be able to send sms through Nok...

    I would love to use a Lumia and to be able to send sms through Nokia Suite by connecting bthrough usb cable and also by bluetooth.
    I connect my Nokia Belle phones almost every day by bluetooth and send sms.
    The freedom to do that is long implemented i my daily life and the reason is plain simple;
    while surfing on the pc, checking business stuff, writing messages or whatever and not have to pick up the phone is such easy task, not to mention how easy it is too use the keyboard of the pc and the speed and accuracy of writing...people who like me have done this for years,
    surely will miss this feature or whatever you want to call it.
    Implement it, just do it. Please...
    Nokia 808 again (delight Belle), Nokia E7 and X7 ( again, all on Delight Belle...after some time on Nokia Lumia 925 (retired), 1020 (not that great)and Lumia 820 (Replaced my router at home, great for internet sharing).., N9 The best device ever (use it as much as Lumia 1020), Nokia 700 (Sport Phone/My Love :-) ) Nokia 701, Nokia E6 (Should have a follow-up from Nokia among with larger screen, NFC, Autofocus), Lumia 800 (Retired After 6 weeks), -Sports Tracker-Nokia Internet Radio-Handy Safe-Skype-Bambuser-Screenshot app pro-fMobi-ComingNext-Manual TaskSwitcher-jagiTimer-Easy StopWatch-Boldbeast-Equalizer-Financial Calculator-WiMP Music-YTasks-Davi-Thumbnail Folders-BizCalendar-Tiny7-Situations-nn reeder-Sport Timer-CameraLover-CameraPro-GrabRadio-LiveScore-Poddi-Gravity-SkyFilesPro

    Well, how shall I put it....
    I want to send sms when connected to nokia suite (bluetooth) just as I do now with Nokia Belle 700 or 701 using the keyboard of my laptop or pc.
    Read my contribution again....so underated "feature", once you get hooked, you are hooked....just to see the sms on the pc screen without take take up your phone and then quickly answer the sms and at the same time just to watch your pc screen and other activities on your pc screen/laptop...
    Nokia 808 again (delight Belle), Nokia E7 and X7 ( again, all on Delight Belle...after some time on Nokia Lumia 925 (retired), 1020 (not that great)and Lumia 820 (Replaced my router at home, great for internet sharing).., N9 The best device ever (use it as much as Lumia 1020), Nokia 700 (Sport Phone/My Love :-) ) Nokia 701, Nokia E6 (Should have a follow-up from Nokia among with larger screen, NFC, Autofocus), Lumia 800 (Retired After 6 weeks), -Sports Tracker-Nokia Internet Radio-Handy Safe-Skype-Bambuser-Screenshot app pro-fMobi-ComingNext-Manual TaskSwitcher-jagiTimer-Easy StopWatch-Boldbeast-Equalizer-Financial Calculator-WiMP Music-YTasks-Davi-Thumbnail Folders-BizCalendar-Tiny7-Situations-nn reeder-Sport Timer-CameraLover-CameraPro-GrabRadio-LiveScore-Poddi-Gravity-SkyFilesPro

Maybe you are looking for