Whatsapp notifications doesn't work anymore, help please

Hello everyone,
I have a problem with my Whatsapp application on my Iphone 4. Since 1 week now I do not receive any push notification for new messages and I have to open the app to receive them. Moreover, all my notifications settings are "on" to accept Whatsapp notifications (on whatsapp and on the phone settings).
I tried to reinstalled Whatsapp, delete everything from my iPhone and then restore my data with the backup on my computer but it did not change anything, I still can't receive any notification, unless I open the application. However, I noticed that I can receive notifications when I've just closed the app (within 2-3 minutes) but after that, nothing anymore... Very strange.
Does anyone have an idea why? And any suggestions to try fix this problem?
For info, I'm using an Iphone 4, iOS 7.1.2, Whatsapp 2.11.8
Thanks everyone,
Charlotte

HI,
FINALLY FOUND THE SOLUTION :
SAVE ALL YOUR PHOTOS ON YOUR PC WITH CAMERA SCANNER, SAVE ALL YOUR CONTACTS / NOTES / REMINDERS TO ICLOUD.
THEN DO "ERASE CONTENT FROM IPHONE" IN THE RESET OPTION.
WHEN THE IPHONE RESTARTS, SELECT "CONFIGURE AS NEW IPHONE", AND GO THROUGH THE PROCESS OF STARTING UP.
ONCE ON HOME SCREEN, INSTALL WHATSAPP AGAIN FROM APP STORE AND VOILA, IT WORKS FINE. NOTIFICATIONS AND ALL.
GET YOUR CONTACTS BACK FROM ICLOUD, GET YOUR MUSIC BACK FROM ITUNES.
INSTALL ALL YOUR APPS AGAIN FROM SCRATCH. ;(
THATS THE ONLY SOLUTION TILL NOW.
REGARDS,
DANI.

Similar Messages

  • I changed the name of my apple id and now I can't use the app store on my phone correctly because it's using my apple id's old name. I signed out and in on itunes and synced my iphone. Still doesn't work. Help please?

    I changed the name of my apple id and now I can't use the app store on my phone correctly because it's using my apple id's old name. I signed out and in on itunes and synced my iphone. Still doesn't work. Help please?

    Settings>Store...tap the ID shown...sign out...sign back in with the ID you want to use.
    Note: Apps are forever tied to the Apple ID used to originally obtain them. They cannot be updated using any other Apple ID other than the one they were originally obtained with.

  • I lost my password on Mac (I cannot play youtube) and I tried many things...it doesn't work. Help please

    I lost my password on Mac (I cannot play youtube) and I tried many things...it doesn't work. Help please

    Did you restore a backup after you restored to factory settings? If you restored a backup, you should try restoring as new, but if hope that support already told you this.
    Have you tried using another WiFi networK? Do you have a computer running iTunes? If so, can you download apps or music on the computer?

  • Remote control Macbook Pro doesn't work anymore. Please help

    Hi,
    my IR remote control worked fine initally. Then I didn't use it for a while and when I did again, it didn't work anymore. I changed the battery, but no success. It just doesn't link anymore.
    What to do?
    Best regards, Peter

    If you  have AppleCare, call them.  Let them deal w/it.

  • HELP ! ASAP . Space Bar and .?123 doesn ' t work ! HELP PLEASE !

    Yesterday my ipod was working fine throughout the day and then around 7 i tried to type in something and press the spacebar then it wouldn't work , i have no clue why it doesnt work and then i tried to use the .?123 button and that one doesnt work either , all the letters all are fine like they work even the caps button works but for some odd reason the other two dont work ! HELP ! PLEASE ! ASAP . Thank you .

    Try the standard fixes;
    - Reset:
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Restore the iPod from backup via iTunes
    - Restore the iPod to factory defaults/new iPod
    If still problems you likely have a hardware problem and an appointment at the Genius Bar of an Apple store is in order.

  • JTextField - Setting the column size doesn't work. Help, please.

    Hi,
    I want to set the column size of a text field from another text field by the input from the user. However, it just doesn't work. The following is my code. Just check out the last anonymous inner class action listener. Somehow i can get the user text, but it just doesn't work.
    Thanks for any helpful inputs.
    * Introduction to Java Programming: Comprehensive, 6th Ed.
    * Excercise 15.11 - Demonstrating JTextField properties, dynamically.
    * @Kaka Kaka
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.Border;
    import javax.swing.border.LineBorder;
    import javax.swing.border.TitledBorder;
    public class Ex15_11 extends JFrame{
        // Create two text fields and three radio buttons
        private JTextField jtfUserText = new JTextField(10);
        private JTextField jtfColumnSize = new JTextField(new Integer(10));
        private JRadioButton jrbLeft = new JRadioButton("Left");
        private JRadioButton jrbCenter = new JRadioButton("Center");
        private JRadioButton jrbRight = new JRadioButton("Right");
        public static void main(String[] args){
            Ex15_11 frame = new Ex15_11();
            frame.pack();
            frame.setTitle("Excercise 15.11 - Text Field Property");
            frame.setLocationRelativeTo(null);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setVisible(true);
        // Start of Constructor
        public Ex15_11(){
            // Set the the frame layout
            setLayout(new BorderLayout(5, 5));
            // Create three panels and two labels
            JPanel jpText = new JPanel();
            JPanel jpHorizontalAlignment = new JPanel();
            JPanel jpColumn = new JPanel();
            JLabel jlblTextField = new JLabel("Text Field");
            JLabel jlblColumn = new JLabel("Column Size");
            // Create a button group for the radio buttons to be grouped
            ButtonGroup group = new ButtonGroup();
            // Group the radio buttons
            group.add(jrbLeft);
            group.add(jrbCenter);
            group.add(jrbRight);
            // set a titled border for a panel
            jpHorizontalAlignment.setBorder(new TitledBorder("Horizontal Alignment"));
            // Create a line border
            Border lineBorder = new LineBorder(Color.BLACK, 1);
            // the all the components to their corresponding panels
            jpText.add(jlblTextField);
            jpText.add(jtfUserText);
            jpHorizontalAlignment.add(jrbLeft);
            jpHorizontalAlignment.add(jrbCenter);
            jpHorizontalAlignment.add(jrbRight);
            jpColumn.setBorder(lineBorder);
            jpColumn.add(jlblColumn);
            jpColumn.add(jtfColumnSize);
            // add the panels to the frame
            add(jpText, BorderLayout.NORTH);
            add(jpHorizontalAlignment, BorderLayout.WEST);
            add(jpColumn, BorderLayout.EAST);
            jrbLeft.addActionListener(new ActionListener(){
                // Handle event
                public void actionPerformed(ActionEvent e) {
                    jtfUserText.setHorizontalAlignment(SwingConstants.LEFT);
            jrbCenter.addActionListener(new ActionListener(){
                // Handle event
                public void actionPerformed(ActionEvent e) {
                    jtfUserText.setHorizontalAlignment(SwingConstants.CENTER);
            jrbRight.addActionListener(new ActionListener(){
                // Handle event
                public void actionPerformed(ActionEvent e) {
                    jtfUserText.setHorizontalAlignment(SwingConstants.RIGHT);
            // Register the listener for the coloum size
            jtfColumnSize.addActionListener(new ActionListener(){
                // Handle event
                public void actionPerformed(ActionEvent e) {
                    System.out.println(Integer.parseInt(jtfColumnSize.getText()));
                    jtfUserText.setColumns(Integer.parseInt(jtfColumnSize.getText()));
    }Edited by: ChangBroot on Dec 16, 2008 6:13 PM

    don't forget to revalidate the JPanel after changing the components it holds:
        jtfColumnSize.addActionListener(new ActionListener()
          // Handle event
          public void actionPerformed(ActionEvent e)
            System.out.println(Integer.parseInt(jtfColumnSize.getText()));
            jtfUserText.setColumns(Integer.parseInt(jtfColumnSize.getText()));
            jpText.revalidate();
        });This will tell the jpText JPanel's layout manager to relayout the components that this JPanel holds. It should resize your JTextField. Note that in order to call this from within the anonymous inner ActionListener jpText will need to be declared "final". Either that or declared as a class field.

  • Expose doesn't work anymore. Please help!

    I recently installed the latest software update for my Macbook and just noticed that Expose no longer works. I tried changing the corner that would activate Expose but have had no luck in getting it to work.
    If anyone has any thoughts or suggestions that I could try, they would be most appreciated!
    -Greg
    MacBook   Mac OS X (10.4.7)  

    OK - just tried printing on 10.2.8 and no problem. Was able to get into the Print Center (X.2) and from there the Lexmark configure option worked fine - checked fluid levels, did the alignment, can print in "econo" mode. I notice that X.2 has an application called Print Center while in X.4 this app is called Printer Setup Utility. Are these the same animals or different? The windows on the two are similar but different:
    Both have the heading Printer List
    X.2 Print Center
    Options - Make Default, Add, Delete, Configure (note Configure pulls up the Lexmark Utility application and allows you to check fluids, etc.)
    X.4 Printer Setup Utility
    Options - Make Default, Add, Delete, Utility (same icon as Configure in X.2), Colour Sync, Show Info. Note that clicking on the Utility icon produces a "Lexmark utility unexpectedly quit" message
    Double clicking on the Printer Name on each produces a different result:
    X.2 - brings up the printer status (i.e Job printing) window
    X.4 - brings up the printer status window with options of Utility (clicking on this pulls up the "unexpectedly quit" message) and Supply Levels (clicking on this produces an "information not available" message)
    I'm thinking that the problem might be in the Printer Setup Utility that appears to have changed in X.4???? Thoughts?
    Dave
    iBook   Mac OS X (10.2.x)   eMac OS X (10.4.3)

  • Wifi calls not working anymore help please

    Hi ,
    Welcome to the Community.
    Please get in touch so our technical team can help.
    Click here for contact details.
    Thanks
    James

    Hi James thanks for the advise I tried calling them yesterday and they ran me through loads of tests to do and still don't have wifi calls as they have said either a problem with carrier settings or ios8.4 and might have to wait for Apple to do an update before it works for me again not happy as I rely on wifi calls as I have no signal at work or at home without it.

  • My Ipod won't let me download apps when I try to it says I have to turn on my cookies so I do but it still doesn't work. Help Please?

    I just got my Ipod today its a Ipod touch 4th generation, but it won't let me download apps from the app store pease help?

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Go to Settings>iTunes and App Stores and sing out of account and sign back in.

  • My Ipod classic freezes itunes and wont work anymore. help please

    My ipod classic everythime I plugg it in freezes itunes and I dont even see it appear in the sidebar of itunes. The ipod still charges and has good battery. When it all started, it also erased all the songs off of the ipod so I ant even use it now. here are the stats
    Retracts: 14
    Reallocs: 64
    Pending Sectors: 16
    PowerOn Hours: 58
    Start/Stops: 3634
    Temp: Current 27c
    Temp: Min 13c
    Temp: Max 54c
    I really want help! cheers!

    I also had this problem last week.  in the meantime,  I have upgraded Itunes in Maverick.  when i connected this am -  it took about 15 minutes for the connected iPod to show in itunes with message " ITunes cannot read the information on this IPod"   there was an "OK" button underneath the message.   select OK.   the iPod will show as empty onscreen and a prompt to reset to factory settings.   I reset to factory settings - ejected iPod - restarted computer - connected iPod - ITunes then treated my iPod as "new" - for setup.  now after sync - ALL IS FINE AGAIN... 

  • My Restrictions has a passcode that I didn't put on. Tried 0000 but it doesn't work. Help Please.

    Can't reset my location and privacy. Goes to Restrictions which then asks for a Passcode that I didn't put in.

    Mr-Marvin wrote:
    ... Goes to Restrictions which then asks for a Passcode that I didn't put in.
    Somebody did... as Restrictions Passcodes do not put themselves in.
    See your other post on this Topic...
    https://discussions.apple.com/message/23718922#23718922

  • I got this new Ipad. After a month my charger broke. So what I did is got a new charger that is not from Apple company it was from a different company. After 3 week it doesn't work anymore. What do I do. HELP ME PLEASE!!!!!!!!!!!

    I got this new Ipad. After a month my charger broke. So what I did is got a new charger that is not from Apple company it was from a different company. After 3 week it doesn't work anymore. What do I do. HELP ME PLEASE!!!!!!!!!!!

    Not normal. Take it (iPad, cable & charger) to an Apple Store for evaluation.
    Make a Genius Bar Reservation
    http://www.apple.com/retail/geniusbar/
     Cheers, Tom

  • I Got My Fourth Generation iPod touch Since 1year and a half, And My Home Button doesn't work anymore and when i'm on an app it bugs and goes to the menu. Is It Normal? Please Help me ASAP

    I Got My Fourth Generation iPod touch Since 1year and a half, And My Home Button doesn't work anymore and when i'm on an app it bugs and goes to the menu. Is It Normal? Please Help me ASAP

    The Home button "wears out" sometimes
    Try:
    fix for Home button
    iPhone Home Button Not Working or Unresponsive? Try This Fix
    - If you have iOS 5 and later you can turn on Assistive Touch it add the Home and other buttons to the iPods screen. Settings>General>Accessibility>Assistive Touch
    - If not under warranty Apple will exchange your iPod for a refurbished one for:
    Apple - Support - iPod - Repair pricing
    You can do it an an Apple store by:
    Apple Retail Store - Genius Bar
    or sent it in to Apple. See:
    Apple - Support - iPod - Service FAQ
    - There are third-party places like the following that will repair the Home button. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens

  • Since OS X update, under Citrix Reciever, the keyboard doesn't work anymore. The trackpad does. Please help.

    I have a Macbook air. OS X 10.9.5. Since OS X update, under Citrix Reciever, the keyboard doesn't work anymore. The trackpad does. Please help.

    The following from the Citrix forums indicates others are having the same problem and that one has opened a case number with Citrix: http://discussions.citrix.com/topic/355864-os-x-1095-safari-71/

  • Hi, I am wondering why my iphone won't send pictures through messages, I have MMS on and I have tried sending it with 3G on aswell and still doesn't work. Someone please help me :)

    Hi, I am wondering why my iphone won't send pictures through messages, I have MMS on and I have tried sending it with 3G on aswell and still doesn't work. Someone please help me :)

    Hey lozza567,
    Thanks for the question. I understand that you are experiencing issues sending MMS messages. The following resource may provide a solution:
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    Issues with sending and receiving MMS
    You will need these to send and receive MMS:
    - An iPhone 3G or later.
    - iOS 3.1 or later.
    - A cellular data connection. MMS isn't available if you are using only Wi-Fi.
    - A domestic MMS plan from your cellular provider. You may need an international messaging plan to send MMS to an international contact. Contact your carrier for more information.
    - A roaming MMS when using a cellular provider's network different from your billing cellular provider's network. Learn more about roaming and contact your carrier for more information.
    To resolve issues with sending and receiving MMS, follow these steps first
    1. Go to Settings and turn airplane mode off.
    2. Go to Settings > Messages and turn MMS Messaging on.
    3. Go to Settings > Cellular and turn Cellular Data on.
    4. Go to Settings > Cellular and turn Data Roaming on if you are roaming on a cellular provider network different from your billing provider's network.
    5. Verify that you have a cellular data connection in the status bar at the top left of your iPhone.
    6. Go to Settings and turn Wi-Fi off. Open Safari and navigate to www.apple.com to verify that you have a data connection. Turn Wi-Fi back on to continue using Wi-Fi for other features. If your cellular data connection isn't available, follow these steps.
    7. Verify that you can send and receive SMS. If you are unable to send and receive SMS, see the "Issues with sending and receiving SMS" section, above.
    8. MMS may not be available while on a call. Only 3G and faster GSM networks support simultaneous data and voice calls. Learn more about which network your phone supports.
    9. Restart your iPhone.
    10. Tap Settings > General > Reset > Reset Network Settings on your iPhone.
    11. Reseat your SIM card.
    If you are still unable to send or receive MMS, follow these steps
    1. Make sure that the contact trying to message you isn't blocked in Settings > Messages > Blocked.
    2. Go to Settings > Messages and turn on group messaging if you are sending a group message.
    3. Make sure that you are using the area code with the contact's phone number. When sending messages internationally, you also need the contact's international code.
    4. Verify a "Pay as you go" MMS plan has enough available balance. Contact your carrier if unsure of your MMS plan or available balance.
    5. 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.
    6. If the issue occurs with a specific contact or contacts, delete and re-create the contact from the Contacts application. Create a new message to the newly created contact and try again.
    7. Back up and restore your iPhone as new.
    8. If your carrier has recently ported your phone number, the porting process may not be complete. Contact your carrier to confirm that the porting process is complete.
    9. Contact your carrier to verify that you are provisioned to send SMS and are in an area with cellular coverage.
    10. Contact your carrier to verify that there are no blocks or filters placed on your wireless account preventing you from sending SMS.
    11. Your carrier may require APN settings to be modified to use MMS. Learn more about when you should adjust APN settings.
    Thanks,
    Matt M.

Maybe you are looking for

  • Table transformation from two different database

    Hi all, I am trying to load table from one database table to another database table in ODI 10g.I have created two physical and logical topology. But when in interface design i have drag the source and target tables in the diagram window, but here it

  • Report running very slow.. taking too much time

    Dear Oracle Report experts, I have developed report in oracle reports bulider 10g. while running it from report builder through main menu *** data is coming very SLOW *** within 55 Minuts. But, If same query is executing from SQL/PLSQL deverloper it

  • Work flow Event Creation.

    Hi All, I would like to create a custom event in object type BUS2038 to send notification if extra information is required on the Order. can you please take me through the procedure of creating an event and linking it to an object type and field on t

  • Display pattern questions

    I would like to be able to set up a display patter that will add some asterisks or some other characters on each side of what ever a user enters in a field in order to flag the text. Is that possible? or is there a better way to do this than using di

  • Daisy Chain Question

    I am considering buying two external hard drives from OWC, one (500GB) a quad interface for audio production, and a second a simple fw400/usb2 for backup (750GB). I was wondering if anyone knew if you could daisy chain the two together the following