Upgrade from JSF 1.1 to JSF 1.2 (Mojarra and MyFaces) failed.

Dear all,
I tried to upgrade from JSF 1.1 to JSF 1.2 but failed. The application starts OK in jsf 1.1 both myfaces and RI, but failed to start using JSF 1.2.
My environment is as follows.
- JDK 1.5
- Tomcat 6.0
- Facelet
- JSF Mojarra 1.2
The error is as follows, occurs when starting tomcat (my application is in context /web)
INFO: Initializing Sun's JavaServer Faces implementation (1.2_01-b04-FCS) for context '/web'
Feb 12, 2009 10:39:40 AM com.sun.faces.config.ConfigureListener contextInitialized
INFO: Completed initializing Sun's JavaServer Faces implementation (1.2_01-b04-FCS) for context '/web'
Feb 12, 2009 10:39:40 AM org.apache.catalina.core.StandardContext start
SEVERE: Error listenerStart
Feb 12, 2009 10:39:40 AM org.apache.catalina.core.StandardContext start
SEVERE: Context [web] startup failed due to previous errors
What I have included in WEB-INF/lib are:
- JSTL 1.2 (standard.jar and jstl.jar)
- JSF mojarra 1.2 (jsf-api.jar and jsf-impl.jar)
- Facelets( el-api.jar, el-impl.jar, and jsf-facelet.jar)
- commons-digester.jar
- commons-beanutils.jar
- commons-logging.jar
- commons-collection.jar
Documentation that I read from mojarra FAQ states that i need EL, but EL has been included in Facelets.
Am i missing something? The following is the part of web.xml that i used, maybe useful to locate what i am missing.
<web-app xmlns="[http://java.sun.com/xml/ns/j2ee]"
xmlns:xsi="[http://www.w3.org/2001/XMLSchema-instance]"
xsi:schemaLocation="[http://java.sun.com/xml/ns/j2ee] [http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd]"
version="2.4">
<context-param>
<param-name>javax.faces.DEFAULT_SUFFIX</param-name>
<param-value>.xhtml</param-value>
</context-param>
<!-- Special Debug Output for Development -->
<context-param>
<param-name>facelets.DEVELOPMENT</param-name>
<param-value>true</param-value>
</context-param>
<!-- Optional JSF-RI Parameters to Help Debug -->
<context-param>
<param-name>com.sun.faces.validateXml</param-name>
<param-value>true</param-value>
</context-param>
<context-param>
<param-name>com.sun.faces.verifyObjects</param-name>
<param-value>true</param-value>
</context-param>
<!--use this if start using JSF 1.2 -->
<context-param>
<param-name>com.sun.faces.injectionProvider</param-name>
<param-value>com.sun.faces.vendor.GlassFishInjectionProvider</param-value>
</context-param>
<servlet>
<servlet-name>faces</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>0</load-on-startup>
</servlet

