Unable to update acrobat from installed 2.1.0.0 to 2.3.0.0-

when i try to open acrobat from my start menu, a pop-up says there's a need for a mandatory update. I attempt to update and there's an error #16820 that pops up and doesn't allow for update.  Can someone help?

What update exactly are you trying to apply?  Which Adobe product are you updating?  Finally what operating system are you using?

Similar Messages

  • Unable to update Acrobat 9.3.4.  Using OS X 10.6.4

    I am using Adobe Acrobat 9 Pro Version 9.3.0 with my OS X 10.6.4.  Failed to update Version 9.3.4. Error message says Cannot download update file. Please verify that you are connected to the Internet and check for updates again later.  Error 1107 encountered.  Internet Access working fine.  Please help.

    I have a simliar problem. My Acrobat 9.3.2 cannot update to 9.3.4. When I tried to update manually from Help->Check for updates..., it says the update failed because some internet connection issue. But I was in fact connected.
    From http://kb2.adobe.com/cps/852/cpsid_85259.html#ionComHeading, I found the update log Adobe Acrobat Updater.log. It says:
    2010-09-22 11:54:54 +0800: ***** Starting update to /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app
    2010-09-22 11:54:54 +0800: OS Version : 0x1064
    2010-09-22 11:54:54 +0800: For /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app, installed bundle version is 9.3.2
    2010-09-22 11:54:54 +0800: Downloading manifest from : https:/armmf.adobe.com/arm-manifests/mac/9/9.3.4/com_adobe_Acrobat_Pro_univ.plist
    2010-09-22 11:54:54 +0800: Downloading manifest from : https:/armmf.adobe.com/arm-manifests/mac/9/9.3.3/com_adobe_Acrobat_Pro_univ.plist
    2010-09-22 11:54:54 +0800: Downloading manifest from : https:/armmf.adobe.com/arm-manifests/mac/9/9.3.2/com_adobe_Acrobat_Pro_univ.plist
    2010-09-22 11:54:54 +0800: For /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app, 2 updates to be applied
    2010-09-22 11:55:02 +0800: Downloading updater from : http:/armdl.adobe.com/pub/adobe/acrobat/mac/9.x/9.3.3/misc/AcroProUpd933_all.app.zip
    2010-09-22 11:55:03 +0800: Adobe Acrobat Updater encountered errorCode 1101
    2010-09-22 11:55:04 +0800: ***** Ending update to /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app
    2010-09-22 11:55:04 +0800: Error shown to user is: Error Domain=com.adobe.ARM.backgroundloader Code=1101 "The operation couldn’t be completed. (com.adobe.ARM.backgroundloader error 1101.)"
    The same section has been logged repeatedly since several months ago.
    Looks like Acrobat is trying to download updates from "http:/armdl.adobe.com/pub/adobe/acrobat/mac/9.x/9.3.3/misc/AcroProUpd933_all.app.zip" and keeps failing. Maybe it forgets a "/" after "http:"?
    I tried "http://armdl.adobe.com/pub/adobe/acrobat/mac/9.x/9.3.3/misc/AcroProUpd933_all.app.zip", it is accesible to me.

  • Unable to Update Collection from Tabular Form

    I have built several Tabular Forms where I have updated the apex_collection with the data entered into the form. Then I loop thru the collection and update the database.
    I now Copy a working form to create a new form using data from a different table. All I am doing is changing the underly apec_collection with a different select statement and give it a new collection name. The number of columns on the tabular form are the same as the working form.
    Now I run the form and I get ORA-01403: no data found Error UNABLE to UPDATE ROWS
    It is acting like it is not finding any data from the collection. But I put in the same selection critera for the update into a report below the tabular form and I see data just fine.
    Here is the code I am using to update the collection when the SAVE button is pressed (Process on Submit before Calculations).
    begin
    for c1 in (
    select seq_id from apex_collections
    where collection_name = 'IPR_MATRIX' and c001 = :P21_FACILITY
    and c002 = :P21_DEPT
    order by seq_id) loop
    c := c+1;
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>5,p_attr_value=>wwv_flow.g_f01(c));
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>6,p_attr_value=>wwv_flow.g_f02(c));
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>7,p_attr_value=>wwv_flow.g_f03(c));
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>8,p_attr_value=>wwv_flow.g_f04(c));
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>9,p_attr_value=>wwv_flow.g_f05(c));
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>10,p_attr_value=>wwv_flow.g_f06(c));
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>11,p_attr_value=>wwv_flow.g_f07(c));
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>12,p_attr_value=>wwv_flow.g_f08(c));
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>13,p_attr_value=>wwv_flow.g_f09(c));
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>14,p_attr_value=>wwv_flow.g_f10(c));
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>15,p_attr_value=>wwv_flow.g_f11(c));
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>16,p_attr_value=>wwv_flow.g_f12(c));
    end loop;
    end;
    Any Ideas what I am doing wrong?

    c is set to 0
    It looks like I may have found my problem.
    There tabular form is limited by a where clause in the report to a subset of the collection. Making the collection match the same where clause seems to have fixed my problem.
    Not clear on why that works like that but it looks like I may have it working.

  • Mavericks (10.9.2) notes unable to update notes from iCloud

    Hi There!
    I am using mavericks, I found out that my notes in mavericks is unable to update any notes from iCloud since I upgrade to 10.9.2.  Here I have tried out some of the method which I search from forum and Google.
    1. I have tried to sign out then sign in again from iCloud account in mavericks but won't resolve my problem. 
    2. I have also tried to remove iCloud account then add them back but also won't work. 
    3. Created new user account the login my iCloud account but with same result come up. 
    There is something strange that I realized when I am trying out the above mentioned methods, which is to create new note from mavericks notes app and it will update to my iCloud panel and it is updating to my iPad or iPhone. the only problem is all my notes in iCloud are unable to update to my mavericks notes app.  Calendar, Mail, Contacts, Reminder and others services are working fine but Notes.
    Is there any suggestion?
    Many thanks!
    KT

    I'm having the same issue with the 10.9.2 update. Tried signing out of the account, removing the account, repairding disk permissions, etc, and still can't get my iCloud notes to sync to the Notes application. The notes are on the iCloud website and sync correctly to my iPhone.
    iMac 3.2 Ghz Intel Core i5
    OS 10.9.2

  • Unable to update descriptor from the console

    Hi,
    I have created some preference variables in my BPEL code and want to update them from the BPEL console but when I change the descriptor and click update descriptor button it changes to its default value. Can anybody help me on this, this is really urgent.

    Hi,
    any solution to this problem?
    I come across this time and time again. With no obvious pattern why this problem occurs.
    Now, for example, I have a process with about 20 preferences, I can update 15 of them, 5 of them remain stubbornly at their default values.
    Imagine wanting to test the process with different combinations of preference values... lots of joyful deployment ahead!
    Any ideas appreciated,
    Cheers,
    James

  • I have two issues. 1) unable to update Acrobat XI Pro and 2) unable to register product

    First issue: I have for the second time installed Acrobat xi pro and then click on "check for updates" from the help menu. And it shows that an update is available. But when I update it I am given the following error message:
    Error 1328. Error applying patch to file C:\Config.Msi\PT669B.tmp. It has probably been updated by other means, and can no longer be modified by this patch. For more information contact your patch vendor."
    When I click on "details" I am sent to adobe's "update error" page. Which states the following for error 1328: Error applying patch to [filename]. It's likely that something else updated the file, and the patch can't modify it. For more information, contact your patch vendor.
    I have tried uninstalling program and re-installing program but still get same error message from my attempt at updating. So I am not sure if program is update or not. And I do not know who my "patch vendor" is.
    Second issue: Unable to register product with Adobe. Because the option to do so from the "help" menu which lists "product registration" is greyed/dimmed out. Therefore not giving me the ability to register this product. Please let me know what is causing this problem.

    I am not sure, but will suggest some things to try. On the activate issue, it may be that your system already thinks it is activated and so you might try the deactivate and check. If that works, I would suggest you then uninstall, run http://labs.adobe.com/downloads/acrobatcleaner.html, remove anything left of the Acrobat folder, reboot, and reinstall. Hopefully you can open Acrobat and activate. Then do the updates from the Help menu.

  • Unable to update bootcamp and install/find right driver for windows 7 64 bit

    I am trying to install windows 7 Enterpris 64 bit on MBA with i7, agter I downloaded the bootcamp windows driver while MBA was running Lion on a flash drive. after installing windows 7 tried to install bootcamp via flashdrive get error "not intended for the hardware" I tried to all boot cam version 3.1/3.2/3.3, tried the bootcamp with driver downloaded  via Mac Book Pro which seems Ver 4.0 still no sucess. tried to install the driver missing PCI simple communication, some time trackpad freezes, and have to reinstall all over again, and some time unable to pass login screen as CTRL+ALT+DEL won't work, have to use onscreen keyboard to login. please help? thanks

    ashfromwpg wrote:
    I am trying to install windows 7 Enterpris 64 bit on MBA with i7, agter I downloaded the bootcamp windows driver while MBA was running Lion on a flash drive. after installing windows 7 tried to install bootcamp via flashdrive get error "not intended for the hardware" I tried to all boot cam version 3.1/3.2/3.3, tried the bootcamp with driver downloaded  via Mac Book Pro which seems Ver 4.0 still no sucess. tried to install the driver missing PCI simple communication, some time trackpad freezes, and have to reinstall all over again, and some time unable to pass login screen as CTRL+ALT+DEL won't work, have to use onscreen keyboard to login. please help? thanks
    You need 3.0 installed, 3.1 etc are updates, and they need something to update.
    How do you plan on dealing with Firmware Updates without an OSX partition?

  • Unable to update Acrobat XI: Error 1311. Source file not found: ....\Data1.cab

    Hello,
    My Acrobat XI was obtained as a digital download, installed without a hitch and runs fine. When I recently received notification of an update, I attempted to install it but couldn't because of the above mentioned error.
    I searched the specified (x86) directory and Data1.cab is not there. I ran the original downloaded executable file and it created a temporary folder on my desktop with the install files but Data1.cab is not in that directory either. What am I doing wrong? Thanks in advance.
    Art

    Thanks Anoop,
    I’m still getting the same error message.
    Regards,
    Art Acuña
    <mailto:[email protected]> [email protected]
    Dominus vobiscum

  • E51- PC Suite 6.85 Unable to update contacts from ...

    Hi,
    Phone: Nokia E51
    PC Suite version: 6.85.14.1 (supplied with the phone)
    PC Operating System: Windows XP
    I installed PC Suite to my PC without any error. I want to view, edit or delete contacts from the Computer. The phone is connected to computer using the cable supplied.
    On the Nokia Phone Browser when I click on the Contacts, I get following message:
    Do you want to update your contacts now ?
    I select Yes and see following message:
    Failed to start update, click OK to see following message:
    The operation could not be completed.
    Addition of new contacts from computer works fine. But viewing and editing of contacts does not work.
    All the contacts on the phone are on phone memory. The phone was not locked while performing this operation.
    User guige of the PC Suite 6.85 states that With Nokia PC Suite you can Create, view, delete, or edit contacts on the PC. But only Create action works. Other actions do not work.
    Please advice.
    Thanks

    Here is my solution - after trying for many hours:
    1) Clean install of PCSuite- uninstall everything (3 programs) beforehand
    2) Restart PC
    3) take the SIM card OUT of the 6500 classic phone
    4) set 6500 connectivity option to sync with PCSuite
    5) Turn on phone (cover needs to be back on phone) and connect phone to PC via USB cable
    6) PC suite recognizes phone (like beforehand) AND will allow synching etc.
    7) Sync outlook contacts with phone using PCSuite
    8) Turn off phone, insert SIM Card
    9) turn on phone, set contacts savings option in phone to PHONE ONLY (no SIM!)
    10) From now on, full synching etc. works even with the SIM Card inside the phone

  • Unable to update iPhoto after installing yosemite on iMac

    recently installed yosemite OS, but cannot open iPhoto without update  and cannot find update.

    Its been like this for 2 hours...
    It may be hanging, because you are running out of storage - do you have at least 10GB of fee disk space?
    Or something is interfering with your connection to the App Store - anti virus software, a firewall. If you have any such software running, restart yor mac in Safe Mode and try reinstalling in this mode:  Mac OS X: Starting up in Safe Mode
    If that does not help either, ask in the App Store forum.

  • Unable to update AppleTV from 2.4 to 3.0

    My ATV reports it cannot update 'right now-should try later....'. Also found out that I cannot login to YouTube... does not recognize my youtube login data.... Similar I cannot enter iTunes Store from Apple TV.... Yet, I checked all connections and they are okay... Anyone can help?

    I have exactly the same problem. I tried to update from 2.4 and got the meassge that no update is available. I can't get YouTube or movie trailers. I can't log into the iTunes Store ... my password is not recognized. I did a factory restore and now I've been downgraded to 2.0. There is nothing wrong with the connections. After the restore, ATV synced with iTunes and photos on my laptop.
    Using Windows 7, 64-bit; iTunes 9.02; ethernet network; Verizon FiOS.

  • Unable to update data from JSPDynpage using RFC

    I have this code in my JSPDynpage
         public void onSaveButtonClicked (Event event) throws PageException 
              DropdownListBox dListMain = (DropdownListBox) getComponentByName("mydropdown");
              DropdownListBox dListEthnicityNew = (DropdownListBox) getComponentByName("ethnicNew");
              TableView raceCtgTableWithSelections = (TableView) getComponentByName("raceCategoryField");
              this.listSelected = dListMain.getSelection();
              this.listSelectedText = dListMain.getTextForKey(listSelected.toString());
              this.ethnicNewSelected = dListEthnicityNew.getSelection();
              this.ethnicNewSelectedText = dListEthnicityNew.getTextForKey(ethnicNewSelected);
              InputField valFromField = (InputField) getComponentByName("vFrom");
              SimpleDateFormat sapFormat = new SimpleDateFormat("yyyyMMdd");
              SimpleDateFormat javaFormat = new SimpleDateFormat("MM/dd/yyyy");
              try
                   IPortalComponentProfile userProfile = request.getComponentContext().getProfile();
                   String destinationName = userProfile.getProperty("SystemIdentifier");
                   IJCOClientService clientService = (IJCOClientService) request.getService(IJCOClientService.KEY);
                   client =  clientService.getJCOClient(destinationName, request);
                   client.connect();
                   myRep = new JCO.Repository( "SAP", client );
                   fTemplate = myRep.getFunctionTemplate("ZHMA_ETHNICITY");
                   func = new JCO.Function ( fTemplate );
                   if(func == null)
                        System.out.println(" Function Module not found in SAP.");
                        throw new Exception(" Function Module not found in SAP.");
                   func.getImportParameterList().setValue(dListMain.getSelection(),"CETHNICITY");
                   func.getImportParameterList().setValue(sapFormat.format(javaFormat.parse(valFromField.getValue().toString())),"VALFROM");
                   func.getImportParameterList().setValue("99991231","VALTO");
                   func.getImportParameterList().setValue(dListEthnicityNew.getSelection(),"ETHEN");
                   int j=1;
                   for(int i=1; i <= raceCtgTableWithSelections.getRowCount(); i++)
                        if(raceCtgTableWithSelections.isRowSelected(i))
                             func.getImportParameterList().setValue("R"+i, "RACECAT"+j);
                             j++;
                   client.execute(func);
                   JCO.Table messages = func.getTableParameterList().getTable("RETURN");
                   for(int i=0; i < messages.getNumRows(); i++)
                        messages.setRow(i);
                        messagesList.add(messages.getString("MESSAGE"));
                   myContext.putValue("messages", messagesList);
              catch(Exception e)
                   System.out.println(e);
                   throw new PageException(e);
              state = INITIAL_STATE;
    <b>This code is working fine in my development environment, but some how, this is not working in QA environment. I am getting the exception below in QA.</b>
    #1#com.sap.sldserv.exception.SldServiceRuntimeException: Failed to create CIM client. Check via 'Visual Administrator' tool if the secure store is operational.
         at com.sap.sldserv.SldApplicationService.getCimClient(SldApplicationService.java:117)
         at com.sap.tc.webdynpro.serverimpl.wdc.sl.SystemLandscapeFactory$1.run(SystemLandscapeFactory.java:751)
         at java.security.AccessController.doPrivileged(AccessController.java:193)
         at com.sap.tc.webdynpro.serverimpl.wdc.sl.SystemLandscapeFactory.getClient(SystemLandscapeFactory.java:747)
         at com.sap.tc.webdynpro.serverimpl.wdc.sl.SystemLandscapeFactory.getCurrentJ2EECluster(SystemLandscapeFactory.java:808)
         at com.sap.tc.webdynpro.serverimpl.wdc.sl.SystemLandscapeFactory.getJ2EEVersionInfo(SystemLandscapeFactory.java:1080)
         at com.sap.tc.webdynpro.services.sal.sl.api.WDSystemLandscape.getJ2EEVersionInfo(WDSystemLandscape.java:580)
         at com.sap.tc.webdynpro.clientimpl.http.client.AbstractHttpClient.getJ2EEInfo(AbstractHttpClient.java:546)
         at com.sap.tc.webdynpro.clientimpl.http.client.AbstractHttpClient.writeVersionInfo(AbstractHttpClient.java:502)
         at com.sap.tc.webdynpro.clientimpl.html.client.HtmlClient.fillStaticTemplateContext(HtmlClient.java:737)
         at com.sap.tc.webdynpro.clientimpl.html.client.HtmlClient.sendResponse(HtmlClient.java:1223)
         at com.sap.tc.webdynpro.clientimpl.html.client.HtmlClient.retrieveData(HtmlClient.java:252)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doRetrieveData(WindowPhaseModel.java:595)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:156)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:313)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:759)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:712)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:261)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:46)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:215)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.lcr.api.cimclient.CIMClientException: java.net.MalformedURLException: URL must have a host part
         at com.sap.lcr.api.cimclient.ClientFactory.createConnection(ClientFactory.java:466)
         at com.sap.lcr.api.cimclient.ClientFactory.createClientImpl(ClientFactory.java:413)
         at com.sap.lcr.api.cimclient.ClientFactory.createClient(ClientFactory.java:363)
         at com.sap.sldserv.SldApplicationService.getCimClient(SldApplicationService.java:113)
         ... 38 more
    Let me know is there any thing that I need to configure in QA environment.
    Thanks in Advance,
    Jagadeesh.
    Message was edited by:
            Jagadeesh Vankayala

    hi Jagadeesh,
    are you using SLD related configurations anywhere for your application? From the error message it seems the CIM client generation falied due to some reason. You can check from the Visual Admin of both your DEV & QA systems to find any mismatch.
    Go to Visual Admin -> Server -> Services -> SLD Data Supplier -> CIM Client Generation Settings and see if you can find any difference. Normally here in the HTTP Settings tab and CIM Client Generation tab you should mention your SLD URL and logon details. You can check the CIM client generation setting by clicking the "CIMCLient Test"  button under the CIM Client Generation Setting tab.
    Regards,
    Shubhadip

  • Unable to update, or re-install, iTunes on windows 7...

    my family uses our desktop computer for syncing their iPod Touches with iTunes. Recently, they began having an issue with having iTunes open up without running it as an Administrator. It became more and more difficult to get it to open. I finally decided to uninstall iTunes and then re-install it. Uninstalling it was like trying to surgically remove cancer or something. It was everywhere. Online forums advised me to use a free windows program called revo uninstaller. I did, and boy does it remove everything. Keep that one in your back pocket. It cleans registry entries and everything else. So I tried to re-install iTunes and I keep getting this security error: 5. I can't get it to re-install for anything. My kids are searching the internet for this fix and that process, and nothing is working. HELP!
    I tried installing the current iTunes, and even tried to regress back to 10.6.3 as directed on several help websites.
    tufelhundin

    - See:
    Trouble installing iTunes or QuickTime for Windows
    - If still problem post in the iTunes forum.

  • Unable to update application from App Store

    I bought a used mac mini and I was viewng the App Store and wanted to purchase IPhoto app but it was purchase previously and could not update because not associated with my Apple ID.  The error message reads I would need to purchase it again  My issue I have it the icon for the application just give me a the options to "update" and not purchase.  What do I need to do to purchase this app?

    You need to delete the app. The easiest way is to download the free app AppCleaner. Drag & drop the iPhoto icon on AppCleaner and it will find all of the related files and present them to you for deletion. After you have deleted iPhoto you can buy it for yourself.
    http://freemacsoft.net/#

  • HT4623 Unable to update applications installed.Error message "unable to connet iTunes" appears after installation icon hanging

    Since last two weeks I am unable to update my applications installed in iPad with iOS 6. Also no new app is getting installed. Installation icon appears but after some time error message "unable to connect iTunes " appears.Can some one guide me to solve this problem please?

    I've had similar problems. Whenever I try and update apps on the iPhone, the app would apparently download ok, but then not install. This didn't happen with new apps - only ones I was updating.
    I got around the issue by downloading the update in iTunes on my Mac, then deleting the app from the phone, then syncing. The problem with this method is that certain apps had saved settings which are lost when following this method.
    However... I seem to have fixed the issue after 2 months of trying.
    I followed the advice of this page:
    http://www.iphoneatlas.com/2008/09/10/itunes-8-workaround-for-5002-unknown-error -when-trying-to-update-apps/
    Then I repaired disk permissions and finally I completely erased and restored my iPhone BEFORE I synced it after the moving of the Mobile Applications folder.
    It's all working perfectly now and made my life much easier (especially with Aurora Feint updates), so I hope that this method works for some others.
    Good luck.
    Dom

