Since update, will not send or receive picture messages unless using imesage

Since the I0S6 update, my phone will not send or receive picture messages unless it's being sent through iMessage.
I know of other people having the same problem, with different versions of the phone and different carriers.
Anyone else?
I have the iPhone 4 with Sprint.
Friend has the iPhone 4s with Verizon.

Check settings/message and make sure MMS is ON.  Also chcek that your carrier/your plan allows sending of pictures over MMS

Similar Messages

  • IPhone 5 will not send or receive picture messages ? Tried everything !

    Recently purchased iPhone 5 and have found that I am unable to send or receive picture messages I have tried all of the suggested fixes and still will not work ! I find this extremely annoying and a bit ridiculous that considering the iPhone 5 is meant to be the best phone available to date I can't send or receive a simple mms message this needs sorted !

    First does your carrier contract support MMS?
    If so, is Settings > Messages > MMS Messaging  turned ON?

  • My iphone 4 will not send and receive text messages at random times

    My iphone 4 will not send and receive text messages at random times.  My brother has the same phone, lives in the same home and doesn't have this problem.  I can't receive messages without my iphone displaying a message asking for my phone number at random times. It happens intermittently.  Does anyone know why this happens? I am referring to regula text messages not imessages.  I have turned it off and also updated to the most recent software. thanks

    I've been an AT&T customer since they were under different names in the 90s and have never heard/seen that. I would check with them. I'd really like to see that error. To get a screenshot on the phone, press the home button and sleep/wake button together quickly and release. You will see the screen flash slightly and hear the camera shutter noise.

  • My iPhone 5 will not send or receive pictures?

    I have an unlocked iPhone 5 purchased directly from Apple.  I am using it on StraightTalk.  Everything seems to be fine except for my ability to send and receive picture messages.

    StraightTalk is a prepaid service.  It uses other carriers towers.  They require a GSM phone and you can use a phone from AT&T or T-Mobile.  I just switched over recently and for the most part it is great.

  • Will not send or receive pictures

    when I am at home on my house wifi...I can text, but am unable to send or receive pictures or icons.

    Picture texts will not send/receive over wi-fi, they require a mobile data connection.  They count against your text package, though, not your data package.

  • My iPhone 4 will not send or receive pictures unless from another i product

    i recently had my i phone connected thru staight talk, and im am unable to send or receive pictures via text unless its another iphone, the phone has not been jail broken or anything, is there something in the settings i need to do, help...........or is that the cost for jumping ship from at&t

    Your carrier is the one that enables SMS/MMS.  Contact them.
    You understand the difference between SMS/MMS and iMessage. Right?
    Also: Settings > Messages > Send as SMS > ON  (Should not make a difference when sending to non-iOS phones)

  • HT4623 my phone3 will not send or recieve picture messages. How do I fix that?

    I have an Iphone 3 and net10 is my provider. I am unable to send or recieve picture messages or multi-media messages. Net10 told me to contact apple and there were some things in programing that will fix my problem. Is this true?

    That's a 3GS phone  (pls update your profile)
    Net10 is not a supported carrier of the iPhone so there are settings that need to be changed to use MMS/iMessage etc.
    You would need to contact them for the proper instructions.

  • IPhone will not send or receive group messages

    I recently got an iPhone because I needed to be able to group text with my boss and coworkers. However, upon getting a brand new iPhone 4s (Verizon) I discovered that my phone still does not send or receive group texts. I have turned on group messaging so I should be receiving them. Any ideas on what is wrong? Is it something I can fix or do I need to go to the Apple store?

    Make sure MMS is On in Settings > Messages.
    If that doesn't work, take a look at this -> iOS: Troubleshooting Messages

  • Why will my iphone 5 not send or receive picture messages?

    I have turned  off the imessages and also synced it with itunes as was advised by my mobile network, in addition to turning the phone off and on again but still will not work. Any suggestions?

    Does your carrier's plan allow MMS?
    MMS is a standard way to send messages that include multimedia content to and from mobile phones. It extends the core SMS (Short Message Service) capability that allowed exchange of text messages only up to 160 characters in length.
    Some accounts require additonal services (i.e. cost more) to make MMS supported on a device.  It all depends on your carrier.

  • My Droid Incredible 2 will not send or receive pictures with texts.

    It used to work fine but when received now, it gives option to "download" or "decline" -- download ends in a loop that never works.  I also can no longer send texts with pictures attached.  Help?!

        Help is here! Picture messaging is extremely important to me. There are a few things we can check in order to get your MMS working again. We first want to make sure your other data services are working. Are you able to access the browser from the device?
    You can also go to settings>applications>all>go to messaging>clear cache
    Also, clear out any threads of old messages and try to send your MMS again.
    Please let me know how that works for you.
    Tamara H.
    Follow us on Twitter @VZWSupport

  • Socket will not send or receive the message (sending to 127.0.0.1)

    I don't know if it's my client or my server that's going wrong. I'll put the code here...can any one please tell me what I'm doing wrong? =(
    CLIENT
    public class ClientSession {
        private ChatWindow parentWindow;
        private BufferedReader in;
        private PrintWriter out;
        public ClientSession(ChatWindow parentWindow, String ip, int port) {
            this.parentWindow = parentWindow;
            try {
                Socket client = new Socket(ip, port);
                parentWindow.say("Connection succesfully established", true);
                System.out.println("Now connected to " + ip + ":" + Integer.toString(port));
                out = new PrintWriter(client.getOutputStream());
                in = new BufferedReader(new InputStreamReader(client.getInputStream()));
            catch(Exception e) {
                System.out.println("Error while connecting: " + e.getMessage());
                parentWindow.say("Failed to connect. Type /connect to retry.", true);
        public void sendMessage(String message) {
            System.out.println("Sending message: " + message);
            out.println(message);         
        }SERVER
    public class Server implements Runnable {
        private int port;
        private HashMap<String, ChatWindow> chatWindowList;
        private String name;
        public Server(int port, HashMap<String, ChatWindow> chatWindowList) {
            this.port = port;
            this.chatWindowList = chatWindowList;
            this.name = "";
        public void run() {
            try {
                ServerSocket server = new ServerSocket(port);
                while(true) {
                    Socket connection = server.accept();
                    String ip = connection.getInetAddress().getHostAddress();
                    ChatWindow chatWindow;
                    if(chatWindowList.get(ip) == null) {
                        chatWindow = new ChatWindow(ip, port);
                        chatWindowList.put(ip, chatWindow);
                        chatWindow.connect();
                    else {
                        chatWindow = chatWindowList.get(ip);
                        chatWindow.activate();
                        chatWindow.connect();
                    ServerSession serverSession = new ServerSession(connection, chatWindow, name);
                    Thread t = new Thread(serverSession);
                    t.start();
            catch(Exception e) {
                System.out.println("Error at the server: " + e.getMessage() + e.toString());
        public void setName(String name) {
            this.name = name;
    }SERVERSESSION
    public class ServerSession implements Runnable{
        private String name;
        private ChatWindow chatWindow;
        private PrintWriter out;
        private BufferedReader in;
        public ServerSession(Socket connection, ChatWindow chatWindow, String name) {
            this.chatWindow = chatWindow;
            this.name = name;
            if(this.name.equals("") || this.name.equals("Please set name")) this.name = "No name set";
            try {
                out = new PrintWriter(connection.getOutputStream());
                in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
            catch(Exception e) {
                System.out.println("Error while writing to client:" + e.getMessage());
        public void run() {
            System.out.println("Session with Client accepted");
            loopTextAcceptance();
        public void setName(String name) {
            this.name = name;
        private void loopTextAcceptance() {
            try {
                chatWindow.say("reading...", true);
                while(true) {
                    chatWindow.say("...", true);
                    System.out.println("reading");
                    String line = in.readLine();
                    System.out.println("line read");
                    chatWindow.say(line, false);
            catch(Exception e) {
                System.out.println("Error while recieving message: " + e.getMessage());
    }thanks for reading!

    the new code resulted from removing the ChatWindow stuff and any other places the errors can't be, is this better?
    Server
    public class ServerSession implements Runnable{
        private PrintWriter out;
        private BufferedReader in;
        public ServerSession(Socket connection) {
            try {
                out = new PrintWriter(connection.getOutputStream());
                in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
            catch(Exception e) {
                System.out.println("Error while writing to client:" + e.getMessage());
        public void run() {
            System.out.println("Session with Client accepted");
            loopTextAcceptance();
        private void loopTextAcceptance() {
            try {
                chatWindow.say("reading...", true);
                while(true) {
                    chatWindow.say("...", true);
                    System.out.println("reading");
                    String line = in.readLine();
                    System.out.println("line read: " + line);
            catch(Exception e) {
                System.out.println("Error while recieving message: " + e.getMessage());
    }Client
    public class ClientSession {
        private ChatWindow parentWindow;
        private BufferedReader in;
        private PrintWriter out;
        public ClientSession(String ip, int port) {
            try {
                Socket client = new Socket(ip, port);
                System.out.println("Now connected to " + ip + ":" + Integer.toString(port));
                out = new PrintWriter(client.getOutputStream());
                in = new BufferedReader(new InputStreamReader(client.getInputStream()));
            catch(Exception e) {
                System.out.println("Error while connecting: " + e.getMessage());
        public void sendMessage(String message) {
            System.out.println("Sending message: " + message);
            out.println(message);
            System.out.println("message sent");
        }output:
    opening connection: 127.0.0.1 <- Client opening session, starting new ClientSession thread (not in code)
    Now connected to 127.0.0.1:3300 <- ClienSession thread connected
    Session with Client accepted <- Server accepting request from client (not in code)
    reading <- ServerSession in the while(true) loop
    Sending message: qdsf <- using the SendMessage function
    message sent <- same function
    <- nothing is said by the server =( d*mn you server!! read it!!! xD
    Edited by: Dodgedog on Jul 6, 2008 5:40 PM

  • Updated my 3GS to 6.0.1 now I cannot send or receive picture text unless I'm wi-fi with I message. ??

    Updated my iPhone 3GS to 6.0.1 and now can't send or receive picture messages unless using wi-fi iMessage. ???

    Notify your carrier.  Make sure MMS is provisioned for your account.  Also be sure it's enabled in your setting menu

  • Phone will not send or receive any text messages

    My Samsung Illusion will not send or receive text messages but the calling feature still works. I've tried all of the troubleshooting techniques, including a hard factory reset, yet the messenger still won't work. Any suggestions??

        abbs35,
    This is concerning! When did this stop working? Do you get any type of error message? Please share.
    ErinW_VZW
    Follow us on Twitter @VZWSupport

  • ? Exalt does not send or receive text messages

    My Exalt Android phone will not send or receive text messages and the Verizon support area is not responding.

        We apologize for the delay, DieselDoug!
    What device do you have exactly? We want to make sure we get the texts to work again. We are not familiar with Exalt Android.
    Are you using  a text app?
    TamaraH_VZW
    Follow us on Twitter @VZWSupport

  • TS2755 Since updating my iphone to ios7 my phone will not send or receive imessages. Please help?

    Hi there,
    Can anyone help? Since updating my iphone to the latest ios7 my phone will not send or receive imessages and is now very slow.

    Go to Settings>Messages> turn iMessage off. The go to Settings>General>Reset>Reset all settings. Do a reset on the phone. Hold the sleep/wake and home buttons together until you see the Apple logo and then release. After the phone restarts, go back into Settings>Messages and turn on iMessage. See if it activates.
    Apple has acknowldged an issue with iMessage and is working on an update. Look for that to be released sometime this week.

Maybe you are looking for

  • Links to text items in context

    When I carry out a custom search, the results displayed can be linked to via the display name or image link. However, when the user clicks on the display name link they are directed to a page which displays the text item alone - out of context from t

  • CRVS2010 beta -  date field not display in details section

    I use Visual stdio 2010 so i install crystal report 2010 for report. It work fine . but in report detail section there is date field then it will not be display. alos if we do group on date field it will give error when we try to open report. Plese g

  • Incorrect Apple TV Preset

    Hi, have just got myself an Apple TV and was looking forward to getting the wife off my back; ever since I got a Sony Hard Disk AVCHD camcorder she's not seen any family video. I thought I had an easy life ahead as Final Cut Express copes so nicely,

  • AE cs6 video preview window doesn't work.

    So the preview window of after effetcs cs6 isn't working. It just shows black screen. I need help fast. Example pic: http://gyazo.com/d1219b0b95d7b2bd59e0980506db7c95

  • Cannot seem to read a plain text file

    this is actually macromedia flash mx 6.0, which I believe runs AS2 but is compatible with AS3 file = date.txt file contents: xdate=12/01/2013 the file is in same directory as the .swf code to read the file contents into a variable: DateFile = new Loa