Hi BalusC,
Thank you for your time answering my question.
For the first point, you were right. Now I have downloaded the latest Mojarra release.
As for the case of web.xml, i should mentioned that I have tried declaring it as Servlet API 2.4 and Servlet API 2.5, and still got the error. My web.xml that declares as 2.5 looks as follows:
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaeeweb-app_2_5.xsd"
version="2.5">
On the third point, maybe i stated my problem in a wrong way. What I meant was, I tried each implementation separately, and both implementation did not work.
About Glassfish injection, i followed the step in Mojarra FAQ regarding the following error.
JSF1033: Resource injection is DISABLED
This error showed when i started tomcat. However, since I use the latest Mojarra release, the message error disappear. I have deleted the "glasshfish injection provider" from web.xml, and the error has disappeared.
Here's the latest of my tomcat startup messages (after i replaced the Mojarra libraries, declared as servlet 2.5 in web xml, and removed glassfish injection provider from web.xml).
Feb 18, 2009 9:41:58 AM org.apache.catalina.core.AprLifecycleListener init
INFO: Loaded APR based Apache Tomcat Native library 1.1.14.
Feb 18, 2009 9:41:58 AM org.apache.catalina.core.AprLifecycleListener init
INFO: APR capabilities: IPv6 [false], sendfile [true], accept filters [false], random [true].
Feb 18, 2009 9:41:59 AM org.apache.coyote.http11.Http11AprProtocol init
INFO: Initializing Coyote HTTP/1.1 on http-80
Feb 18, 2009 9:41:59 AM org.apache.coyote.ajp.AjpAprProtocol init
INFO: Initializing Coyote AJP/1.3 on ajp-8009
Feb 18, 2009 9:41:59 AM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 772 ms
Feb 18, 2009 9:41:59 AM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
Feb 18, 2009 9:41:59 AM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/6.0.18
Feb 18, 2009 9:42:01 AM com.sun.faces.config.ConfigureListener contextInitialized
INFO: Initializing Mojarra (1.2_12-b01-FCS) for context '/web'
Feb 18, 2009 9:42:01 AM com.sun.faces.config.ConfigureListener contextInitialized
WARNING: JSF1059: WARNING! The com.sun.faces.verifyObjects feature is to aid developers not using tools. It shouldn''t be enabled if using an IDE, or if this application is being deployed for production as it will impact application start times.
Feb 18, 2009 9:42:06 AM org.apache.catalina.core.StandardContext start
SEVERE: Error listenerStart
Feb 18, 2009 9:42:06 AM org.apache.catalina.core.StandardContext start
*SEVERE: Context [web] startup failed due to previous errors*
Feb 18, 2009 9:42:07 AM org.apache.coyote.http11.Http11AprProtocol start
INFO: Starting Coyote HTTP/1.1 on http-80
Feb 18, 2009 9:42:07 AM org.apache.coyote.ajp.AjpAprProtocol start
INFO: Starting Coyote AJP/1.3 on ajp-8009
Feb 18, 2009 9:42:07 AM org.apache.catalina.startup.Catalina start
INFO: Server startup in 8116 ms
The application still failed to start.There wasnt enough information for me to digest what is actually went wrong, other than SEVERE: Listener start. And let me say this again, the application starts OK when I used JSF 1.1 (Reference Implementation or MyFaces).
Anyone has the same experience.?
Thanks in advance.
Edited by: niner on Feb 17, 2009 7:11 PM

