Whats app version problem

Hello,
I tried to update the app "what’s app" but it gave a message "907 invalid COD" error and the old version app is not visible any ware.
But when i tried once again for download it says that the old version is already present and "do u want to replace"
my question is -how to go back to old version and make it available for use 

Hi vinaybp
Welcome to BlackBerry Support Forums
Most often this error " 907 invalid COD " is resolve if we perform a battery pull restart and then try downloading it again over a strong Data coverage area . Have you tried to download it again ?
Or first delete any instance of Whatapps from your BlackBerry before downloading , for that On your Homescreen > Options > Device > Application Management > locate and delete Whatsapp from that list 
KB10040  :How to view or remove installed application on a blackberry smartphone
After delete perform another Battery pull restart by removing the battery while your device is powered on , after reboot visit BlackBerry World  to download the most recent available. 
Click " Like " if you want to Thank someone.
If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.

Similar Messages

  • Whats app VIDEO Problems

    To whom it may concern,
    Hi, I need some support regarding the "Whats app". I have been using this for a year and no problems what so ever until last Thursday. I have been alway being able to send videos (short video not longer than 40 seconds) to other people. Since last Thursday the program try to send the video and after doing the usual thing give me a message "that whats app was not able to send the video".
    Actions taken:
    Clear history and data - NOTHING STILL NOT SENDING VIDEOS
    Reboot iphone - NOTHING STILL NOT SENDING VIDEOS
    Delete app and install again - NOTHING STILL NOT SENDING VIDEOS
    Try to send different lenghts of videos - NOTHING STILL NOT SENDING VIDEOS
    Try to send past videos, previous to last Thursday - IT WORKED!! For some reason the app was able to send older videos of differents lenghts.
    I have not drop my iphone or did any crazy thing, no new updates. I'm using the version 2.8.2 (Whats app)
    Can any one give some suggestion? Messages and pictures still working fine.
    I have the free version of Whatsapp, I try to reinstalled the $0.99 version, but it does not give me the option. I thought this could be the problem.
    Appreciate inputs.
    Regards,
    Tairus88

    TAIRUS88 wrote:
    ... I thought this was whole purpose of this forum support their customers...
    You thought wrong. This is about Apple product not Tom, Dick or Harry's app.
    Any apps worth the money should have their own support forum.
    Do you think you can support > 650,000 apps which is available in the App Store?

  • App version problem

    When i build executable from my labview code, i expect that
    1. App.Name should return the name of my built application. (This is working as expected)
    2. App.Version should return the Version of my Application (this property instead returns LabVIEW Version)
    Please find attached example where app. version is 2.0.0 whereas labview returns 8.2.1
    If this is what, NI Itends to give, then is there any alternative way through which i can get the version. no of my application?
    Tushar Jambhekar
    [email protected]
    Jambhekar Automation Solutions
    LabVIEW Consultancy, LabVIEW Training
    Rent a LabVIEW Developer, My Blog
    Attachments:
    test2.zip ‏32 KB

    Hi, Tushar,
    There are different possible ways to do this. You can do this with .NET (FileVersionInfo.GetVersionInfo), or with WinAPI (GetFileVersionInfo()).
    In attachment you can found the example, which returned proper version of the application.
    Best regards,
    Andrey.
    Attachments:
    GetVer.zip ‏137 KB

  • Enterprise app version problem

    I setup a osx server 3.0 and want to deploy enterprise app using profile manager.
    I added a app called "abc 1.1" in Profile manager - Apps library and I can deploy this app to user with no problem.
    But When I update abc 1.1 to 1.2, I cannot keep both version in app library.
    In app Library , it only shows the app "abc" with no version displayed, so I cannot deploy both versions to users.
    How can I seperate the version in app library instead of over-write my old version when I add the new version to the app library?
    Thanks!

    Hi, Tushar,
    There are different possible ways to do this. You can do this with .NET (FileVersionInfo.GetVersionInfo), or with WinAPI (GetFileVersionInfo()).
    In attachment you can found the example, which returned proper version of the application.
    Best regards,
    Andrey.
    Attachments:
    GetVer.zip ‏137 KB

  • SendAndLoad fails in mac .app version - possible security setting problem?

    Hi all,
    I'm having trouble with sendAndLoad working on the .app version of a flash application I made. So far it's only happening on one computer, so it appears to be some sort of security setting.  Here's what's going on:
    I've built a flash application (Flash 9, AS2) that has three versions: an online version, a standalone  .exe version for PC, and a standalone .app version for mac. The user must log in to use the application. Online, this is handled by the portal hosting the flash. In the standalone versions, the user must login through the flash application. Through sendAndLoad, it accesses the same database of user info as the online version. The user just enters username/password, clicks "Submit," and if it finds the combination in the database, it lets the user in. If not, it gives them a message saying they entered the wrong username/password.
    This has tested fine across macs and pcs, but sadly one macbook can't use the .app version. It launches, they put in valid username/password, hit submit and it freezes. All I can tell is that it gets the httpStatus number 0. As you can see below, I've got it set up to spit out an error message if it fails to load (login_lv.onLoad = function(success)), but it doesn't even do that.
    I've put a crossdomain.xml file at the root level of the domain that's set to allow access from any domain.
    This computer can log in successfully to the online version of the course, but the .app version seems to be hampered by some sort of security setting. The problem computer's settings match the settings of a mac I've tested successfully. It has up-to-date Flash 10 and is running Leopard. Here are security settings:
    System Preferences>Security
         General
              Everything is unchecked
         FileVault
              Turned off
         Firewall
              "Allow all incoming connections" is selected
    I'd appreciate any ideas anyone has. I'm far from wise about the ins-and-outs of mac security, so I may be missing something. I'm happy to clarify anything.
    Code is below. It loads login_lv first, then bookmark_lv. It never gets far enough to load bookmark_lv. The severAppUrl is set to a placeholder for confidentiality's sake. The path is defintely right. It works on other computers.
    Thanks!
    Mike
    // create a LoadVars instance
    var login_lv:LoadVars = new LoadVars();
    // add the login variables to pass to the server
    login_lv.userid = "";
    login_lv.pwd = "";
    login_lv.modname = "a";
    // setup login urls
    var serverAppUrl = "http://myurlhere"; //this is just a placeholder. good ol' confidentiality agreements...
    var loginUrl = serverAppUrl+"login.asp";
    // setup bookmark urls
    var bookmarkUrl = serverAppUrl+"menu.asp";
    var bookmark_lv:LoadVars = new LoadVars();
    // add the bookmark variables to pass to the server
    bookmark_lv.studentid = "";
    bookmark_lv.isAdmin = "";
    bookmark_lv.modname = "A";
    _global.modnameTemp = bookmark_lv.modname;
    // setup login function
    function doLogin() {
    login_lv.userid = login_mc.user_txt.value;
    login_lv.pwd = login_mc.pwd_txt.value;
    login_lv.sendAndLoad(loginUrl,login_lv,"GET");
    // send the login info
    login_mc.continueBtn_mc.onRelease = function() {
    this.enabled = false;
    doLogin();
    // variables will appear in the login_lv object
    login_lv.onLoad = function(success) {
    if (success) {
    if (this.studentid == undefined) {
    login_mc._x = 0;
    trace("not logged in");
    debug_mc.body_txt.text+="\nnot logged in";
    if(this.reas == "Please Complete Overview and first 3 Module(s) with at least 70 score."){
    login_mc.loginBad_mc.gotoAndStop("r2");
    login_mc.loginBad_mc._visible = true;
    } else if(this.reas == "Please Complete Overview Module first."){
    login_mc.loginBad_mc.gotoAndStop("r3");
    login_mc.loginBad_mc._visible = true;
    } else {
    login_mc.loginBad_mc._visible = true;
    } else {
    login_mc._x = 800;
    trace("now logged in");
    debug_mc.body_txt.text+="\nnow logged in";
    trace("studentid: "+this.studentid);
    trace("isAdmin: "+this.isAdmin);
    //track variables for later use
    _global.studentidTemp = this.studentid;
    _global.isAdminTemp = this.isAdmin;
    bookmark_lv.studentid = ""+this.studentid+"";
    bookmark_lv.isAdmin = ""+this.isAdmin+"";
    bookmark_lv.sendAndLoad(bookmarkUrl,bookmark_lv,"GET");
    }else{
    debug_mc.body_txt+="\nlogin load error"
    login_lv.onHTTPStatus = function(httpStatus:Number) {
        this.httpStatus = httpStatus;
        if(httpStatus < 100) {
            this.httpStatusType = "flashError";
        else if(httpStatus < 200) {
            this.httpStatusType = "informational";
        else if(httpStatus < 300) {
            this.httpStatusType = "successful";
        else if(httpStatus < 400) {
            this.httpStatusType = "redirection";
        else if(httpStatus < 500) {
            this.httpStatusType = "clientError";
        else if(httpStatus < 600) {
            this.httpStatusType = "serverError";
    debug_mc.body_txt.text+="\n login_lv HTTPStatus number="+httpStatus+" HTTPStatus type="+this.httpStatusType;
    //prepare bookmarkXML to receive returned info from bookmark_lv function
    var bookmarkXML = new XML();
    bookmarkXML.ignoreWhite = true;
    bookmarkXML.onLoad = bookmark_lv;
    // variables will appear in the bookmark_lv object
    bookmark_lv.onLoad = function(success) {
    if (success) {
    trace("bookmarked");
    debug_mc.body_txt.text+="\nbookmarked";
    trace("bookmarkXML: "+bookmarkXML);
    var bookmarkNode = mx.xpath.XPathAPI.selectNodeList(this.firstChild, "/bookmark");
    trace("bookmarkNode: "+bookmarkNode);
    var bookmarker:String = unescape(eval("bookmark_lv"));
    trace("bookmarker: "+bookmarker);
    bookmarker = bookmarker.split("<xml>").join("");
    bookmarker = bookmarker.split("<bookmark").join("");
    bookmarker = bookmarker.split("/bookmark>").join("");
    bookmarker = bookmarker.split("</xml>").join("");
    var startIndex:Number;
    var endIndex:Number;
    startIndex = bookmarker.indexOf(">");
    trace(startIndex);
    endIndex = bookmarker.indexOf("<");
    trace(endIndex);
    var bookFinally:String;
    bookFinally = bookmarker.substr(startIndex+1, endIndex-2);
    bookFinally = bookFinally.split("<").join("");
    setBookmarkStr = ""+bookFinally+"";
    trace("string: "+setBookmarkStr);
    _global.newBookmark = bookFinally;
    play();
    }else{
    debug_mc.body_txt+="\nbookmark load error"
    bookmark_lv.onHTTPStatus = function(httpStatus:Number) {
        this.httpStatus = httpStatus;
        if(httpStatus < 100) {
            this.httpStatusType = "flashError";
        else if(httpStatus < 200) {
            this.httpStatusType = "informational";
        else if(httpStatus < 300) {
            this.httpStatusType = "successful";
        else if(httpStatus < 400) {
            this.httpStatusType = "redirection";
        else if(httpStatus < 500) {
            this.httpStatusType = "clientError";
        else if(httpStatus < 600) {
            this.httpStatusType = "serverError";
    debug_mc.body_txt.text+="\n bookmark_lv HTTPStatus number="+httpStatus+" HTTPStatus type="+this.httpStatusType;

    try using different loadvars instances for your send loadvars and for your receive loadvars.

  • Microsoft Office 2011 no longer opens because "there is a problem" after updating mountain lion when the app store said there was an update available this morning. Reinstalling did not work. What's the problem?

    Microsoft Office 2011 no longer opens because "there is a problem" after updating mountain lion when the app store said there was an update available this morning. Reinstalling did not work. What's the problem?

    Has your problem been solved by the updates??
    Have a similar problem. This MacBook opened all MS Office programs in Dec2012 but no longer does in Feb2013. Went to Microsoft/mac/downloads but none of the three updates would run citing a problem "version of software needed to run this update was not found on this volume".
    MacBook: 7.1, Intel Core 2 Duo, 2.4 GHz
    Microsoft Office 2011:  version 14.2.3
    Mountain Lion: 10.8.2 (12C60)

  • Problem in syncing the Apps version 5.0.1

    Hi there
    First:
    actually my problem is that after the syncing of my iphone
    the Apps not transfering to it!!!
    it said that it is synced  but nothing appear in my iphone??!
    any body know what is the problem
    that happened specifically after the updating to version 5.0.1
    AND  my computer is autherized!!
    am using windows
    Second:
    the app store in my iphone not working
    if i just click on the icons it get me out directly
    and that happened after the updating also !!!
    HEALP ME PLEAS!

    For your syncing issue, try plugging the phone into iTunes. Under LIBRARY, click on the Apps tab on the left, then try manually click on an app icon and dragging it to your iPhone's icon.
    For your App Store issue:
    You said a reset did not work, the next step is a restore. While in iTunes, select your phone under DEVICES, and it should open up a "Summary" tab. Scroll down until you see a button for "Restore." it will then ask you if you want to back up, say yes. The phone will then be restored to factory defaults, but don't worry. When the restore is complete, there will be onscreen instructions to "Set up as new iPhone" or "Restore from Backup." you can then restore from the backup that was recently created.
    Good luck ;)

  • TS2446 i have a problem in my account every time i want to install application from app Store on my iphone a message shows that my Apple ID has been disabled, what is the problem? what can i do ?

    i have a problem in my account every time i want to install application from app Store on my iphone a message shows that my Apple ID has been disabled, i creat a new password and still that message shoes ,what is the problem ?can you help me please???!!!!

    If your account is disabled then you might be able to re-enable it via this page : http://appleid.apple.com, then 'reset your password'
    You might then need to log out of your account on your phone by tapping on your id in Settings > iTunes & App Store and then log back in so as to 'refresh' the account on it
    If that doesn't fix it then you might need to contact iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • Ok, I have deleted EVERYTHING off my 16gb ipad. Photos, music, apps. All I have are the standard apps. It says I have used 11gb and only have 1.6 left. When I first bought it I had up to 4 movies and lots of apps, no problems. What's going on please!?

    Ok, I have deleted EVERYTHING off my 16gb ipad. Photos, music, apps. All I have are the standard apps. It says I have used 11gb and only have 1.6 left. When I first bought it I had up to 4 movies and lots of apps, no problems. What's going on please!?

    How much space is used by your Other? You may be able to reduce.
    How Do I Get Rid Of The “Other” Data Stored On My iPad Or iPhone?
    http://tinyurl.com/85w6xwn
    With an iOS device, the “Other” space in iTunes is used to store things like documents, settings, caches, and a few other important items. If you sync lots of documents to apps like GoodReader, DropCopy, or anything else that reads external files, your storage use can skyrocket. With iOS 5/6, you can see exactly which applications are taking up the most space. Just head to Settings > General > Usage, and tap the button labeled Show All Apps. The storage section will show you the app and how much storage space it is taking up. Tap on the app name to get a description of the additional storage space being used by the app’s documents and data. You can remove the storage-hogging application and all of its data directly from this screen, or manually remove the data by opening the app. Some applications, especially those designed by Apple, will allow you to remove stored data by swiping from left to right on the item to reveal a Delete button.
     Cheers, Tom

  • HT4972 I am using iphone 3g and it is having currently IOS 4.1 version,till what IOS version can i upgrade ? please help me many of my apps are not working esp whatsapp.

    am using iphone 3g and it is having currently IOS 4.1 version,till what IOS version can i upgrade ? please help me many of my apps are not working esp whatsapp.

    iOS 4.2.1 is the latest version of iOS for the 3G.
    Facebook and Whatsapp both require 4.3 or higher.
    If you want to use those apps, either use the old version that should be in your iTunes library or upgrade the hardware to a 3GS or newer device.

  • When i download software, then go to the download window and click on the file, it is aking me to open it with a launch application. how do i figure out what app to use. ex; downloaded a new version of java, what app do i use to install?

    when i download software, then go to the download window and click on the program , i'am being ask to choose a launch program. how do i figure out what app to use to install. ex: i downloaded a new version of java and a game program. how do i install?

    Where did you download the java?
    Download it from here [https://www.java.com/en/download/index.jsp https://www.java.com/en/download/index.jsp]

  • [32282.000367] firefox:2114 freeing invalid memtype c02f2000-c0302000 I get this from system log using latest version of Firefox: What kind of problem is this?

    I get this from system log using latest version of Firefox:
    [32282.000367] firefox:2114 freeing invalid memtype c02f2000-c0302000
    What kind of problem is this?
    Anyway Firefox seem to be working correct. I would like to be sure that it'snt a security problem.

    Thanks a lot for your swift response. And sorry if it was a bit too hectic to go through my detailed query (which I did because it was misunderstood when I asked previously). As I've mentioned above, I was informed that updating to 5.0.1 would '''require''' me to '''delete''' the current version and then install the new one. And doing so will involve losing all my bookmarks. I guess I should have been more specific and detailed there. By losing, I didn't mean losing them forever. I'm aware that they're secured in some place and deleting and installing the software doesn't harm its existence. What I meant that if I install the new version, I'd have to delete the old one. And after installing the new version, I'd have to transfer them (bookmarks) back from wherever they are. Get it? When it updated from 3.6.9 to 3.6.13, and from 3.6.13 to 3.6.18, I didn't need to follow that process. They were already present on their own.
    BTW, I'm having no problems with 3.6.18 but after learning about the existence of version 5.0.1, I'm a bit too eager to lay my hands over it.
    Thanks for your help; hope this wasn't extremely long.

  • The version 2.11.8 whats app works on the iphone 3gs ios 6.0?

    The version 2.11.8 whats app works on the iphone 3gs ios 6.0?  Mi incoveniente es que no puedo guardar contactos con la version 2.8.7 (whatsapp).

    The version 2.11.8 whats app works on the iphone 3gs? My drawback is I can not save contacts with version 2.8.7

  • I have downloaded the Creative Cloud and when it finished, it opened up and was completely blank. Nowhere for me to sign in and no apps for me to click to download. I need this to be fixed ASAP. What is the problem here?

    I have downloaded the Creative Cloud and when it finished, it opened up and was completely blank. Nowhere for me to sign in and no apps for me to click to download. I need this to be fixed ASAP. What is the problem here?

    BLANK Cloud Screen http://forums.adobe.com/message/5484303 may help
    -and step by step http://forums.adobe.com/thread/1440508?tstart=0
    -and http://helpx.adobe.com/creative-cloud/kb/blank-white-screen-ccp.html

  • What's the deal with notes and screenshots for upgraded app versions?

    We uploaded a new version to replace our 1.1 version of an app in the store.
    There was some confusion today that still persists:
    (1) For a while, the link to our current version app became invalid and we lost like 2/3rds of our normal sales until the link became valid again. Anybody else ever see that happen? Very frustrating.
    (2) Right now, there are two app versions inside itunes connect - the current selling one and the upgraded version awaiting review. I know the old one disappears when the new version is approved and goes on sale. But what is confusing is that the new screenshots and notes for the new version are also displaying in the current app version on sale in the store! I went ahead and added an explanatory note to potential downloaders... but is this a bug or something? Or is that the way it has always worked?
    How do people here tend to handle the timing of new screenshots and descriptions when you add new features and want to show them off in your update app?
    Thanks,
    doug

    This has been discussed a number of times here already.
    The only items cached for an update release are the specific 'update/what's new in this version' notes.
    All other changes will be updated immediately (within a few hours).
    You have 2 choices:
    1. Post the changes with a note (i.e. this is the next version, awaiting apple approval) so users aren't ticked by downloading the latest actual version.
    2. As soon as your update is officially released (monitor it) change the text and images.

Maybe you are looking for

  • Cannot upgrade the firmware.

    I am using a BEFW11S4 router Version 4. When I checked the site and after a full day of messing around I found that the problem I was having was covered in the latest update. I downloaded the bin file and tried the upgrade process from the router man

  • Error when using Toplink Ant tasks - Several [3] SessionLoaderExceptions

    Hi, I'm trying to integrate toplink's session exports with my build process (Apache Ant). I've been working from the example here: http://download.oracle.com/docs/cd/E14571_01/web.1111/b32441/mw.htm My Ant init target and the session validation targe

  • After the recent update, tabs are no longer saved when closing, why?

    When I click on the save and quit button and reopen Firefox, nothing is saved. Only my home page tab opens and I have lost all other tabs that I wanted to save. How can the "save" be restored?

  • Impdp does not create user/schema

    I'm an Oracle noob. I'm trying to copy (expdp/impdp) schema (no data) from one machine to another. I do not want any remapping. I just want empty table structure created on targetHOST. Error I get is:     ORA-39083: Object type PROCACT_SCHEMA failed

  • Can any one help me to download a file using struts2

    can any send me a sample program to download a file using struts2 regards saradhi