Download link to upgrade AppWorld does not work on BB9900

Hi, 
I just got a new BB9900. When I opened AppWorld I got the message that I needed to upgrade to a newer version of AppWorld. 
I clicked the link to open the BB site in my browser, and clicked through on 'update today', I then end up at download site, but I can't click any buttons to start the download. Seems like a bug to me...
Please let me know how I can upgrade AppWorld when the download site does not seem to work.
Upgrading via the desktop software is no option. As I cannot install any software on my business laptop.
Thanks in advance for your suggestions! 

Hey dneirv,
Welcome to the BlackBerry Support Community Forums.
Thanks for the question.
I would suggest going to www.blackberry.com/appworld/download and then download the file and restart the BlackBerry smartphone and then you should have the most up to date version.
Let me know if you still have problems with the update.
Cheers.
-ViciousFerret
Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
Be sure to click Like! for those who have helped you.
Click  Accept as Solution for posts that have solved your issue(s)!

Similar Messages

  • Download link for PS CC does not work

    I am in the CC area, click on PS to download and the link does not work. Here is the link. Any ideas? Working on a Mac; browser is FireFox.
    Same issue occurs when trying to download AI from CC.
    aam://SAPCode=PHSP?productVersion=14.0?passPhrase=Qrm0F9IdGKvpaqBy+4xfM5lOVjrbpmIweKyRgE7A +BqIFujuZhd6TPbicQ26g2ENYDvavIaSUbhb9BXZi83+Angu3EOQc+ntLN6A+aQp/ewWvbhau5iP8ohOSLKpfNJlYT 4bEoGiRkVT1a3siLb7QGha/SK/mjCUPNQIynZDH7M=

    Hi maurak,
    Please use Creative cloud desktop app to download all CC Apps. You can download the CC desktop app from this link.
    https://creative.adobe.com/#products
    Regards,
    Abhijit

  • JSF : Dynamic link generated by commandLink does not work

    In the following code, without <f:verbatim>, it is giving "Duplicate ID in the view" Exception. But with <f:verbatim>, the links generated by commandLink does not work. Please help me to solve this problem.
    Thank you in advance.
    Regards
    Abdul
    <%-- jsf:pagecode language="java" location="/src/pagecode/eservice/DisplayMoreEServices.java" --%><%-- /jsf:pagecode --%>
    <%@ include file="/includes/g_common_include.jsp" %>
    <%@page import="java.util.Map"%>
    <%@page import="bh.com.cio.egov.EGOVConstants"%>
    <%@page import="javax.portlet.PortletSession"%>
    <%@page language="java"%>
    <%
         PortletSession ses = renderRequest.getPortletSession();
         Map eServiceCatMap = (Map) ses.getAttribute(EGOVConstants.REQ_ESERVICE_LIST_BY_CAT);
         renderRequest.setAttribute(EGOVConstants.REQ_ESERVICE_LIST_BY_CAT,eServiceCatMap);
    %>
    <%@page import="bh.com.cio.egov.vo.EServiceVO"%>
    <f:view>
         <script type="text/javascript">          
              function blinkThis(id, color, timeout)
                   var idElem = document.getElementById(id);
                   if(idElem)
                        idElem.getElementsByTagName('span')[0].style.color = color;
                        setTimeout('switchColor(\'' + id + '\', \'#8A7C5B\', ' + timeout + ')', timeout);
              function switchColor(id, color, timeout)
                   var idElem = document.getElementById(id);
                   if(idElem)
                        idElem.getElementsByTagName('span')[0].style.color = color;
                        setTimeout('blinkThis(\'' + id + '\', \'#FF3030\', ' + timeout + ')', timeout);
         </script>
    <f:loadBundle basename="nls.egovresource" var="nls"/>
    <hx:scriptCollector id="scriptCollector1">
         <h:form id="form2">     
    <f:verbatim>
              <div class="header-top">
                   <h:outputText value='#{nls["eservice_label_title"]}'></h:outputText>
              </div>
              <c:forEach items="${requestScope.REQ_ESERVICE_LIST_BY_CAT}" var="categoryVOs" varStatus="catIndex">
                   <table width="99%" border="0" align="center" cellpadding="0" cellspacing="0">
                        <tr>
                             <td> </td>
                             <td class="gray1" height="30px">
                                       <c:out value="${categoryVOs.value.category.categoryName}" escapeXml="false"></c:out>
                             </td>                
                        </tr>
                        <tr>
                             <td width="2">
                                  <div align="right">           
                                       <img src='<%= imageRootDir + "dot.png"%>' width="4" height="1" />
                                  </div>
                             </td>
                             <td width="100%" >
                                  <table width="99%" border="0" align="center" cellpadding="0" cellspacing="0">
                                       <c:forEach items="${categoryVOs.value.eservice}" var="service" varStatus="serviceIndex">
                                       <%
                                            EServiceVO serviceObj = (EServiceVO) pageContext.getAttribute("service");
                                            String action = null;
                                            int serviceId= -1;
                                            if(serviceObj!=null)
                                                 action = serviceObj.getServiceAction();
                                                 serviceId = serviceObj.getServiceId();
                                            if(action!=null && action.startsWith("$"))
                                       %>
                                       <c:set var="jstl_to_jsf_serviceName" value="${service.serviceName}" scope="request"/>
                                       <c:set var="jstl_to_jsf_url_en" value="${service.serviceAction}" scope="request"/>
                                       <c:set var="jstl_to_jsf_url_ar" value="${service.serviceActionAr}" scope="request"/>
                                       <tr>
                                            <td height="17">                         
                                                 <table width="100%" border="0" cellspacing="0" cellpadding="0">                              
                                                      <tr>
                                                           <td width="95%" id="extMoreCell_${catIndex.index}_${serviceIndex.index}">                                                                      
                                                                <img src='<%= imageRootDir +"arrow1.png"%>' width="15" height="16" border="0"/>
                                                                <h:commandLink styleClass="links menu-txt" action="#{pc_EServiceView.doExternalLinkAction}">
                                            <h:outputText value="#{jstl_to_jsf_serviceName}" styleClass="menu-txt"/>
                                                 <f:param name="PARAM_ESERVICE_URL_EN" value="#{jstl_to_jsf_url_en}"></f:param>
                                                 <f:param name="PARAM_ESERVICE_URL_AR" value="#{jstl_to_jsf_url_ar}"></f:param>
                                                 <f:param name="JSP_ACTION" value="ACT_EXTERNAL_ESERVICE"></f:param>
                                            </h:commandLink>
                                                           </td>
                                                      </tr>                                             
                                                 </table>
                                                 <script type="text/javascript">
                                                      <c:if test="${service.serviceId eq '53'}">
                                                           blinkThis('extMoreCell_7_3', '#FF3030', 1000);
                                                      </c:if>                                        
                                                      <c:if test="${service.serviceId eq '54'}">
                                                           blinkThis('extMoreCell_7_4', '#FF3030', 1000);
                                                      </c:if>     
                                                      <c:if test="${service.serviceId eq '55'}">
                                                           blinkThis('extMoreCell_7_5', '#FF3030', 1000);
                                                      </c:if>          
                                                      <c:if test="${service.serviceId eq '56'}">
                                                           blinkThis('extMoreCell_0_8', '#FF3030', 1000);
                                                      </c:if>     
                                                      <c:if test="${service.serviceId eq '57'}">
                                                           blinkThis('extMoreCell_8_8', '#FF3030', 1000);
                                                      </c:if>     
                                                      <c:if test="${service.serviceId eq '59'}">
                                                           blinkThis('extMoreCell_1_8', '#FF3030', 1000);
                                                      </c:if>     
                                                      <c:if test="${service.serviceId eq '58'}">
                                                           blinkThis('extMoreCell_5_6', '#FF3030', 1000);
                                                      </c:if>     
                                                           <c:if test="${service.serviceId eq '28'}">
                                                           blinkThis('extMoreCell_1_4', '#FF3030', 1000);
                                                      </c:if>     
                                                           <c:if test="${service.serviceId eq '20'}">
                                                           blinkThis('extMoreCell_5_3', '#FF3030', 1000);
                                                      </c:if>     
                                                           <c:if test="${service.serviceId eq '60'}">
                                                           blinkThis('extMoreCell_7_6', '#FF3030', 1000);
                                                      </c:if>     
                                                 </script>
                                            </td>
                                       </tr>
                                       <tr>
                                            <td bgcolor="#FAF9FA" background='<%= imageRootDir + "line-bg-eservices.png"%>'><img src='<%= imageRootDir +"line-bg-eservices.png"%>' width="2" height="1" border="0"/></td>
                                       </tr>     
                                       <%}
                                       else if(action!=null)
                                       %>                                                                                               
                                       <c:set var="jstl_to_jsf_serviceName" value="${service.serviceName}" scope="request"/>
                                       <wps:urlGeneration contentNode="${service.serviceAction}" allowRelativeURL="false" keepNavigationalState="true">
                                       <%
                                       //String urlC = "http://"+renderRequest.getServerName()+":"+renderRequest.getServerPort()+wpsURL;
                                       String urlC = "" + wpsURL;
                                       %>
                                       <c:set var="url" value="<%=urlC%>" scope="request"/>
                                  </wps:urlGeneration>
                                       <tr>
                                            <td height="17">                         
                                                 <table width="100%" border="0" cellspacing="0" cellpadding="0">
                                                      <tr>
                                                           <td id="intMoreCell_${catIndex.index}_${serviceIndex.index}">
                                                           <img src='<%= imageRootDir +"arrow1.png"%>' width="15" height="16" border="0"/>     
                                                           <hx:outputLinkEx styleClass="links menu-txt" value="#{url}">
                                                                <h:outputText value="#{jstl_to_jsf_serviceName}" styleClass="menu-txt"></h:outputText>
                                                           </hx:outputLinkEx>
                                                           </td>
                                                      </tr>                                                                                                                             
                                                 </table>
                                            </td>
                                       </tr>
                                       <tr>
                                            <td bgcolor="#FAF9FA" background='<%= imageRootDir + "line-bg-eservices.png"%>' ><img src='<%= imageRootDir +"line-bg-eservices.png"%>' width="2" height="1" border="0"/></td>
                                       </tr>     
                                       <%
                                            %>               
                                       </c:forEach>                                             
                                  </table>
                             </td>
                        </tr>
                   </table>                                                                                                                                                                     
              </c:forEach>
              </br>
              <h:messages styleClass="messages" id="messages1"></h:messages>
              </f:verbatim>     
              </h:form>
         </hx:scriptCollector>
    </f:view>

    1) Throw your code away and use h:dataTable instead of c:forEach to render a table of dynamic size.
    or:
    2) Hand-assign every UIInput and UICommand element inside the loop an unique ID. E.g. "commandLinkId" + loopIndex

  • Link in pdf-file does not work on Ipad

    With my site www.bartkuijer.nl I offer visitors the free possibility to see (and download) sheetmusic, from music written by me. These are pdf-files. But they can not only SEE the sheetmusic; the music on that pdf-files can also be PLAYED. That's done bij clicking on a link in that pdf-file to a mp3-file of the music on my site.
    This works fine on a pc. When I try this on the Ipad of my wife it DOES NOT WORK!
    So my question is: how come? And what to do to make this work also fine on an Ipad.
    This is important for me, because I want this sheetmusic to place as Ipad-apps for free.

    It works!
    But not with a pdf-file. The Ipad does not recognize links in a pdf-file.
    Te solution is found by making a htm-file with emdedding a quicktime-player and images of the music. This is my first Ipad product. On a pc the player starts immediately; on the Ipad it has to be started.
    Now I have to work on a solution to change this to an app

  • I have downloaded an app and it does not work

    I downloaded two apps. They are both are the same application, on;y difference is that one is the 2.0 version and the other 3.0 version.
    When I downloaded the 2.0 version I thought this was the latest version, but turns out there was another newer version. But I tried the 2.0 version first and this does not work on my mac. The application is Wondershare Data Recovery. It is not able to see any devices on my mac.
    So tried the 3.0 version and again same problem, does not work, funny because after careful researching on what product to buy I decided to download the trial version and it works fine. Only thing is that I need to but the full version to successfully retrive my disappeared images from memeory card, from my camera phone.
    anyway the point is, I have just wasted £95, and I would like this back, or at least the problem resolved. Any help would be appreciated.
    Thanks
    C

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    Updated -
    I only find the v3.0 in the UK Mac App Store (MAS). But on the developer's website I find two separate apps; Wondershare Data Recovery for Mac, which is v3.0 and Wondershare Data Recovery for iTunes, which is v2. Where did you buy Data Recovery for iTunes? I don't find it sold in either the MAS or the iTunes App Store.
    Have you used the support link to the developer on the apps pane in the MAS? That is who Apple will direct you to contact.
    Did you remove the trial version before downloading and installing the paid MAS version(s)?

  • HT201272 i paid and downloaded Card Game ( UNO) is does not work

    Uno card game off apps store does not work on my i-pad 4th generation

    Have you tried deleting the apps and re-downloading it ? If that doesn't fix it then you could try contacting the app's developer (there should be a link on its description page in the store).
    If you don't get a reply from the developer then try the 'report a problem' link from your purchase history : log into your account on your computer's iTunes via Store > View My Account (Store > View My Apple ID on iTunes 11) and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find that app and use the 'Report a Problem' link and fill in details about the problem (iTunes support should reply within, I think, about 24 hours).
    Some people have had a problem with the 'report a problem' link (it's been taking people to this site on a browser instead of showing a form in iTunes) - if it does that to you then 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.

  • Linking to a website does not work

    I am new to captivate and am having a problem. On one of my slides, I have a link to a website. I placed a click box over the text and set the action to Open URL or file and specified the URL to open in a new window.
    When I publish the project, the link works when I am in the published PDF file but it does not work when I am in the published SWF or HTM file. Can someone give me some advice on what I may be doing wrong? IF this has been addresssed elsewhere, I am sorry for the duplication. I have searched and could not find anything.
    Thanks in advance.

    Hi there
    "Whitelisting" is a process that is used to identify something as being a "safe" or "trusted" source. I believe what is meant in this context is that you need to add the location to the trusted locations list in the Flash Player as described in the link below:
    Click here to view
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • What is up with the Quicktime 7.2 upgrade, it DOES NOT WORK!

    Quicktime 7.2 Internet Plug-In does not work with Safari? I am very up to date with all the upgrades to maintain security, and this most recent "upgrade" while may be plugging a security hole for the iPhone does not maintain past functionality. I have searched and done most if not all the suggested fixes (repairing permissions, removing Internet Plug-Ins, installing most up to date flash player, un checking Flash Media MIME setting, even forcing Safari to load w/ Rosetta) and am very disappointed with having to force Safari into Rosetta and shocked to hear the suggestion to abandon Apple altogether and use Firefox. I am using Safari to get away from Netscape and third party software to AVOID conflicts. Worse Firefox does in-fact work making me doubt its' security for internet banking.
    When is Apple going to FIX this Quicktime Update so that it works?!

    Same here. I don't have in Intel Mac, so it's not a Rosetta issue. I've patiently followed every tip I've read in many discussions. Reinstalled Quicktime. Installed Flash 9 Upgrade. Changed Quicktime settings (unchecked enable flash, unchecked Flash Media under MIME settings). Trashed Quicktime preferences.
    However in Safari, on upon trying to open any movie trailer on the Quicktime web site
    http://www.apple.com/trailers/
    or even watch the iLife 08 guided tour
    http://www.apple.com/ilife/guidedtour/small.html
    I get a Quicktime logo with a question mark. In Firefox (which I've also reinstalled) it quits unexpectedly when trying to open a movie trailer. In my own experiments, I've opened another admin account on my computer and when I log in there, everything works fine. You say "well just use that account then", that would mean me having to transfer all my files to the other account which I don't want to do unless someone has a really quick way to do so. Also, in checking the system preferences for Quicktime under both accounts, I don't see any difference. Both accounts are accessing the same software from the root level Applications folder, so why does it work in one account and not the other? Someone help, as I don't think I can read another 10 page discussion on this.

  • Upgrada qbittorrent does not work

    I upgraded qbittorrent to "qbittorrent 1.2.999-1", however it does not work: needs shared library "libboost_system-mt.so". I do not know where to find this library, besides I do not understand why pacman not installed this library if bittorrent really needs it.

    After the upgrade qbittorrent doesn't load. All dependencies are rigth. Programs starts for a few seconds then die.
    [adr@archdesk ~]$ qbittorrent
    Could not parse application stylesheet
    en_GB locale recognized, using translation.
    -> Constructing Options
    Segmentation fault
    [adr@archdesk ~]$

  • Download link from order e-mail not working 'page error'

    I ordered Adobe Photoshop Elements 10 & Adobe Premiere Elements 10 back in Nov2011.  I downloaded both to learn I needed the 64 bit version.  When I had time I downloaded Photoshop Elements 64 bit and got my project done.  Now I went back to get my 64 bit version of Premiere but the link no longer works.  On the order it says you can re-download anytime.  I sign in to my Adobe Account, go to Order History, hover over download - I see the address in my browser status bar at bottom left.  When I click on download the the status bar displays the yellow triangle with the warning message 'page error'  when you expand the message it indicates a address is not working.  I tried turning my firewall off - didn't have to do that before - but same message.  There must be a link where paying customers can get the proper download?  Everything I find is for the trial version.  Is there a link?  Why do the links in the order e-mail expire?  Thanks in advance!            

    OK, I finally worked around the issue.  Right click on the word download – then select open in new window.  Not sure why this worked – but it did.  Jeff, the alternate download option does appear on the second page that loads AFTER you get past the initial download link.  Though once I got there I was able to use the primary download for 64 bit.  Thanks all for looking at this.  J potter, try this and see if it helps.

  • After Lion upgrade, camera does not work on internet services like facebook

    After upgrading to Lion, the onboard camera no longer works with internet sites like Facebook.
    I tried this with Safari and Google Chrome with the same lack of results.
    You will select take photo in Facebook and the next screen is locked up. This failure occurred on two separat Macbooks.
    Yet this does not happen with my Macbooks with Snow Leapord - I tried.
    Any ideas on how to fix this.
    Lion appears to be the first Windows like Mac operating system (glitchy). Not ready for primetime. Is this an omen of what Apple without Jobs will be like (again).
    My second computer to be upgraded had conflicts with certain start-up programs that had the effect of locking out the Internet connection.
    I had to manually delete these programs to get Internet to work.

    Seeing the same issue on a C2D Macbook, camera worked fine yesterday afternoon using GTalk.  Upgraded to Lion last night now the camera no longer shows up in any of the utilities that used to be able to see it.  Don't buy the "Must be a hardware problem" too wide spread for it to not be software related.

  • Flex Hero - Links in HTML component does not works.

    WebView-app.xml
    <?xml version="1.0" encoding="utf-8" standalone="no"?>
    <application xmlns="http://ns.adobe.com/air/application/2.5">
    WebView.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx">
    <mx:HTML location="http://google.com/" />
    </s:WindowedApplication>
    I can see google homepage in my test desktop application.
    But all links are not work in html document.
    Flex 4.0 and 4.1 SDK works well. Only Flex Hero has this problem.
    How can I fix it?
    Thanks.

    Hi Kevin,
    I had the same problem. This 4.5 build from 11/30/2010 fixed the HTML component issue.
    http://opensource.adobe.com/wiki/display/flexsdk/download?build=4.5.0.18623&pkgtype=1

  • Email linEmail link to Yahoo Mail does not work in in FF26.0 Windows 7, 64 bit computer?

    as above

    Do you mean, for example, that if you click a link like this:
    [email protected]
    Firefox does not start a new message in Yahoo! mail?
    I think you will need to set Firefox to use Yahoo! mail using the Options dialog. Please see this article for the steps: [[Change the program used to open email links]].
    Does that work?
    Or if you can't open Yahoo! mail at all, try going in through one of these addresses:
    * Yahoo home page: https://www.yahoo.com/
    * My Yahoo page: https://my.yahoo.com/
    * General mail redirect: https://mail.yahoo.com/
    Note that many users have discovered problems with bookmarks they saved for the "old" Yahoo mail and need to update them to work with the "new" (neo) Yahoo mail.

  • Custom defined links on confirmation page does not work.

    Hi,
    I am trying a define a custom link for the leave request confirmation page in the ESS module of the portal. I am able to see the url link, but when I click on it, it does not navigate to the new page. Here are the steps I completed.
    - created a custom webdynpro application.
    - created an iview and a page for the custom web dynpro application.
    - created test role and workset, tested the iview successfully in the
        portal from the menu.
    -  Defined a custom resource for the iview, put the url of the PCD page in
        the  "URL of PCD Page" field.
    - Defined a custom webdynpro service for the above resource.
    - Defined a custom link on the confirmation page using the above service.
    I would appreciate if anyone can provide any guidance, tips or ideas on missing steps...
    Thanks in advance,
    Saket

    Hi for X in range,
    You may take a try to contact Microsoft local license support team:
    http://www.microsoft.com/en-gb/licensing/contact-us.aspx
    Best regards
    Michael Shao
    TechNet Community Support

  • Golive CS to Dreamerweaver upgrade S# does not work

    Do I need a different product?
    I bought GoLive to Dreamerweaver upgrade. Did not remember GoLive was part of my CS purchase and not a stand-alone product.

    If you look in the download, install help, there is a page that describes common upgrade serial number problems. Yes, it seems as though you bought the wrong product, because upgrades are from suites to suites or from standalone to standalone only, according to that page. Probably need to call about return/exchange.

Maybe you are looking for

  • F110 to send Statement to Customers

    Hi SAP experts, I have run F110 to pay customers who should receive e_mails automatically informing about the processing. where can I view if the e_mail was sent automatically ? I have typed my e_mail to test and I have not received anything. where i

  • Creating a third line w/ one Lower 3rd

    Can one create a third or fourth line, when only using one Lower 3rd in Final Cut Pro? Thanks.

  • Youtube not working with 3Gs, its only working with Wifi

    Hello, Can anyone help, i can only seem to get youtube on my new 3Gs iphone through wifi. Every time i try to connect through 3Gs it does not connect and displays the text "load more" with no pictures. Thank you.

  • COR1 transaction-any exit or badi

    Hi Experts, Is there any user exit, badi or Enhancement point to assign our own number range for Process order based on Plant. I searched thru all available userexits for COR1 but didnt able to find the exact one, please suggest in this regard... Tha

  • Training for Payroll with US Legislation in Hyderabad/India.

    Where can I get the Training for Payroll with US Legislation in Hyderabad/India.? Any Good Institutes in Hyderabad/India??