Maybe you are looking for

  • Adobe Air installer is not opening on Mac

    Hi, I have downloaded the last version of Adobe Air but the installer is not opening. I have followed the steps written on this page : http://helpx.adobe.com/air/kb/troubleshoot-air-installation-mac-os.html , but after step 4 'after hitting enter you

  • [svn] 839: Moving the SuspendableAMFFilter classes to BlazeDS (and fix an @ author Javadoc tag in the SQLParser.jj grammar).

    Revision: 839 Author: [email protected] Date: 2008-03-17 13:06:58 -0700 (Mon, 17 Mar 2008) Log Message: Moving the SuspendableAMFFilter classes to BlazeDS (and fix an @author Javadoc tag in the SQLParser.jj grammar). Modified Paths: blazeds/branches/

  • Colors and asterisks in Report Painter

    Hello, I have a question, I am not FI so I experience some difficulties in the Report Painter. I had to add a new item and I assigned the account numbers as well. But somehow the item is shown in red letters and with an asterisk on blue ground (the o

  • Ordering Database Records

    Hi all, thanks for reading... I have table with some simple columns and rows in it. I wanted to have full control over the order these elements appeared so created a column named "item_order" which holds a number (1 being highest priority) for each r

  • Scheduling Agreements Change History

    Hello, I was trying to track the changes of Scheduling Agreements (VA33) but could not. The "Display Changes" option in the Environment Menu and the CDHDR/CDPOS gives only provides information at the item level. The schedule line changes like change