Hi! my problem is that there are some numbers in my iphone that i can't send sms but the rest are working perfectly well. i'm using iphone 5 ios7.1

hi there the problem with my iphone is that there are at least two or more contact numbers that i cannot send sms although the rest are working perfectly well can anyone please help?

Tap Messages and make sure Send as SMS is turned on.
If that doesn't do it, maybe Apple's doc will help -> iOS: Troubleshooting Messages

Similar Messages

  • How do I transfer photos from iPhoto back onto my iPhone without taking up all the storage space? I know that there is some application on my computer that does it but I can't remember what it's called.

    How do I transfer photos from iPhoto back onto my iPhone without taking up all the storage space? I know that there is some application on my computer that does it but I can't remember what it's called.

    iTunes.
    manuals.info.apple.com/en_US/iphone_user_guide.pdf

  • I have burned a CD and the first 1/2 of the songs sound fine but the rest are not clear

    I have burned a CD and the first 1/2 of the songs sound fine but the rest are not clear, they have a skipping sound to them.  I have erased teh CD-RW and tried again and it was somewhat better but the last few songs did the same thing.

    Jennann,
    First of all, it is better to use CD-Rs than CD-RWs, as the latter often give problems when used for audio CDs.
    The problem you describe -- bad audio on the later tracks of an audio CD -- can almost always be corrected by doing the burn at a much lower burn speed. Use 2x.
    The burn speed is selected in the dialog box that comes up when you request the burn.  It defaults to "Maximum Possible," but there is a dropdown to select a lower value.

  • I just installed ios7 on my iPhone 4s.  It seems to be working fine but all of the apps I had previously installed are gone.  They show up in my app store as purchased, but the shortcuts are gone.  Does anyone know how to get the shortcuts back?  Thanks!

    I just installed ios7 on my iPhone 4s.  It seems to be working fine but all of the apps I had previously installed are gone.  They show up in my app store as purchased, but the shortcuts are gone.  Does anyone know how to get the shortcuts back?  Thanks!

    I updated via my iPhone 4s.  The apps were on my iPhone 4s.  That's all the information that I have.  The update to ios7 seems to have gone smoothly - everything else is working, phone texting, email, internet, etc.  But all of the apps I had installed over the past year are no longer showing up as shortcuts.  No facebook, no twitter, no espn, etc.  They are all still listed in my app store as purchased, but the shortcuts and my folders are gone.  Thanks.

  • Once I send 1 string, the rest are cut off, any ideas?

    Hello everyone.
    For some reason when I send my first string through the socket, everything works fine. But after that Its cutting off the first 2 or 3 characters of the string and I have no idea why because I'm flushing the output buffer before and after I send the the string to the output buffer.
    note: complete code can be found here:
    http://cpp.sourceforge.net/?show=38132
    Am I not flushing right?
    Here's the code:
    public class MultiThreadServer implements Runnable {
    //csocket is whatever client is connecting to this server, in this case it will
    //be a telnet client sending strings to the server.
         Socket csocket;
      MultiThreadServer(Socket csocket) {
        this.csocket = csocket;
      public void run() {
           //setting up sockets
           Socket outputServ = null;
           //create a message database to store events
              MessageDB testDB = new MessageDB();
           try {
          //setting up channel to recieve events from the omnibus server
             BufferedReader in= new BufferedReader(
                        new InputStreamReader(
                        csocket.getInputStream()));
             PrintWriter out2
              = new PrintWriter(
              new OutputStreamWriter(
              csocket.getOutputStream()));
             //This socket will be used to communicate with the z/OS reciever
             //we will need a new socket each time because this is a multi-threaded
             //server thus, the  z/OS reciever (outputServ) will need to be
             //multi threaded to handle all the output.
             outputServ = new Socket("localhost",1234);
             if(outputServ.getLocalSocketAddress() == null)
                  System.out.println("OutputServer isn't running...");
             //Setting up channel to send data to outputserv
              PrintWriter out
                   = new PrintWriter(
                   new OutputStreamWriter(
                   outputServ.getOutputStream()));
         String input;
         //accepting events from omnibus server and storing them
         //in a string for later processing.
         while ((input = in.readLine()) != null)  
              //looking to see what telnet gets
              out2.println(input);
              out2.flush();
             //accepting and printing out events from omnibus server
             //also printing out connected client information
              System.out.flush();     
              System.out.println("Event from: " + csocket.getInetAddress().getHostName()
                            +"-> "+ input +"\n");
             System.out.flush();
                  //sending events to output server
              out.flush();
                  out.println(input);
                  out.flush();
                  //close the connection if the client drops
                  if(in.read() == -1)
                       System.out.println("Connection closed by client.");
                       break;
        //cleaning up
          in.close();
          out.close();
          outputServ.close();
          csocket.close();
           catch (SocketException e )
                System.err.println ("Socket error: " + e);
           catch(UnknownHostException e)
                System.out.println("Unknown host: " + e);
              catch (IOException e)
               System.out.println("IOException: " + e);
    }Here's some example output I'm getting from the telnet screen which is (out2) stream:
    This is a test
    This is another test
    his is another test
    This is yet another test
    his is yet another test
    This is a test worked fine, as you can see, it outputed This is a test when I typed it in.
    The next string "This is another test" fails, as you can see its echoing out:
    his is another test
    I'm also printing out the contents to the console, and i'm getting out the same thing:
    Enter port to run server on:
    3333
    Listening on : ServerSocket[addr=0.0.0.0/0.0.0.0,port=0,localport=3333]
    Waiting for client connection...
    Socket[addr=/127.0.0.1,port=2184,localport=3333] connected.
    hostname: localhost
    Ip address: 127.0.0.1:3333
    Event from: localhost-> This is a test
    Event from: localhost-> his is another test
    Event from: localhost-> his is yet another test
    Connection closed by client.
    ANy help would be great!
    Message was edited by:
    lokie

    I posted more compact code so its easier to see and understand: The run() function is where the problem is occurring.
    //SAMPLE OUTPUT FROM CONSOLE
    Enter port to run server on:
    3333
    Listening on : ServerSocket[addr=0.0.0.0/0.0.0.0,port=0,localport=3333]
    Waiting for client connection...
    Socket[addr=/127.0.0.1,port=2750,localport=3333] connected.
    hostname: localhost
    Ip address: 127.0.0.1:3333
    Event from: localhost-> This is a test
    Event from: localhost-> his is a test
    Event from: localhost-> his is a test
    Connection closed by client.
    //------END OF SAMPLE OUTPUT-----//
    //---THis class is called everytime a new thread is created,
    //only 1 thread is created because only 1 client is connecting to the
    //server
    package server;
    //parser server
    import java.io.IOException.*;
    import java.io.*;
    import java.net.*;
    import java.util.Scanner;
    public class MultiThreadServer implements Runnable {
         Socket csocket;
    MultiThreadServer(Socket csocket) {
      this.csocket = csocket;
    public void run() {
           try {
        //setting up channel to recieve events from the omnibus server
           BufferedReader in= new BufferedReader(new InputStreamReader(csocket.getInputStream()));
         String input;
         //accepting events from omnibus server and storing them
         //in a string for later processing.
         while ((input = in.readLine()) != null)  
           //accepting and printing out events from omnibus server
           //also printing out connected client information
              System.out.println("Event from: " + csocket.getInetAddress().getHostName()
                          +"-> "+ input +"\n");
              System.out.flush();     
                //close the connection if the client drops
                if(in.read() == -1)
                     System.out.println("Connection closed by client.");
                     break;
      //cleaning up
        in.close();
        csocket.close();
           catch (SocketException e )
                System.err.println ("Socket error: " + e);
           catch(UnknownHostException e)
                System.out.println("Unknown host: " + e);
              catch (IOException e)
               System.out.println("IOException: " + e);
    //This is the main function, the only thing it does is
    //create a new thread on each connection.
    package server;
    //This is the parser Client that will parse messages and send to the
    //z/Os output Server
    import java.io.*;
    import java.net.*;
    public class MainTest
           public static void main(String args[]) throws Exception
                //get console input
                BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));  
                System.out.println("Enter port to run server on: ");
                String input = stdin.readLine();
                int servPort = Integer.parseInt(input);
                //setting up sockets
                ServerSocket ssock = null;
                Socket sock = null;
                try
                //setting up server to run on servPort
               ssock = new ServerSocket(servPort);
                System.out.println("Listening on : " + ssock);
                System.out.println("Waiting for client connection...");
                  while (true) {
                    //waiting for client to connect to server socket
                    sock = ssock.accept();
                    System.out.println(sock + " connected.");
                    //get host information
                    InetAddress clientIa = sock.getInetAddress( );
                    String clientName = clientIa.getHostName();
                    String clientIp = clientIa.getHostAddress();
                    int localPort = sock.getLocalPort();
                    System.out.println("hostname: "+clientName  +
                              '\n' + "Ip address: " + clientIp
                              +":"+ localPort + "\n\n");
                    new Thread(new MultiThreadServer(sock)).start();
                catch (SocketException e )
                     System.out.println ("Socket error: " + e);
                catch(UnknownHostException e)
                     System.out.println("Unknown host: " + e);
                   catch (IOException e)
                    System.out.println("IOException: " + e);
    }

  • Iphoto is scrambling my picture folder. When I sync, it mixes up the pictures in the folders. approximately 1/3rd of my foilders are okay, with the correct pictures in them, but the rest are completely mixed up.

    I synced and when I looked at my folders, the wrong pictures were in them. I checked in iPhoto, and the pictures were in the correct folders there. they get messed up when I sync on both my Ipad 2 and my Iphone 5.

    Your post is  not clear as in iPhoto for the Mac folders do not contain photos - and the order of photos on an IOS device is not determined by iPhoto on the Mac - it is determined by the photos program on the IOS device - I suspct you nee to ask in an IOS for iPhone or iPad foum - although I'm not really clear on what your question is
    And iphoto does not (and can not) make any change o any file or folder outside of the iPhoto library - it simply has no ability to do that so iphoto is not every doing anything to your pictures folder
    LN

  • My iphone 4 drop down after that it start showing apple logo i have restored it after that it shows searching on carrier signal and shows that Connect to itune... when i connect it to itune, message came that there is some problem with your iphone.

    My iphone 4 drop down after that it start showing apple logo i have restored it after that it shows searching on carrier signal and shows that Connect to itune... when i connect it to itune, message came that there is some problem with your iphone.Please help me out.

    Hi ahsanikram!
    I have an article here for you that can help you troubleshoot this issue with your iPhone:
    iOS: Troubleshooting update and restore issues
    http://support.apple.com/kb/ts1275
    If you are still having issues after attempting the troubleshooting steps in the previous article, see the following article:
    iOS: Unable to update or restore
    http://support.apple.com/kb/ht1808
    Thanks for coming to the Apple Support Communities!
    Cheers,
    Braden

  • Hi All, I recently bought a Mac Book Pro and transferred all my photos from my hard drive onto the Mac. I realised that there were some folders which didn't have the camera information embedded in the files and these files refuse to open on iPhoto. HELP!!

    Hi All, I recently bought a Mac Book Pro and transferred all my photos from my hard drive onto the Mac. I realised that there were some folders which didn't have the camera information embedded in the files and these files refuse to open on iPhoto. I know that the folders that have the problem were not transferred to the hard drive via a photo transfer application (I have a Canon camera) but I simply copied them out of the photo card and onto my old PC.
    Is there some way I can open these pictures on my Mac? They work fine on a PC.

    Thanks for your reply.
    The files don't open in preview either. In preview I get the error message 'The file "xxxx_xxx.jpg" could not be opened. It may be damaged or use a file format that Preview doesn't recognize'. The folders with these un-openable pictures do not even get imported into iPhoto. When I try to import them I get an error message about the files being unreadable.
    The color profile information on the un-openable files is not visible but I see that all the other files from my old drive are RGB.

  • Hi. My itunes library is in current 10.5.2 but my old ipod touch 4th or 3rd gen is not updating at all its still in current 4.2 and there is some apps i cant download that requires a 4.3 update but in my itunes it wont. Please help!

    Hi. My itunes library is in current 10.5.2 but my old ipod touch 4th or 3rd gen is not updating at all its still in current 4.2 and there is some apps i cant download that requires a 4.3 update but in my itunes it wont. Please help!

    Are you sure you have a 4g/3g iPod?   If you don't have a camera, it's definitely not 4G.  If it has no camera and is 8 or 16 Gb it is a 2G and can't go beyond 4.2.1. 

  • I deleted some of my text message histories to get rid of 'other' space (6.33 gb). They were gone from iMessage, but they still showed up in search, so they were still taking up space on my phone. I synced my iPhone (4s) but the messages are still there.

    I deleted some of my text message histories to get rid of 'other' space (6.33 gb). They were gone from iMessage, but they still showed up in search, so they were still taking up space on my phone. I synced my iPhone (4s) with iTunes but the messages are still there. How can I get rid of these texts for good and have more space on my phone? 6.33 gb of other space is way too much, thats almost half of my overall available space (13.5 gb.) I don't want to reset my phone and lose all my other texts/ app progress/ photos. I do have backups, but when I restore from the backup the other space comes back along with everything else. What can I do to get rid of this other space and the 'deleted' text messages? (I'm running iOS 6.1.3 if that helps)

    But once again, I do not want to lose my other texts, app progress, and photos. I could sync the photos but i would still lose the app progress and texts. I would only restore if it was the only option left, but the other space, as already stated, isnt the main concern. The main concern is those 'deleted' texts. If they go, then a good size chunk of the other space goes. I know you CAN delete texts for good. It worked fine before. All i want to know is why its not working for me now, and how to fix it.
    I also know that when you delete texts on your iphone, they get marked for deletion, however they stay on your device (thats why they show up when you search for them.) then when you sync your device with itunes, the texts marked for deletion should disappear. When i synced they didnt disappear. Thats what i need an explanation/solution for. Why the texts marked for deletion didnt get fully deleted after the sync.

  • I recently had to wipe my hard drive thanks to a download happy teen. In that process I lost my LR4 catalogs I was able to redownload the program but the catalogs are not there and not all of those pictures are on my external hard drive because same said

    In that process I lost my LR4 catalogs I was able to redownload the program but the catalogs are not there and not all of those pictures are on my external hard drive because same said teen decided they were going to borrow my external hard drive without telling me and "made room" on it. Is there a way to recover my catalogs? Please tell me there is because I was in the middle of working on a session when I had to wipe my drive and I would REALLY like to not have to go back and reshoot it. Any help would be wonderful!

    It depends on how you wiped your drive.  Depending on how you did it, only the directory was erased and the data can be found with drive recovery software.  Some are free, although there is a small charge for most of them (~$30).  You can usually download a trial version that shows if it will work and you have to pay to be able to save the found files.  Use Google to search for the software.  Different programs work differently and can find different things.
    Good luck.
    John

  • I have a 3GS. The iPod on the phone has made duplicates of some songs. I've tried using the "get info" dialog box to set all the information the same but the dups are still there. Even after erasing all music with iTunes they are still there.

    I have a 3GS. The iPod on the phone has made duplicates of some songs. I’ve tried using the “get info” dialog box to set all the information the same but the dups are still there. Even after erasing all music with iTunes, iTunes is empty but they are still on the phone.

    Some Users have reported that a Restore as New  has Resolved Issues after the Upgrade...
    Backup and Set Up as New Device
    http://support.apple.com/kb/HT4137

  • I need to buy a new macbook pro/i am from OR, but i am in PA now/when i asked about that i found the tax will be around 100$/there is some one said to me that if i have the ID state of OR i would be able to buy it by the samr price/is it true ?

    i need to buy a new macbook pro/i am from OR, but i am in PA now/when i asked about that i found the tax will be around 100$/there is some one said to me that if i have the ID state of OR i would be able to buy it by the samr price/is it true ?

    Goods delivered to you for personal or business use (not for resale) in Pennsylvania are subject to Pennsylvania state sales tax.
    If you are exempt from Pennsylvania state sales tax, or are a Not-for-profit corporation and have a DBA certificate in Pennsylvania, you may be able to buy tax-free. I doubt this.
    If you have the goods delivered to your address in Oregon, and there is no state sales tax in Oregon, you would not have to pay state sales tax.
    Since Apple does business in all 50 states, they are also obligated to charge you sales tax (for the state where the goods are delivered) when you buy from the Apple Online store.

  • HT1727 How can i retrieve purchased audiobooks that were not synced (problem encountered during sync process).  My account shows the purchase history, but the apps are no longer displayed in itunes or on my ipad or iphone

    How can i retrieve purchased audiobooks that were not synced (problem encountered during sync process)?  My account shows the purchase history, but the apps are no longer displayed in itunes or on my ipad or iphone.  I'm not very savvy with using iTunes - I don't think is very intuitive (unlike me:)).  Any help would be appreciated.
    Thanks

    Hello mcegirl4,
    Thanks for using Apple Support Communities.
    Please refer to the instructions in the following article to assist in downloading those previous purchases from iTunes and the App Store:
    Download past purchases
    http://support.apple.com/kb/HT2519
    Take care,
    Alex H.

  • TS1814 hello i have  a trouble with my i phone... i was trying to update a new software and at the end it says that there is some error and i cannot turn my i phone bak on all it shows is itunes logo in the midlle and usb cable with an arrow pointing to t

    hello i have  a trouble with my i phone... i was trying to update a new software and at the end it says that there is some error and i cannot turn my i phone bak on all it shows is itunes logo in the midlle and usb cable with an arrow pointing at the logo. If anyone knows what it is and what i should do please get back to me as soon as possible many thanks.

    http://support.apple.com/kb/HT1808

Maybe you are looking for

  • How to put Final Cut Pro Videos on Ipad

    I bought my iPad for one use, to show my clients my videos when i do meet and greats. Yet for some reason i have had the hardest time being able to do this. I have tried exporting my videos ever which way but get the same warning that iPad can't play

  • How to call TimesTen "command" from program

    I m trying to call command "dssize" from my java program. I can call any built in procedure with callable statement, but for "dssize" is not working. is that possible? Thank you and best regards.

  • XSLT Transformations

    Hello, I am new in strans transaction, i have created a XSLT program with this tag, how can i make that this label not appear in the xml file if it the variable nmens is empty?      <nmens>         <xsl:apply-templates select="nmens"/>       </nmens>

  • N97 mini arrrghh

    hi, im on my second n97 mini and had to do a hard reset recently , since then the updater ap on the phone tells me theres a firmware update to v12. something- mine is on v10.something. i have tried updating thru nsu but it cant detect the phone and t

  • PO Release procedure Tx.Code

    what is the transaction code for set up release procedre for PO with clasification ?