Front Row in Lion. Has anyone got it working with iTunes 10.5 yet?

I've got it working with pics and movies by using the method in the link below, but not with the library in iTunes 10.5.
http://www.cultofmac.com/106874/use-front-row-in-os-x-lion-video-how-to/

Yes I know. I'm very annoyed that Apple have dropped Front Row from Lion, it removes quite a bit of functionality from my iMac. I use it a lot. I've tried Plex, but don't like it at all.

Similar Messages

  • Tomcat 5.5 issues, has anyone got JSF working with tomcat 5.5 yet?

    Hi,
    Firstly I'm wondering if anyone has got JSF 1.1 working with tomcat 5.5 yet.
    I'm trying to move from tomcat 5.0.25 to 5.5.4 and my JSF webapps have not liked the move at all.
    The classpath doesn't seem to be a problem as I have all the .jars that are required in the classpath of tomcat just like before.
    I see the error log in stdout.log (catalina.out on linux) have been reduced to only show the precise error. Or at least is seems at lot easier to read.
    My error is simply
    SEVERE: Error listenerStart
    SEVERE: Context startup failed due to previous errors
    I reverted back to using the examples provided like jsf-guessNumber and the car-demo but neither of these will start-up.
    This issue seems to have occurred to lots of other people previously but I couldn't find a particular fix or direct compatability issue with tomcat.
    Has anyone encountered this before?

    Back again,
    Allright well after a little thought I concluded that this issue had to be some to do with the classpath and the changes between the two tomcat versions.
    I had a look at
    http://jakarta.apache.org/tomcat/tomcat-5.5-doc/RELEASE-NOTES.txt
    and noticed that tomcat 5.5 leaves out some important .jar as they are only needed for java 1.4.
    -------------------- EXTRACT ------------------------
    Installing the compatibility package will add the following to the list, which are
    needed when running on J2SE 1.4:
    * jmx.jar (Java Management Extensions API 1.2 or later)
    * xercesImpl.jar (Xerces XML Parser, version 2.6.2 or later)
    --------------------END EXTRACT ------------------------
    Therefore I tried putting xercexImpl.jar back onto the tomcat classpath and JSF works once again.
    Ah what a relief.

  • Has anyone got iFS working in Tomcat ?

    iFS 1.1.9
    We have a urgent need to get iFS running in a Servlet 2.2 container and OC4J does not support iFS yet. I know this is not supported but has anyone got iFS working in Tomcat ? If so, pls do me a BIG favour by letting me have your config files, such as
    - server.xml
    - <tomcat home>\conf\web.xml
    - web.xml for the tomcat context)
    - wrapper.properties (if you are using tomcat as an NT service)
    - tomcat-apache.conf (or equivalent)
    - <oracle home>/apache/apache/conf/httd.conf
    - A listing of relevant environment variables (by doing a "set>env.lis" or similar)
    - and any other files you might think is relevant
    Thanks a million in advance.
    null

    iFS 1.1.9 / Oracle 8.1.7 / Tomcat 4.0.1 / Windows 2000
    After several hours of fiddling around with the configuration
    files, I finally got the iFS up and running on my test machine.
    Briefly here's what I did:
    1) create application directories
    <tomcat_home>/ifs/files/WEB-INF/classes
    <tomcat_home>/ifs/files/WEB-INF/lib
    2) Add the following to <tomcat_home>/conf/server.xml:
    <Context path="/ifs/files" docBase="ifs/files"
    debug="0" reloadable="true">
    <!-- got this from jserv.properties -->
    <Environment name="ORACLE_HOME" type="java.lang.String"
    value="oracle_home"/>
    <Environment name="ORACLE_SID" type="java.lang.String"
    value="sid"/>
    <Environment name="LD_LIBRARY_PATH" type="java.lang.String"
    value="oracle_home/lib:oracle_home/ctx/lib"/>
    <Environment name="NLS_LANG" type="java.lang.String"
    value=".UTF8"/>
    </Context>
    Please replace oracle_home with your installation directory and
    fill in your SID as well.
    3) create <tomcat_home>/<tomcat_home>/ifs/files/WEB-INF/web.xml
    with the following definitions:
    <servlet>
    <servlet-name>oracle-jsp</servlet-name>
    <servlet-class>oracle.jsp.JspServlet</servlet-class>
    <init-param>
    <param-name>logVerbosityLevel</param-name>
    <param-value>WARNING</param-value>
    </init-param>
    </servlet>
    <servlet>
    <servlet-name>oracle-ifs-servlet</servlet-name>
    <servlet-
    class>oracle.ifs.protocols.dav.impl.IfsDavServlet</servlet-class>
    <init-param>
    <param-name>classpath</param-name>
    <!-- this classpath is crucial for JSP compilation.
    | The value has to be in one single line without
    | linebreaks and spaces !!!
    -->
    <param-value>
    tomcat_home/webapps/ifs/files/WEB-INF/lib/ojsp.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/webui.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/adk.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/http.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/repos.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/email.jar;
    tomcat_home/webapps/ifs/files/WEB-
    INF/lib/release.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/utils.jar;
    tomcat_home/webapps/ifs/files/WEB-
    INF/lib/settings.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/classes;
    tomcat_home/lib/xmlparserv2.jar;
    tomcat_home/lib/classes12.jar;
    tomcat_home/common/lib/servlet.jar;
    </param-value>
    </init-param>
    <init-param>
    <param-name>ifs.dav.servicepassword</param-name>
    <param-value>manager</param-value>
    </init-param>
    <init-param>
    <param-name>encode_to_java</param-name>
    <param-value>true</param-value>
    </init-param>
    <init-param>
    <param-name>page_provider</param-name>
    <param-
    value>oracle.ifs.protocols.dav.impl.jsp.IfsJspResourceProvider</p
    aram-value>
    </init-param>
    <init-param>
    <param-name>page_repository_root</param-name>
    <param-value>ifs_home/ifsjsps</param-value>
    </init-param>
    <init-param>
    <param-name>unsafe_reload</param-name>
    <param-value>false</param-value>
    </init-param>
    <init-param>
    <param-name>developer_mode</param-name>
    <param-value>true</param-value>
    </init-param>
    </servlet>
    <servlet-mapping>
    <servlet-name>oracle-ifs-servlet</servlet-name>
    <url-pattern>/*</url-pattern>
    </servlet-mapping>
    <!-- The mapping for the JSP servlet -->
    <servlet-mapping>
    <servlet-name>oracle-jsp</servlet-name>
    <url-pattern>*.jsp</url-pattern>
    </servlet-mapping>
    tomcat_home and ifs_home must be replaced with your installation
    directories.
    4) Copy the iFS and Oracle JARs to the locations specified in
    web.xml
    You may choose either the applications lib directory or the more
    general tomcat_home/lib for that purpose.
    One hint on libraries: Tomcat will ignore ZIP files, you have to
    use JAR. I renamed Oracle's classes12.zip to classes12.jar for
    that reason.
    5) Create settings.jar
    This was the most tricky part. I packed everything under
    ifs_home/settings into the file settings.zip, renamed this to
    settings.jar and moved it to the WEB-INF/lib directory. Seems a
    bit of a kludge to me, anyone with a better solution is welcome.
    6) Start tomcat
    7) try http://yourtomcathost:8080/ifs/files/index.html
    You should see the ifs login screen then.
    One word about the application environment. In this
    configuration every user class has to go into
    <tomcat_home>/ifs/files/WEB-INF/classes, the
    ifs_home/user_classes is of no use here. And don't try to set
    the classpath within catalina.bat, tomcat will completely ignore
    this setting.
    Finally, I know that this environment is not supported but as
    long as the iFS servlet meets the standards, every standard
    compliant servlet engine should do the job.
    Good luck

  • Has anyone got photostream to upload from a pc yet?  Works fine between my MacBookPro and iMac and TO my PC's but not FROM my PC's

    Has anyone got photostream to upload from a pc yet?  Works fine between my MacBookPro and iMac and TO my PC's but not FROM my PC's

    Same here.  Seems to download great, but upload is a problem.  Searched for some type of file size / type restriction, but the help pages do not seem to be in place yet.

  • Back to Mac - Has anyone got it working?

    I've hooked my laptop up to another ISP and i can't see my desktop in the Shared Section. When i'm on the same network I can see the desktop, share the screen and all that fun stuff. Has anyone got it working? Could it be my network configuration?

    I had a read through the manual that came with Leopard last night and was a little dissapointed to read this part in regard to Back to My Mac:
    With your .Mac membership, an internet connection, and Back to My Mac and sharing services turned on, you can access any of your computers from anywhere on the internet."
    Sounds like you might need a .Mac account for Back to My Mac. I think you can do the same kind of thing with iChat though so i guess you can still take control of someones Mac over the net to help them fix a problem. But you may need .Mac account to, for example, access your home computer from your work computer.
    I could be completely wrong and im certain someone will point this out if i am wrong. Im still getting to grips with all the new features here.

  • Has anyone had a problem with itunes radio skipping?

    has anyone had a problem with iTunes radio skipping?

    Something must have worked - just got an E-mail from MacAce saying they've seen the problem and are arranging a refund.

  • Has anyone done any work with the "Form" Email Feature in 2008?

    Has anyone done any work with the "Form" Email Feature in 2008?
    2006.7
    Oracle 9i
    Websphere 5.11
    IE6 & IE7
    I have been testing the version 2008.2 and noticed the "Form" link in the email templates, has anyone used this or know what its for? 
    It seems like a useful feature, but I can not find any documentation on its use.
    Thank you
    Daniel

    Hi Daniel,
    The HTML widget we have incorporated into the application is an open source tool. It's name is FCKeditor. Here is the URL for the documentation site: http://docs.fckeditor.net/
    - Ed

  • When I plug in my ipod to my laptop instead of my desktop, nothing pops up to sync my ipod. Has anyone had a problem with itunes not recognizing an ipod?

    When I plug in my ipod to my laptop instead of my desktop, nothing pops up to sync it. Has anone had any problems with itunes not recognizing an ipod?

    Hi sarahdavis0_o,
    Welcome to the Apple Support Communities!
    If neither your iPod or iPhone are being recognized by iTunes when connected, I would recommend the steps in the following article.
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    Have a great day,
    Joe

  • JSTL  Has anyone got this working successfully

    Has anyone gotten JSTL or any third party tags to work successfully if so how?  I will award points for good answers

    Basically you can not work with jstl within sap portal. However, if you are willing to do some work, here is what i did:
    At first you have to understand the problem, so here a brief snippet of the generated java source
                 try {
                              int _jspx_eval_hbj_page_2 = _jspx_th_hbj_page_2.doStartTag();
                              if (_jspx_eval_hbj_page_2 == Tag.EVAL_BODY_INCLUDE)
                                throw new JspTagException("Since tag handler class com.sapportals.htmlb.taglib.PageTag implements BodyTag, it can't return Tag.EVAL_BODY_INCLUDE");
                               if (_jspx_eval_hbj_page_2 != Tag.SKIP_BODY) {
                                 try {
                                   if (_jspx_eval_hbj_page_2 != Tag.EVAL_BODY_INCLUDE) {
                                     out = pageContext.pushBody();
                                     _jspx_th_hbj_page_2.setBodyContent((BodyContent) out);
    snip some parts
                             } finally {
                                  if (_jspx_eval_hbj_page_2 != Tag.EVAL_BODY_INCLUDE)
                                       out = pageContext.popBody();
                        if (_jspx_th_hbj_page_2.doEndTag() == Tag.SKIP_PAGE)
                             return;
                   } finally {
                     _jspx_th_hbj_page_2.getBodyContent().close();
                     _jspx_th_hbj_page_2.release();
    The generated code is bad and not foolproof:
    1. sap wrongly assumes that EVERY tag implements BodyTag. This is just not the case
    2. If, for whatever reasons, doStart() throws an exception, the finally block will call getBodyContent().close(), and throw an NullPointerException...
    Basically i had to write wrappers of my own, that implemented BodyTag and replace the used classes in the tld-file to point my wrapper classes.
    Because of the deficiencies in doStart() your wrapper must not ever return null upon calls to getBodyContent(), even if it has not been initialized.
    Of course, this wont get you anywhere near reading your resource bundles within a tag, but thats another story.

  • Anyone got NTP working with a Windows 2008 NTP server?

    Hello,
    I'm trying to sync the time on our routers and swithces with a Windows 2008R2 server, but it doesn't work.  Has anyone managed to do this:
    Config:
    ntp master
    ntp update-calendar
    ntp server 192.168.2.164
    sh ntp associations
      address         ref clock         st   when   poll   reach    delay    offset     disp
    *~127.127.1.1     .LOCL.         7     11     16      377      0.000   0.000      0.225
    ~192.168.2.164  .INIT.          16      -      1024     0       0.000    0.000    15937.
    Windows 2008R2 server
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpServer]"
    "Enabled"=dword:00000001
    restart server
    w32tm /config /manualpeerlist:uk.pool.ntp.org,0x8 /syncfromflags:MANUAL
    net stop w32time
    net start w32time
    Doesnt work
    Woudl Linux like Ubuntu be better?
    Thanks

    I got this working from a cisco 2911 router to Windows 7 computer.
    As per many articles, you are missing:-
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config]"
    "AnnounceFlags"=dword:00000005
    But the one that allows Cisco kit to Sync is:-
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config]"
    "LocalClockDispersion"=dword:00000000
    This article http://www.cisco.com/c/en/us/support/docs/ip/network-time-protocol-ntp/108076-ntp-troubleshoot.html talks about having a root-dispersion higher than 1000ms (1 second) causing Cisco IOS-NTP to unsynchronizes itself.
    This article http://htluo.blogspot.co.uk/2009/02/ntp-network-time-protocol.html#comment-form was the only one I found that added to the normal enable ntp server registry keys information, stating to change ‘HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config\LocalClockDispersion’  from 10 to 0
    There was also articles that said that the Windows NTP implementation was version 3, and therefore you had to append ‘version 3’ to the routers ‘ntp server x.x.x.x’ command. This may be perhaps true for earlier windows versions?, but was NOT required for Windows 7.

  • Has anyone had a issue with itunes and windows 8.1?

    I upgraded to Window 8.1 and now when I plug in my ipod nano gen 4 I get a message that says "ipod detected but it could not be identified". It also does not recognize my iphone 4. Microsoft says it is an itunes driver issue that is not compatible with the 8.1. Has anyone experience this?
    thanks.

    https://social.msdn.microsoft.com/Forums/ie/en-US/home?category=iedevelopment

  • Has anyone notice some glitches with iTunes Radio?

    One problem have had is  everytime I close my radio on the background it erases all the songs I added to my wish list. And another problem is that sometimes i will try to add a song to my wishlist and it will restart my iPhone completely like a hard reset.

    I've had some problems with iTunes Radio as well. If I add a song to my wishlist then close the app in the backgroud it erases it! Also, if I look at my wish list, it has songs I have added but then it has two white boxes under my songs that I cant get rid of! No matter how many times I delete them they are always there.

  • HT201335 airplay icon not appearing, mountain lion installed and apple tv working with iTunes ???

    airplay icon not appearing, mountain lion installed and apple tv 2nd G  working good with iTunes ???
    i do not understand.

    Which MBA do you have? It needs to be Mid 2011 or later for ML mirroring to work.
    http://support.apple.com/kb/HT5404?viewlocale=en_US&locale=en_US

  • Has anyone got a solution to itunes 11 not generating playlists?

    I used to be able to generate genius play lists from iTunes by clicking on the arrow to the right of the song title.   This has become hit and miss - some songs will form the basis of a list, others will not and I am told  'no genius suggestions'.  The most recent example is 2 songs from the same album bought from the store.  One works, one doesn't.   
    Does anyone have any suggestions to put this right?
    TY

    Hi DanielHankey,
    Thanks for using Apple Support Communities.  If iTunes doesn't recognize your iPhone, this article may help:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    If issues persist, a thorough removal and reinstall of iTunes would be the next thing to try:
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/HT1923
    Cheers,
    - Ari

  • Has anyone got these problems with iOS6 and Siri?

    Hi, yes, I'm another unhappy iPhone 4s user who made the mistake of upgrading to iOS6, (what a way to use my first post!!)
    However, I won't gripe about the very very poor maps (please Google, release an app!), but I have noticed these other 2 problems and wondered if anyone else had:
    1) After using Siri with my bluetooth headset to open some apps or do some work the phone automatically locks itself, which is very annoying when I can't handle my phone!  For example, my phone isn't locked, I used Siri to find out what tomorrow's weather will be like, it tells me  and then 3-5 seconds later the phone locks itself and I have to enter my unlock code.  Or, I opened my Sky Go app using voice control, which it did .............. before locking the phone a few seconds afterwards.  Arghhh!
    2) Sometimes the screen dims itself.  I have to lock the phone and unlock it and it reverts to its usual brightness.
    Also, I don't know if this has anything to do with iOS6 or just my usage, but the battery seems to be draining more.  I'll be keeping an eye on this to see if its down to me, my apps or my phone!!
    Am I the only one
    B

    I am right there with you! I have AT&T and have exchanged it etc...nothing seems to work. My iPH4 did not have these issues! Not sure what to do...besides try a new carrier.

Maybe you are looking for