App World and Facebook not working !!!

After Updating the OS - My Facebook and AppWorld is not working giving the error ' You do not have sufficient wireless coverage or you connection to the wireless network is turned off ' - App World ........... " You are currently on a service plan that does not support his application . If you want to use this application , Please contact your service provider to Upgrade your Data Plan ' - Facebook ......... But my phone is connected to a working Wifi - Twitter App and Browser are working well
Regards Eree - Follow me on Twitter - Facebook - Google+
For More visit My Blog
Solved!
Go to Solution.

Ereeamazing wrote:
Not Connected
No BBM services on the device.. a quick search of the forums here would have told you that, since you're "Super Contributor" you should know how to search for the forums for other resolved issues same as you're experiencing.
On your BlackBerry device, go to:
1. On OS5 devices: Options > Advanced > Host Routing Table > Menu > Register.
On OS6 devices: Options > Device > Advanced > Host Routing Table
2. Resend your service books from your carrier BIS site:
From your handheld device:   http://www.blackberry.com/btsc/KB15402
Go to the Personal Email Set Up icon and log in. Then under Help!, select Service Books, then select Send service Books.From your desktop PC:  http://www.blackberry.com/btsc/KB02830
North American Carriers - scroll down to select your carrier
WorldWide Carriers - Find your carrier on the list
3. With the BlackBerry device powered ON, remove the battery a few seconds and then reinsert the battery to reboot. This reboot, even if you have already done this, is often needed to install the service books.
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