Similar Messages

  • I upgraded my iBook G4 from 384MBytes to 640Mbytes and upgraded from Tiger to Leopard. After a few weeks the HDD failed. New Leopard install reports: "insufficient memory". I need Tiger install disks so I can install

    I upgraded my iBook G4 from 384MBytes to 640Mbytes and upgraded from Tiger to Leopard.
    After a few weeks the HDD failed. I bought a new disk, installed it and trued to install Leopard, but the  install fails reporting "insufficient memory".
    I assume the installation requires more memory than the OS actually needs to be able to run.
    I need Tiger install CD/DVD so I can install Tiger first and then upgrade to Leopard.

    Call Apple Customer Support 1-800-767-2775, provide the Serial Number and specifications of the Mac, and for a reasonable fee, they will supply a replacement set of system discs (if available).
    The discs will be for the original version of the OS that was pre-installed when the Mac was manufactured.
    You need much more RAM than that.
    Leopard system requirements:
    http://support.apple.com/kb/SP517

  • I just got an iPhone 4 as an upgrade from the original iPhone 3.  I came home and tried to sync it with my iTunes and it says I need to upgrade my iTunes to work with the 4.  The current version of iTunes isn't compatible with my G5 mac?????

    I just got an iPhone 4 as an upgrade from the original iPhone 3.  I came home and tried to sync it with my iTunes and it says I need to upgrade my iTunes to work with the 4.  The current version of iTunes isn't compatible with my G5 mac?????  Help

    Return it.
    The requirements are on the box and on the website:
    Mac system requirements
    Mac computer with USB 2.0 port
    Mac OS X v10.5.8 or later
    iTunes 10.1 or later (free download fromwww.itunes.com/download)
    iTunes Store account
    Internet access
    http://www.apple.com/iphone/specs.html

  • I have a mac and am thinking about upgrading from snowlepard to lion , is it a good idea and hard to adapt to

    i have a mac and am thinking about upgrading from snowlepard to lion , is it a good idea and hard to adapt to

    This is my "About This Mac" ... it shows I have Intel i7 CPU.  If you are running SL, you at least have Intel, but would need at least Core2Duo an 2 GB (most people suggest 4 GB) RAM.
    If you want to run Lion, remember that the discussions in this forum from last summer when Lion first came out (and since) were highly charged at times.  Certain features that vanished or were added caused great heartache for some.  Others love Lion, though.  And some live with the changes waiting for any fixes they would desire.
    Any PPC (PowerPC) applications you depend upon will not work under Lion.  Use this page to see what applications will not run:  http://roaringapps.com/apps:table
    AND
    Recall that you can clone your SL to an external disk to keep it safe.  Then you can "experiment with" the new OSX (Lion or ML) until you know it works for you while still having your old SL safe in case you need it.
    Good luck.

  • Since upgrading from Windows Vista to Windows 7 both Internet Explorer and Firefox will not recognize the numbers keys of my keyboard. I get numbers in Word and every other situation, just not in the internet programs.

    Since upgrading from Windows Vista to Windows 7 both Internet Explorer and Firefox will not recognize the numbers keys of my keyboard. I get numbers in Word and every other situation, just not in the internet programs. I have tried uninstalling Firefox and reinstalling with no results.

    If there are problems with importing the IE Favorites in Firefox then export the favorites in IE to an HTML file and import that file in the Firefox Bookmarks Manager.
    If you do not have the menu bar in IE then right-click the toolbar at the top to enable the Menu Bar.
    *Export the favorites in IE to an HTML file (bookmarks.html):<br>File > Import and Export
    *Import the HTML file in Firefox:<br>Bookmarks > Show All Bookmarks > Import & Backup > Import Bookmarks from HTML
    See "Import from another browser" and "Import from file":
    *http://kb.mozillazine.org/Import_bookmarks

  • I lost my logic 8 pro serial number. I can't find the booklet that comes with the serial number. How can retrieve this? I upgraded from logic pro 7. I changed hard drives and now it keeps asking for the serial number. But I can't find it. Where can I requ

    I lost my logic 8 pro serial number. I can't find the booklet that comes with the serial number. How can retrieve this? I upgraded from logic pro 7. I changed hard drives and now it keeps asking for the serial number. But I can't find it. Where can I request it? Thanks!

    If you still have the receipt or other proof of purchase, you can ask Apple to send you the serial. Otherwise, bad luck mate.. Good news is, you can now buy Logic Pro 9 from App Store for just 199 USD

  • Finder crashes with OS 10.6.8. With or without any apps running finder will hang repeatedly causing the iMac to hang also. I upgraded from 10.5.8 to 10.6.8 recently and finder was OK for 1 week. How do I submit a crash log?

    Folllowing an upgrade from 10.5.8 to 10.6.8  (Snow Leopard) Finder frequently hangs, causing any open apps and the iMac to hang. This will occur whether or not any 3rd party apps or Safari are open. About 50% of the time trying to empty the trash will cause a finder hang. There are no error messages to let me know what code such a hang may be. Repeated attempts to force quit the iMac always fail, so I have to hard crash using the power button. Multiple attempts are required to successfully restart via the login screen. I do not know whether any other apps, such as Safari or screen saver may be involved. I think a crash log would help, however I am not sure whether I should look in: useres/library/logs/DaiagnosticReports or : users/library/logs/CrashReporter, and whether I should attempt to open the latest in either in Console or Text edit and then post here. Also, is this the appropriate site to post a log in the hope that Apple may look at it? I have read through threads on Apple finder, and am stunned to find that after all these OS-X versions finder is still buggy and inferior to MS Explorer and Apple appears to be in denial. Maybe their efforts are in devices such as iPhones and iPads? Ths issue never occured in OS 10.5.8.

    Better is http://www.apple.com/feedback/macosx.html

  • I upgraded from OS 10.4.11 to 10.6.8 and now cannot print to my Epson Stylus Photo RX595. When I try, I recieve the following error message: Error:/System/Library/Printers/Libraries/PrintJobMgr/Contents/MacOS/PrintJobMgr failed. Is this a driver issue?

    Is my inability to print from my Intel iMac with OS 10.6.8 related to a driver problem? I checked the Epson website for up-to-date drivers, but they appear to only have print drivers good through OS 10.5x. I did the Apple software update yesterday so everything is up-to-date. Is there no support for the Epson RX545 under OS 10.6x?

    When you upgrade from a previous OS there is always a chance that you will bring some setting that is not compatible with the new OS. This can be the driver as noondaywitch suggests but it can also be the core printing system. In the case of the latter, it is a good idea to reset the printing system when a core error occurs. Note that the reset sets the printing system back to default and removes your currently installed printer and scanner queues. But it does not remove the supporting drivers, so you only need to install the driver again.
    How to Reset the Printing System
    1. Open System Preferences > Print & Scan/Fax
    2. Move your mouse over the Printers list
    3. Hold down the Control button and click the mouse
    4. Click the "Reset printing system ..." popup
    5. Restart your Mac
    Just one additional thing to note. In checking the supported printer list for 10.6 from Apple, your RC545 is not listed so running the Software Update will not provide you with a driver for this printer. So if Epson does not have a driver for 10.6, and it appears that Apple does not provide one, then what you have already from the previous installation is it. And if this doesn't work, then you may have to look at either an alternate driver or getting another printer. But let's wait and see what happens after the reset.

  • Upgrade from JDeveloper 9.0.3 to 10.1.2 and 10.1.3.5 problem

    Hi,
    I am upgrading a project from JDeveloper 9i (9.0.3.3. Build 1205) to 10g (10.1.2.3.0 Build 1936).
    90% of the code runs fine and I have managed to fix a few problems but I am stuck with the following exception when I call findByKey on a RowIterator (I am using BC4J)
    oracle.jbo.domain.DataCreationException: JBO-25009: Cannot create an object of type:oracle.jbo.domain.Number with value:2012-02-29
    at oracle.jbo.domain.TypeFactory.get(TypeFactory.java:747)
    at oracle.jbo.domain.TypeFactory.getInstance(TypeFactory.java:85)
    at oracle.jbo.domain.TypeFactory.checkEquals(TypeFactory.java:485)
    at oracle.jbo.server.RowFilterKey.paramQualifies(RowFilterKey.java:100)
    at oracle.jbo.server.EntityCache.findUnpostedRows(EntityCache.java:1369)
    at oracle.jbo.server.QueryCollection.addUnpostedRowsFromECache(QueryCollection.java:1673)
    at oracle.jbo.server.QueryCollection.findUnpostedRows(QueryCollection.java:1768)
    at oracle.jbo.server.QueryCollection.prepForQuery(QueryCollection.java:485)
    at oracle.jbo.server.ViewRowSetImpl.findByKey(ViewRowSetImpl.java:3397)
    at oracle.jbo.server.ViewRowSetImpl.findByKey(ViewRowSetImpl.java:3322)
    at oracle.jbo.server.ViewRowSetImpl.findByKey(ViewRowSetImpl.java:3311)
    at myclass.mymethod(myclass.java:114)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:280)
    at org.apache.struts.actions.LookupDispatchAction.execute(LookupDispatchAction.java:252)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    at tbs.framework.servlet.TbsServletFilter.doFilter(TbsServletFilter.java:112)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:622)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:369)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:865)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:447)
    at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:215)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    10.1.2.3 is an intermediate step trying to get to 10.1.3.5.
    I have verified the error is also present when testing in 10.1.3.5.
    I have gone through the release notes for 10.1.2.x but can't find anything :(
    Hope you can give me some guidance!

    I have upgraded from 9.0.3 to 9.0.4 and still get the mentioned error.
    It works on 9.0.3 and it doesn't work on 9.0.4!
    I have setup two instances of OC4J to test this, one with the 9.0.3 BC4J Libraries, the other with 9.0.4 BC4J Libraries
    I am using to deployment files, one created using JDev 9.0.3 and the other using JDev 9.0.4. I have tried the following combinations (results added as well)
    JDev9.0.3.Ear on OC4J (with 9.0.3 BC4J Libraries) -> it works
    JDev9.0.4.Ear on OC4J (with 9.0.3 BC4J Libraries) -> it works
    JDev9.0.3.Ear on OC4J (with 9.0.4 BC4J Libraries) -> same exception
    JDev9.0.4.Ear on OC4J (with 9.0.4 BC4J Libraries) -> same exception
    I have compared the source code from 9.0.3 with 9.0.4 projects and source files are unchanged, only project files are updated.
    So, could it be the JDK 1.3 to 1.4 upgrade causing an issue? The BC4J libraries (most probably)?
    Any clues?
    Edited by: user10349938 on 10-Apr-2012 20:14

  • Upgrade from PageMaker to InDesign. What version is best and will old serial number work?

    I'd like to upgrade from PageMaker 6.5 to InDesign. Should I wait for InDesign C S5. Will InDesign C S5 support PageMaker? Or should I upgrade to InDesign C S4? And if I have an old serial number for PageMaker 6.5, how can I complete the upgrade? I understand the older PageMaker serial numbers are no longer recognized.

    I understand that Adobe is already selling InDesign CS5 and therefore you would have no choice if you want to upgrade. I would think that the easiest way of finding if your PM serial number applies for an upgrade is to try buying an upgrade. You don't need to complete the purchase if you don't want to.

  • Upgraded from Lightroom Beta which was on a hard drive which has failed now want to install my upgrade unto new hard drive.

    When lightroom first arrived on the scene, it was in the beta stage and had unlimited free access.  I liked it and when Lightroom 2 came out I upgraded from Adobe.   That was on my old computer whose hard drive has failed.  So now wish to install my Lightroom 2 on my new computer.    It asks for the Original serial # which I do not have access to.   Since my original version was a beta how can I get a serial # for a version 1.0 ?

    When lightroom first arrived on the scene, it was in the beta stage and had unlimited free access.  I liked it and when Lightroom 2 came out I upgraded from Adobe.   That was on my old computer whose hard drive has failed.  So now wish to install my Lightroom 2 on my new computer.    It asks for the Original serial # which I do not have access to.   Since my original version was a beta how can I get a serial # for a version 1.0 ?

  • Can I upgrade from Firefox 3 (updated newest version) to Firefox 4 and keep my bookmarks and settings or will I lose them if I upgrade ?

    I want to upgrade to the new Firefox 4 from my Firefox 3. But I don't want to lose my settings, tags and bookmarks that I have now. So my question is: Can I upgrade without losing these ?
    Please Help !

    Firefox 4 will by default use the same profile folder (location where bookmarks, passwords etc are stored) as previously installed versions. You will not lose your user data by upgrading.

  • Permission Errors: Mtn Lion upgrade from SL iphoto, iTunes, etc; want to save myself and reinstall, Permission Errors: Mtn Lion upgrade from SL iphoto, iTunes, etc; want to save myself and reinstall

    Well here I am again, once again lots of problems with t he upgrade to ML from SL on my late 2009 iMac.
    Background: I took my perfectly fine functioning iMac into the Apple Store to have the Seagate HD replaced pert the recall. BIG MISTAKE. The Geniuses gave me a "complimentary" upgrade to ML without asking if that was okay, and three months later, I still do not have a functioning iMac.
    My iMac since this reintallation has been unable to open ANY iphoto files/photos saved whie I was still running SL--pretty much everything I've saved as a jpeg for the last six years, so I'm not willing to let this go so easily. Not only have I got work-related files on here that I need, all of my children's and family photos are saved on there. I need those files.
    After trying to no avail to reinstall SL from disk, the Apple Tech from Apple Care said that I've got hardware problems (fans wont' stop running; SL disk cannot be read by either Super Drive--the one inside the iMac or the external portable Super Drive, hence reinstallation of SL has not been possible), so I'm supposed to take it BACK into the Apple Store and let them work on it again. Please understand that for the last three months I have been dealing with nonstop issues that have created a real mess of my life and nothing gets fixed, no matter how many phone calls I make. I do not think any of this is hardware-related, honestly. I've found numerous threads on the fan running constantly with the installation of ML; and no, I'm not even running any CPU-instensive programs. And nothing explains why when the SL disk (a second copy of which was mailed to me) cannot be opened (the progress wheel just keeps spinning and spinning).
    Well, I've decided that I'm probably going to have to give up on this, and that my previously working iMac that should have had more life in it is destined for the landfill (or recycling). All I want now is to get my data off of it and be able to  use it with my external hard drive with another Mac (MBA now running Lion--although it's also got lots of problems) and a new Windows machines which I will mostly likely be buying this week. I can no longer live with the interruptions to my life--I work with my computers, need my data, and this has been going for three months.
    I read a bunch of really complicated information on how to get my old data off of my Mac and/or external hard drive, and I've accepted that this is going to take a LOT of time, but I  do't have a choice if I want my data.
    I'm now looking at the contents of my external hard drive, and looking specifically at one of the user accounts (one that I use for work purposes) and I see that I am not allowed to view the contents of the "Pictures" because I do not have permission. This has been an ongoing issue while using the MBA to TRY to view/access data from the iMac. Is there anyone who can help me figure out how to repair all of  these permission errors?
    I've lost an unbelievable amount of time with all of this and I only want MY OWN files. I'm not trying to pirate any software, I just want and need my own iPhoto images and of course, since I own the music in my iTunes library, I think I ought to have permission to take this data off of  this external hard drive and put it onto another external hard drive that I will buy tomorrow, so that I can reinstall onto another machine (ie, probably a  new WIndows computer).
    To paraphrase:
    Upgrade to ML made most of my files saved on my iMac with SL obsolete or not viewable or accessbile. I NEED these files (mostly jpegs, iTunes music, some pages docs, etc, but I'll live without those docs if need be).
    I have the last backup that was done before taking the iMac in to have the hard drive replaced. I can see that the data is there, but in one of the user accounts, the one I use mostly for work related purposes, the error  message that tells me I cannot view the files because I do not have permission comes up. I've never had any other admins of my computers, either the iMac or the MBA that I am trying to use to open the files on the external hard drive. How would I repair the permissions on a backup of my old SL system from a MBA running Lion?
    Anyone? Please help. I'm going to lose a whole heck of a lot of data and money if I cannot get these saved files back.

    Well here I am again, once again lots of problems with t he upgrade to ML from SL on my late 2009 iMac.
    Background: I took my perfectly fine functioning iMac into the Apple Store to have the Seagate HD replaced pert the recall. BIG MISTAKE. The Geniuses gave me a "complimentary" upgrade to ML without asking if that was okay, and three months later, I still do not have a functioning iMac.
    My iMac since this reintallation has been unable to open ANY iphoto files/photos saved whie I was still running SL--pretty much everything I've saved as a jpeg for the last six years, so I'm not willing to let this go so easily. Not only have I got work-related files on here that I need, all of my children's and family photos are saved on there. I need those files.
    After trying to no avail to reinstall SL from disk, the Apple Tech from Apple Care said that I've got hardware problems (fans wont' stop running; SL disk cannot be read by either Super Drive--the one inside the iMac or the external portable Super Drive, hence reinstallation of SL has not been possible), so I'm supposed to take it BACK into the Apple Store and let them work on it again. Please understand that for the last three months I have been dealing with nonstop issues that have created a real mess of my life and nothing gets fixed, no matter how many phone calls I make. I do not think any of this is hardware-related, honestly. I've found numerous threads on the fan running constantly with the installation of ML; and no, I'm not even running any CPU-instensive programs. And nothing explains why when the SL disk (a second copy of which was mailed to me) cannot be opened (the progress wheel just keeps spinning and spinning).
    Well, I've decided that I'm probably going to have to give up on this, and that my previously working iMac that should have had more life in it is destined for the landfill (or recycling). All I want now is to get my data off of it and be able to  use it with my external hard drive with another Mac (MBA now running Lion--although it's also got lots of problems) and a new Windows machines which I will mostly likely be buying this week. I can no longer live with the interruptions to my life--I work with my computers, need my data, and this has been going for three months.
    I read a bunch of really complicated information on how to get my old data off of my Mac and/or external hard drive, and I've accepted that this is going to take a LOT of time, but I  do't have a choice if I want my data.
    I'm now looking at the contents of my external hard drive, and looking specifically at one of the user accounts (one that I use for work purposes) and I see that I am not allowed to view the contents of the "Pictures" because I do not have permission. This has been an ongoing issue while using the MBA to TRY to view/access data from the iMac. Is there anyone who can help me figure out how to repair all of  these permission errors?
    I've lost an unbelievable amount of time with all of this and I only want MY OWN files. I'm not trying to pirate any software, I just want and need my own iPhoto images and of course, since I own the music in my iTunes library, I think I ought to have permission to take this data off of  this external hard drive and put it onto another external hard drive that I will buy tomorrow, so that I can reinstall onto another machine (ie, probably a  new WIndows computer).
    To paraphrase:
    Upgrade to ML made most of my files saved on my iMac with SL obsolete or not viewable or accessbile. I NEED these files (mostly jpegs, iTunes music, some pages docs, etc, but I'll live without those docs if need be).
    I have the last backup that was done before taking the iMac in to have the hard drive replaced. I can see that the data is there, but in one of the user accounts, the one I use mostly for work related purposes, the error  message that tells me I cannot view the files because I do not have permission comes up. I've never had any other admins of my computers, either the iMac or the MBA that I am trying to use to open the files on the external hard drive. How would I repair the permissions on a backup of my old SL system from a MBA running Lion?
    Anyone? Please help. I'm going to lose a whole heck of a lot of data and money if I cannot get these saved files back.

  • I've tried upgrading from FCP 10.0.1 to the newest version and I cannot do it. It does not pop up on the App Store. Is this an upgrade or do I have to buy it again?

    I've been trying to export my videos after installing the Mavericks upgrade and FCP does not let me. On one of the forums I was told to upgrade to FCP 10.6.
    Is this a free upgrade or do I have to buy the newest version again?

    The current version is 10.0.9. The update to 10.0.9 from 10.0.1 is free. Log in to the App Store *with the same Apple ID used to buy the application* and click on "Updates".

  • Upgrade from OS 10.5.8 to 10.6.6 (and then to 10.7.2)

    Hardware Overview:
      Model Name:    MacBook Pro
      Model Identifier:    MacBookPro4,1
      Processor Name:    Intel Core 2 Duo
      Processor Speed:    2.5 GHz
      Number Of Processors:    1
      Total Number Of Cores:    2
      L2 Cache:    6 MB
      Memory:    4 GB
      Bus Speed:    800 MHz
      Boot ROM Version:    MBP41.00C1.B03
      SMC Version (system):    1.28f3
    Is there any way I can upgrade my OS with these hardware specs?  I would like to get Lion.  If so, can it be done through downloads, or do I HAVE TO buy a hard copy of Snow Leopard first?  Thank you very much for your assistance. 

    Yes with that hardware you can go to Lion.  You say 10.5.8, so you need to buy Snow Leopard first, that is available on-line from the Apple store for $29.  Whatever vesion you get can be upgraded on-line through software upgrade to 10.6.8 using the combo.  Then download from the app store Lion 10.7.2.  Once you have the download, make a copy of the installer in another location such as your documents folder.  After it installs it deletes the installer (a 4 GB file) so make a copy in case you want it for other machines.
    You have the cpu and memory requirements, all you need in addition is at least 7 GB free Hard Drive space.

Maybe you are looking for