How to not receive same messages as my daughter

I gave my daughter my iPhone 4 cause I had bought myself iPhone 5 I would like it if when I receive iMessage that she won't get it either and vies versa it's driving me nuts can I get her to have her own account how do I do it

Sign her out of your iCloud account on the device in these locations:
Settings > iCloud > Delete Account, Delete from Phone
Settings > Messages > Send & Receive
Settings > FaceTime
Settings > Game Center
And if you want to keep separate purchases:
Settings > iTunes & App Stores
This will allow her to create her own Apple ID for iCloud.

Similar Messages

  • How do I receive same messages on both iPad and iPhone?

    Before apple restored my iPad all messages were appearing on both iPad and iPhone. I am not sure what I need to do to set my iPad to receive all messages.
    I have compaired both settings and they are pretty much the same. What can I do to fix this"

    I am giving you a solution assuming you are referring to iCloud mail..... so try this...
    Setting>iCloud>turn mail off

  • How can I stop my childs ipod and ipad receiving same messages

    how can I stop my childs ipod and ipad receiving same messages, they were both set up to the same email account and itunes account. I have just set up a new itunes account for my daughters ipod and changed hers to the new account but my ipad still seems to be getting the same messages from her ipod which is what I wanted to avoid, any suggestions ?
    Mel X

    i  changed  itunes and email password. and afew others  will that stop the text messages form going to it.

  • All of a sudden I can not receive text messages on my MOTOX. Does anyone know how to solve this problem. I can send them, but can't receive them.

    My MOTO X was working fine, then all of a sudden, I can not receive text messages. I have checked the settings and they look correct to me, and I have done everything the web site recommends, except wiping the phone and starting over, to try and fix it. Has anyone else had this issue, and how did you resolve it?
    Thanks so much.

        That's strange that your Moto X wont receive any text. Thank you for trouble shooting the issue. Let's see what's going on! Does your device have any physical or liquid damage? Does anyone else have an issue with calling or texting? What zip code are you in?
    VanetrisC_VZW
    Follow us on Twitter @VZWSupport

  • I have set up iMessages on my ipad but now I'm not receiving any messages on my iPhone how can I fix this.

    I have set up iMessages on my ipad in error now I'm not receiving any messages on my iphone, can anyone advise how to fix this or just undo everything I have done, don't necessarily need messages on my ipad

    Hi there Shwalks,
    You may find the troubleshooting steps in the article below helpful.
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    -Griff W. 

  • TS4268 I CAN NOT RECEIVE TEXT MESSAGES FROM PEOPLE USING IMESSAGE - I HAVE MY IMESSAGE TURNED OFF BECAUSE I DO NOT WANT TEXTS GOING TO ALL MY ACCOUNTS - HOW DO I RESOLVE THIS PLEASE HELP - MISSING SEVERAL IMPORTANT COMMUNICATIONS...

    I CAN NOT RECEIVE TEXT MESSAGES FROM PEOPLE USING IMESSAGE

    On an iPhone your iMessages will go to your phone number.
    You can select another email to use on iPod or iPad.
    Go to settings
    Messages
    Send and receive
    Check your phone number and uncheck the common Apple ID you share so your messages will not go to other devices.

  • I am having trouble sending text messages. They aren't always going through. And sometimes I'm not receiving text messages.  I also have voicemails that I didn't receive until late at night that were left early in the day. I need to resolve this issue ASA

    I am having trouble sending text messages. They aren't always going through. And sometimes I'm not receiving text messages.  I also have voicemails that I didn't receive until late at night that were left early in the day. I need to resolve this issue ASAP!

    julie@remax,
    I know that this would concern me just the same and we want to make sure that your device is connected and receiving these notifications when available. How long have you been having this issue? Are you receiving a specific error message when sending a message? Are you aware if this happens in one location specifically or everywhere you go? Does the issue with messaging occur with all numbers? Share some details, so that we may assist.
    AdamG_VZW
    Follow us on Twitter @VZWSupport

  • How can I receive text messages on my iPhone and iPad ?

    How can I receive text messages on my iPhone and iPad?

    If you are using the iMessage app on your iPad, you need to use the same email address you use on your iPhone.  But, be advised, that when people email your cell number on your iPhone, you will not get the message on your iPad.  iPad is not a cell phone.  And also know that iMessage on iPad is intended to only let you text with other iOS (iPhone, iPad, iPod Touch) devices. 
    If you want to be able to text to anyone from your contacts list (those for example who do not own an iOS device), there are free apps in the App Store, such as TextFree, which you can download.  But, TextFree will assign you a number (I know kind of odd since iPad is not a cell phone), which you can then text anyone you want.  You'll just need to let your friends know the texts are coming from you.

  • JMS consumer is not receiving any messages. am i missing something ?

    Hi bellow is the consumer code, my consumer is not receiving any messages even though there are messages in the queue. I have tried to debug the code. but the consumer is not calling the onMessage() method even though there are messages in the queue. Please guide me on the same. if i am missing something.
    package org.icrm.cons;
    import javax.jms.Connection;
    import javax.jms.Destination;
    import javax.jms.ExceptionListener;
    import javax.jms.JMSException;
    import javax.jms.Message;
    import javax.jms.MessageConsumer;
    import javax.jms.MessageListener;
    import javax.jms.Session;
    import javax.jms.TextMessage;
    import org.apache.activemq.ActiveMQConnectionFactory;
    public class JConsumer implements ExceptionListener,MessageListener{
         public static void main(String[] args){
              JConsumer consumer = new JConsumer();
              System.out.println("here 1");
              consumer.consumeMessage("MyQueue");
         public void consumeMessage(String queueName){
              try{
                   System.out.println("here 2");
                   ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory("tcp://localhost:61616");
                   Connection connection = connectionFactory.createConnection();
                   connection.start();
                   connection.setExceptionListener(this);
                   Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
                   Destination destination = session.createQueue(queueName);
                   MessageConsumer consumer = session.createConsumer(destination);
                   //ASync
                   consumer.setMessageListener(this);
                   //Sync
                   /*Message message = consumer.receive(1000);
                   TextMessage textMessage = (TextMessage)message;
                   String text = textMessage.getText();
                   System.out.println("Received : " + text);
                   consumer.close();
                   session.close();
                   connection.close();
              }catch(Exception e){
                   System.out.println("Caught: " + e);
                   e.printStackTrace();
         public void onException(JMSException arg0) {
              System.out.println("JMS Exception occured.  Shutting down client.");
         public void onMessage(Message message) {
              try{
                   TextMessage textMessage = (TextMessage)message;
                   String text = textMessage.getText();
                   System.out.println("Received: " + text);
              }catch(JMSException e){
                   e.printStackTrace();
    }

    Hey,
    I commented the following line of code. and i got all the messages.
    //consumer.close();
    //session.close();
    //connection.close();but then when should i close the consumer, session and connection object ???

  • I am not receiving text messages on my phone

    I am not receiving text messages on my phone

    I am having same issue.  My text messages don't recognize iPhones and are sending as a text message and I cannot get text messagesn return.

  • Unfortunately messaging has stopped and not receiving text messages

    I, am also having issues with "unfortunately messaging has stopped", AND, NOT receiving text messages. I also have 2 other Droid Ultra's on my account doing the same thing. This is totally unacceptable!!! I am not paying $600 for a piece of crap phone that does not work. I had my phone recently replaced because Verizon thought that was the problem. I can't even get the message screen to stay up long enough to type a message, if it opens at all!
    Also I am getting tired of NOT receiving messages sent to me! When I do get them, the icon tells me I have a message with a number usually no more than a designation of 2 but reverts back to a 1, and, when I open the message, read it, and close out of it, if it does not close out on its own because of stopped messaging, the number on the message icon does not clear out. I have to turn off the phone and restart it to clear it. This is not acceptable and I would expect better from Verizon, not the run around!! If I had to send an urgent message and get a reply, do to the fact I am disabled, and this is my only way to communicate, that this is extremely unacceptable!!!!
    I expect this to be resolved yesterday, not when you all get around to it, OR, issue me a Samsung!!! I am sure all of the others would agree!!!
    I look to hear from you ASAP!!

    Hello,
    I am using the messaging app that was preloaded with the phone, the green face icon. I do not have an "Android Keyboard" app, but I have cleared the cache on the "Messaging" app, several times. I have also gone to the Verizon store where an associate did a soft reboot, telling me that would work. A very short time later, the error message started appearing again--so this did not work either.
    The error message comes very sporadically. Sometimes several in a few minutes, other times not for hours.

  • Iphone5 MMS: older phones not receiving group messages

    This discussion was started here: https://discussions.apple.com/thread/5178260
    Iphone5, iOS6.1.4, Verizon. Brand-new phone I bought a couple weeks ago. So its brand-new, mint condition, untouched.
    My phone number was ported from AT&T to Verizon. No problems as far as I can tell.
    I've been sending group messages, not realizing more than half of my friends/family were not receiving them.
    1.My aunt lives on the other side of the country and has some kind of smartphone(not iphone) and she's been receiving them just fine.
    2.My mother has a normal cellphone that is several years old AT&T, but she has only being receiving the subject line of the message. When she tries to "retrieve" the message, it always says "failed to retrieve". She has no problem getting text messages from everyone except me.
    3.My brother has a different model of a normal phone and he is on the same AT&T plan with my mother and he is able to receive my group messages.
    4.Some other friends with older phones and AT&T are not receiving the messages at all.
    So it's been very hit 'n miss on who can receive these group messages.
    I turned off iMessages first, then I finally turned off MMS Messages, and my mother was finally able to receive a group message from me.
    She has always been able to receive an individual message from me with MMS and iMessages turned on. This is strictly a group message problem of some kind.
    I was only sending her messages with text content, but the group messages always say MMS at the top regardless of what you send. I'm assuming turning off MMS forces group messages to use SMS.
    Why is iphone not able to degrade gracefully with a group message? Why can't it detect older phones in a group message and say "hmm...maybe I should use SMS, especially since the iphone is sending a message with text-only content anyway."
    It's really irritating that I have to either, remember to send INDIVIDUAL messages to every single person, OR keep MMS turned off just so older phones can receive a group message.
    Has anyone else had these kinds of problems, and if so, what did you do?
    I feel like the problem is on my end(Verizon) rather than my friends' end since so many of them are not receiving MY messages. They are receiving everyone else's messages.
    Facts:
    1. INDIVIDUAL messages work. (MMS is turned on.)
    2. SMS-ONLY GROUP messages work. (MMS is turned off so SMS is forced.)
    3. MMS group messages, even with text-only content, are not being received by some people, others are receiving them just fine.

    iMessages is not the problem. None of my friends have an iphone so I haven't been using iMessages at all.
    The problem is SMS vs MMS on group messages. For some reason, the default for group messages is MMS, even though the contents I send are only text. My mother and some of my other friends cannot receive MMS messages, but they can receive SMS messages. (I don't know if its because their phones are too old or because of their specific txtmsg plan with their provider.)
    So she automatically doesn't receive messages when I send them as a group instead of individually because they always send as MMS simply because they are GROUP and not because of the contents of the message.
    Why do group messages always send as MMS instead of SMS?
    I turned MMS OFF, in order to force group messages to always use SMS, but then the MMS setting turns itself back ON the instant I send an individual MMS to a friend who can receive those types of messages. Once MMS setting is back on, I don't realize it and send out a GROUP message, which doesn't reach everyone because once again MMS is being used instead of SMS.
    If group messages would send as SMS when I am only sending text, then there would be NO problem. It shouldn't use MMS unless I'm sending a picture or something.

  • I am not receiving text messaging!

    I am not receiving text messaging but I can send text

    I can't send texts
    How did you figure out how to get iPad to recognize addresses to text to?

  • Thunderbolt is not receiving text messages

    I recently purchased a thunderbolt, approximately a month and a half ago.  It was working completely fine until about a week ago, when I started having issues with not receiving text messages.  It can be resolved by resetting the phone, but there's no way to know whether or not I need to do that unless I'm in the middle of a text conversation and I suddenly stop receiving messages.  I know my messages are going out because I can still communicate through facebook and other non SMS or MMS applications, and all other functions work properly, but this happens once or twice a day, and is extremely frustrating.

    I'm having the same problem.  My Thunderbolt is a refurb I received when my first Thunderbolt died this past fall.  I never had any SMS/MMS issues until very late February.  The problem is that I cannot receive any text messages.  Sending messages works fine, but I cannot receive any.  If my wife sends me a message, her phone will say it goes through, but I get nothing on my end.  This was a huge problem when I went 4-5 days without receiving any texts since I didn't know I wasn't receiving the messages.
    The problem resolves itself when I reboot/restart the phone, but I don't want to have to reboot my phone every night. The most recent time, I went 2 days without any texting problems before the "can't receive" issue came back.
    My Thunderbolt is STOCK (radio, ROM, etc.).  I have no 3rd-party texting apps -- I'm using the stock messaging app.

  • After installing update, I repeatedly get message "your computer must be restarted to finish a previous upgrade," and I've restarted several times, and I when trying uninstall receive same message.

    Yesterday, I ran an update that was available. This morning when opening the browser, it stated that I needed to retsart my computer to complete the upgrade. I rebootted five times (at least) and it will not start Firefox. I tried uninstalling and planned to reload (apparently losing all of my favorites) and I can't do that--receive same message. I'm using IE today :(

    Run the Firefox program once as Administrator (right-click: Run as Administrator).
    If that doesn't help then do a clean reinstall.
    Download a fresh copy of Firefox ( http://www.mozilla.com/firefox/all.html ) and do a reinstall of Firefox on top of the current version. You won't lose your personal data like bookmarks doing that ([http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder]).
    See http://kb.mozillazine.org/Software_Update (Software Update not working properly)<br />
    You may need to remove the files in the updates and updates\0 folder:
    Vista/Windows7:
    C:\Users\&lt;user&gt;\AppData\Local\Mozilla\Firefox\Mozilla Firefox\updates
    (%LOCALAPPDATA%\Mozilla\Firefox\Mozilla Firefox\updates)

Maybe you are looking for