Similar Messages

  • BBM and facebook not working

    I have just bought a Blackberry Curve 9300 and cannot get the BBM to work or activate, I received an email asking me to validate which I tried but a message came up saying this email address not waiting for activation. I also cannot get facebook to work on phone I have looked at so many options but nothing works is there an easy ABC way of getting my phone to work please!!

    Thank you for replying so promptly. I am not very good at these techical things. The Model is Blackberry Curve 9300, is the carrier name my contract provider if so it is SFR (I live in France but I am Englisg so using an English system on my phone)
    Not sure what a data plan unless that is the type of contract in which case it is monthly contract where I pay a set amount and receive an hour of calls, unlimited text messages and I thought BBM as well
    I believe the operating system is 5.0
    I'm afraid I don't know what the memory is or where to find it
    I haven't received any error messages as I can't get connected to BBM or Facebook on my phone. I gave my PIN number to my daughters and I received a message saying Pending ( waiting for authorisation) - how do I do this? as I can't use BBM
    I have had this problem since I bought the phone a week ago and I don't have any Apps as when I click onto Blackberry Apps it says Blackberry App World is having trouble connecting to the Blackberry App World server. Verify your network connections and try again. Please can you explain how I do this
    When I go into Manage connections then into service status
    The list reads as follows
    Phone Number : Unknown number
    Status available
    Connection - Mobile network
    Blackberry Interent Service
    Connection : Not connected
    Blackberry Enterprise Server
    Connection : Not connected
    Mobile Coverage - 3G
    Provider SFR
    Wi-Fi Network
    Active Profile - Not connected
    SSID - Not connected
    Type - Not connected
    Status - Off
    When I go inot Set Up Wi-Fi connections and select a network it then shows my open Wi-Fi network so I know that worksOK
    I hope this is of some help in trying to sort out my problems. At the moment I feel as though I have bought a phone that doesn't work as it should
    : 3

  • App world registration does not work on PC

    Registered Playbook during setup, created my Blackberry Id - was only asked for email, username and password- when trying to login to App world on pc- it brings up download brower add in , after download sits on "connect your blackberry device" without proceeding further. Thus I am unable to update registration with paying options, nor I am able to download or purchase any apps. Instructions on here do not work, because it never goes to carousel, just sits there waiting for blackberry device, while the Blackberry Desktop in running and connecting and seeing the Playbook just fine.
    Also how lame is it to go to Appworld website on your Playbook and see that "your browser is not supported" message.

    I tried it on Internet Explorer 9 and latest Chrome, in Windows 7.

  • Adobe Air is very smiller than Zinc App - Reposition and Resize not working?

    Hello guys, i have found and readden nice solution like NativeWindow was saved positions and sizes If i close Adobe Air App and i open again like NativeWindow was moved and resized. It is very simple working. And it works fine. 100 % Good! But how does it work with Zinc App because it doesn't work for positions and sizes. How do i fix? I have upgraded code from FileSerializer.as With mdm.Script:
    package
      import flash.events.Event;
      import flash.net.URLRequest;
      import flash.net.URLStream;
      import flash.utils.ByteArray;
      import mdm.Application;
      import mdm.FileSystem;
      import mdm.System;
      public class FileSerializer
      public static function WriteObjectToFile(object:Object, filename:String):void
      var fileExists:Boolean = mdm.FileSystem.fileExists(mdm.Application.path+filename);
      var outByte:ByteArray = new ByteArray();
      outByte.writeObject(object);
      if(fileExists == false)
      mdm.FileSystem.saveFile(mdm.Application.path+filename, "");
      mdm.FileSystem.BinaryFile.setDataBA(outByte);
      mdm.FileSystem.BinaryFile.writeDataBA(mdm.Application.path+filename);
      private static var stream:URLStream;
      public static function ReadObjectfromFile(filename:String):Object
      var fileExists:Boolean = mdm.FileSystem.fileExists(mdm.Application.path+filename);
      if(fileExists == false)
      var obj:Object;
      stream = new URLStream();
      stream.addEventListener(Event.COMPLETE, function(evt:Event):void
      obj = stream.readObject();
      stream.close();
      stream.load(new URLRequest(filename));
      return obj;
      return null;
    That is improved to mdm.Script and it saves sometimes.
    And i have create UserPref.as
    package
      public class UserPref
      public var zincForm:String = "MainForm";
      public var zincType:String = "sizeablestandard";
      //public var zincSWF:String = "MainApp.swf";
      public var zincPosX:Number;
      public var zincPosY:Number;
      public var zincWidth:Number;
      public var zincHeight:Number;
    And i create MainApp.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
      xmlns:mx="library://ns.adobe.com/flex/mx"
      layout="absolute" applicationComplete="applicationCompleteHandler(event)" creatingComplete="creationCompleteHandler(event)">
      <fx:Script>
      <![CDATA[
      import mdm.Application;
      import mdm.Event;
      import mdm.Forms;
      import mdm.mdmForm;
      import mx.events.FlexEvent;
      private var up:UserPref;
      private var form:mdmForm;
      protected function applicationCompleteHandler(event:FlexEvent):void
      mdm.Application.init();
      this.up.zincPosX = this.form.x;
      this.up.zincPosY = this.form.y;
      this.up.zincWidth = this.form.width;
      this.up.zincHeight = this.form.height;
      FileSerializer.WriteObjectToFile(this.up, "pref.zup");
      mdm.Application.onAppExit = function (appevt:flash.events.Event):void
      mdm.Application.exit();
      mdm.Application.enableExitHandler();
      protected function creationCompleteHandler(event:flash.events.Event):void
      this.up = FileSerializer.ReadObjectfromFile("pref.zup") as UserPref;
      if(up) {
      mdm.Application.onFormReposition = function(rpevt:mdm.Event):void
      this.form.x = up.zincPosX;
      this.form.y = up.zincPosY;
      mdm.Application.onFormResize = function(rsevt:mdm.Event):void
      this.form.width = up.zincWidth;
      this.form.height = up.zincHeight;
      }else
      this.up = new UserPref();
      ]]>
      </fx:Script>
      <fx:Declarations>
      <!-- Platzieren Sie nichtvisuelle Elemente (z. B. Dienste, Wertobjekte) hier -->
      </fx:Declarations>
    </mx:Application>
    And i recompile with Zinc Studio 4.0.22 than i try reposition and resize with Zinc Window than i close since saved files and i open again. But why does it not reposition and resize?
    How do i fix? Can somebody help me?
    Thanks best regards Jens Eckervogt

    I little more searching and I found the answer. Check it out here:
    http://forums.adobe.com/message/2879260#2879260

  • App store and Safari not working after Time Machine restore to new hardware.

    I just had to install a new hard drive to my mid 2010 imac.  I restored with time machine.  I cannot find the original OS disc.  Upon restoring it appears there is a problem with the webkit framework as Safari, App store, and Skype all freeze upon clicking on them and after bouncing, they never open.  Chrome is working.  What do I do?

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen. Click the Clear Display icon in the toolbar. Then take one of the actions that you're having trouble with. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • IMessage and Facebook not working on iPad

    On my Ipad i cannot use iMessage.
    I have used it before and everytime I try to use it I have to sign in. I put in the right password however it wont verify the email and I'm back to square one. This is very frustrating.
    Also with facebook, the app doesn't work. It will sign me in for about 5 seconds then log me out. I have even tried using safari and I can't log in.
    I have tried turning off and on the wifi on my ipad, turning on and off the router, turning on and off the ipad, deleting the facebook app, checked my email and junk email for any emails on verifying the email for imessage and throwing my ipad accross the room in frustration. OK i didnt do that last part but I'm very close on doing so.
    I cannot log into facetime either.
    I also have the latest software update.

    Go to Settings > Safari > Accept Cookies and check that it's set to "From visited" (default) or "All".  If it's set to "None", it could cause some of the above issues.

  • Iphone 6 App Audio and Ringer not working...

    I'm completely stumped.... for some odd reason the audio in my phone stopped working for the mentioned applications, also the keyboard makes no noise while texting. However, it works just fine in youtube, music, and netflix for example. The ringer music works in settings while selecting it, but not when someone calls. I've checked all the settings (volume and ringer in max), restarted the phone, and tried different game applications, and still nothing.... Please help! I don't wish to go to warranty unless I know for sure its a hardware defect.... and I can't afford to continue missing calls.... my service provider is Sprint and I have the most recent version of iOS 8 in case that helps.
    Your help is appreciated, thank you!
    PS. A little out of topic, but ever since I owned the phone since October Siri doesn't recognize music playing (What song is this?), she always says "No music is playing" no matter how hard I've tried.

    IOS 8.1 comes out tomorrow if upgrading to that doesn't work you can try downgrading back to IOS 8.0

  • My imac is running mountain lion and last night i downloaded maverick. in midst of installing it it said a powerPC app microsoft word would not work so i canceled the install for the time being. my questions is  if i choose to finish installing maverick

    my imac is running mountain lion and last night i downloaded maverick. in midst of installing it, it said a powerPC app microsoft word would not work so i canceled the install for the time being. my questions is  if i choose to finish installing maverick does that mean i will nevver be able to access word documents stored on my desktop? or do the word docs automatically convert to pages or what? i am so confused. would i be better off just sticking with mountain lion and send the maverick install to the trash? hoping someone will be able to answer my question though i am afraid the response is likely to be just stick with mountain lion so you can keep using word. i had been looking forward to maverick but it seems pretty drastic to not have access to microsoft word anymore by switching to maverick. hope someone has an answer so i can have the best of both worlds so to speak!

    thanks for your response Csound1 on the peninsula ... if i go ahead and install maverick and then download LibreOffice or OpenOffice will i then be able to access old microsoft word saved documents on my deskstop through those two free alternatives? i am not that knowledgeable about these things so i am not sure if you are saying i will just be able to use libreoffice or openoffice for creating new documents or whether i can access the saved microsoft docs? are they transferred to OO or LO or what and if editing of the old word docs is needed can i do that through the OO and LO programs or apps (see i am not even sure if i am using the correct vocabulary!) hope you can answer this as quick as the first question, so i can decide to stick with mountain lion and trash the maverick install or proceed with maverick install and hoppe that my microsoft word docs are still accessible through OO or LO or adding to myquestion will pages on maverick be able to open the old word documents? thanks again!

  • My Ipod touch 4th generation is not working, its frozen, ive tried everything and its not working, its just frozen on an app and i really really need HELP!!!

    My Ipod is frozen!!! Its a 4th generation and its frozen on an app, Ive tried everything like holding down the lock screen and stuff and its not showing the red thing to slid to shut it down....This is my only thing to use to contact my friends and its not working, i dont have a phone and i cant get one, so this is the onlything i have.....PLEASE HELP!!!

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • HT1904 How can I get a refund for apps in the apple App Store that do not work and are not what they said they wer

    How can I get a refund for apps in the apple App Store that do not work and are not what they said they wer

    You've tried deleting and redownloading them and seeing if they then work and tried contacting the developers ? If you have and they can't/won't help then try the 'report a problem' page to contact iTunes Support : http://reportaproblem.apple.com
    If the 'report a problem' link doesn't work then you can try contacting iTunes support via this page : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • HELP!! I'm trying to purchase a gift for someone in app world and it won't work!!

    I received a gift request for an app in Blackberry App World and I am tryi g desperately to accept it but all I get is "please wait" it is driving me crazy. I was able to buy one once before and had the same problems but after deleting app world, rebooting a ton of ti.es and restalling app world I finally got it to work. There has to be an easier way...seriously rim! I have reinstalled app world 2x, rebooted at least 5x...tried everything I can think of including turning off Blackberry Protect but it still just says "please wait". I'm going mad can someone PLEASE help!!!!!!

    You didn't say what version your trial is. Is it 10.1?
    Right click on one of the clips and hit Reveal in Finder. Then select the clip it takes you to and open it in Quick Time . Hjt Command-i and post a screen shot of the Inspector info
    Russ

  • The file to download the app for Android is not working from my phone--it says that the file isn't there. However it does see the one for the Iphone (even though it can't use it). I'm very computer literate and am pretty sure the problem is on your end.

    The file to download the app for Android is not working from my phone--it says that the file isn't there. However it does see the one for the Iphone (even though it can't use it). I've tried it multiple times and continue to get the same message: "NOT FOUND The requested item could not be found". I also tried through the Market application on the phone but ended-up with the same result.
    I'm very computer literate and am pretty sure the problem is on your end. If this is the case then no one can download the app. I considered that perhaps because it's still in Beta that it was removed due to some other type of software issue. I would really like to use Firefox on my new Droid (2.0); when with this be available?

    Firefox will not appear in the Market for most phones with incompatible hardware. You can check if your phone is supported here:
    https://wiki.mozilla.org/Mobile/Platforms/Android
    Even on some supported devices, a bug in the Market software prevents Firefox from showing up. This may be related to the fairly recent Android Market app update. If you go to Settings/Applications/Market and choose "Uninstall" you can uninstall the update, and then search for and install Firefox from the marketplace.
    Or, if you have a supported phone, you can download the app directly by typing this address into your phone's browser: http://bit.ly/fxbeta3
    (Note: To download the app directly for an AT&T phone, you will have to search for instructions on "sideloading" the APK file, since AT&T disables the option to install from non-Market sources.)

  • I want to play candy crush on Facebook and it says i need latest version of adobe flash player, i downloaded it and it still doesn't work. i uninstalled and re installed and still not working. what is wrong? what do i need to do,

    i want to play candy crush on Facebook and it says i need latest version of adobe flash player, i downloaded it and it still doesn't work. i uninstalled and re installed and still not working. what is wrong? what do i need to do,

  • Drag and Drop from Photos app to Safari does not work (Regression to iPhoto)

    Drag And Drop from the new Photos app to Safari does not work. This worked perfectly with iPhoto before.
    I use this a lot to upload photos to a Wordpress blog. Is there a way to make this work again? Its a major regression to the old iPhoto behaviour -- at least for my workflow.
    Regards

    Use the Media Browser. This was written for iPhoto but it still works for 95% of Photos. It's the first option you want:
    https://discussions.apple.com/docs/DOC-4491

  • When I try to purchase new app or update apps on iPad it tells me user name is disabled.  I have done all the "tricks" from the tech support on phone and still not working.

    When I try to purchase new app or update apps on iPad it tells me user name is disabled.  I have done all the "tricks" from the tech support on phone and still not working.

    Contact Apple Support
    https://expresslane.apple.com/GetproductgroupList.action
    Apple ID: "This Apple ID has been disabled for security reasons" alert appears
    http://support.apple.com/kb/ts2446
     Cheers, Tom

Maybe you are looking for