HELP !  unable to read TLD

Hi
I've tried to run a jsp page that uses the following taglib attribute:
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
but it comes up with the error message :
Unable to read TLD "META-INF/c-1_0.tld" from JAR file "file:/C:/jakarta/jakarta-tomcat-5.0.19/webapps/ROOT/WEB-INF/lib/standard.jar": java.lang.IllegalStateException: zip file closed
I've unzipped the standard.jar file to make sure that the c-1_0.tld file is there and it is actually there, I've also downloaded the latest version of the taglib but both actions have not solved my problem.
The same error message comes up when i use the taglib
<%@ taglib prefix="sql" uri="http://java.sun.com/jstl/sql" %>
it says
Unable to read TLD "META-INF/sql-1_0.tld" from JAR file "file:/C:/jakarta/jakarta-tomcat-5.0.19/webapps/ROOT/WEB-INF/lib/standard.jar": java.lang.IllegalStateException: zip file closed.
This is really slowing things down as I cant get to use any of the standard taglib
please I need help
abiose

the problem has been solved after i deleted the
web.xml in the web-inf folder??
could somebody please tell me why??
could it be that there were some wrong settings in
the web.xml?Possibly. If your web.xml had any taglib definitions in it related to JSTL, then yes, it was set upt incorrectly.
Another possibility was that there was something wrong someplace else that had been fixed but the context not restarted and so the fix wasn't seen. Then the removal of the web.xml forced the context to be reloaded which showed the firx from earlier.
As a side note, you should put back a web.xml, even if it is an empty <web-app ...></web-app>.

Similar Messages

  • Unable to read TLD "META-INF/jsf_core.tld

    Hi guys,
    I have Tomcat 5.5.7 and jdk1.5.0_02 on Windows XP Pro ! I am using jsf-1_1_01. One of my page is as below:
    <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core" %>
    <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html" %>
    <f:loadBundle basename="com.stufftolet.view.bundle.selectcountry" var="msg"/>
    <f:view locale="#{catalogBean.currentLocale}">
    and I got the following error:
    org.apache.jasper.JasperException: Unable to read TLD "META-INF/jsf_core.tld" from JAR file "file:/C:/Tomcat5/webapps/stufftolet/WEB-INF/lib/jsf-impl.jar": org.apache.jasper.JasperException: Failed to load or instantiate TagLibraryValidator class: com.sun.faces.taglib.jsf_core.CoreValidator
         org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:50)
         org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:407)
         org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:179)
         org.apache.jasper.compiler.TagLibraryInfoImpl.<init>(TagLibraryInfoImpl.java:181)
         org.apache.jasper.compiler.Parser.parseTaglibDirective(Parser.java:418)
         org.apache.jasper.compiler.Parser.parseDirective(Parser.java:483)
         org.apache.jasper.compiler.Parser.parseElements(Parser.java:1539)
         org.apache.jasper.compiler.Parser.parse(Parser.java:126)
         org.apache.jasper.compiler.ParserController.doParse(ParserController.java:211)
         org.apache.jasper.compiler.ParserController.parse(ParserController.java:100)
         org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:146)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:286)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:267)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:255)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:556)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:296)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:245)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)
         com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:130)
         com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
         com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
         com.stufftolet.view.util.SecurityFilter.doFilter(SecurityFilter.java:70)
         de.mindmatters.faces.spring.RequestHandledFilter.doFilter(RequestHandledFilter.java:117)
    Appreciate if someone could give some help here, Thanks !
    regards,
    kmthien

    Hi
    I am also facing the same problem. But I am using tomcat 5.0.xx and i havnt included extra jsp-api in the lib. But getting the error
    JSP Parsing Error:Failed to load or instantiate TagLibraryValidator class: com.sun.faces.taglib.jsf_core.CoreValidator
    tried all the options...but yet not got where is the problem.
    Please help.

  • SPRING App through JBOSS - error:Unable to read TLD

    Hello,
    First post for me, not 100% certain I am in the right forum, but here I go.
    I am using Eclipse 3.1, JRE j2sdk1.4.2, spring-framework-1.2, and JBOSS 3.2.7 to follow this tutorial
    http://www.springframework.org/docs/MVC-step-by-step/Spring-MVC-step-by-step-Part-2.html
    on building a simple Spring MVC application.
    I am using jstl.jar,standard.jar (among others) from the spring-framework-1.2 release. I noticed JBOSS starting to go nuts after adding these 2 jars specifically.
    My project .war is deployed to JBOSS containg a WEB-INF/lib storing the .jars (standard.jar, jstl.jar ...) I do not have these .jars configured in JBOSS' classpath.
    When I run my app and hit my my servlet followed by jsp page, JBOSS reports a runtime exception.
    jsp...
    <%@ include file="/WEB-INF/jsp/include.jsp"%>
    <html>
    <head>
    <title>Hello :: Spring Application</title>
    </head>
    <body>
    <h1>Hello - Spring Application</h1>
    <p>Greetings, it is now <c:out value="${now}" /></p>
    </body>
    </html>
    exception...
    : Servlet.service() for servlet jsp threw exception
    org.apache.jasper.JasperException: /index.jsp(1,1) Unable to read TLD "META-INF/c.tld" from JAR file "file:/C:/java/jboss-3.2.7/server/default/tmp/deploy/tmp3725spring_app.war/WEB-INF/lib/standard.jar": org.apache.jasper.JasperException: Failed to load or instantiate TagLibraryValidator class: org.apache.taglibs.standard.tlv.JstlCoreTLV
         at org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:39)
    I confirmed that this standard.jar is deployed/accessible, and the tld is present.
    any ideas?
    Thanks,
    Chris

    Hi
    I am also facing the same problem. But I am using tomcat 5.0.xx and i havnt included extra jsp-api in the lib. But getting the error
    JSP Parsing Error:Failed to load or instantiate TagLibraryValidator class: com.sun.faces.taglib.jsf_core.CoreValidator
    tried all the options...but yet not got where is the problem.
    Please help.

  • Unable to read TLD "META-INF/jsf_core.tld" from JAR file "file:

    Hallo everybody :-)<br /><br />i've installed Workflow-Server + ARES + FormManager. When i call localhost:8080/adminui i can log in and the browser loads the next site --> it fails and says:<br /><br />org.apache.jasper.JasperException: Unable to read TLD "META-INF/jsf_core.tld" from JAR file "file:/C:/Adobe/LiveCycle/jboss/server/all/tmp/deploy/tmp56414LiveCycle.ear-contents/admi nui.war/WEB-INF/lib/jsf-impl.jar": org.apache.jasper.JasperException: Failed to load or instantiate TagExtraInfo class: com.sun.faces.taglib.FacesTagExtraInfo<br />     org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:5 0)<br />     org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:409)<br />     org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:183)<br />     org.apache.jasper.compiler.TagLibraryInfoImpl.<init>(TagLibraryInfoImpl.java:181)< br />     org.apache.jasper.compiler.Parser.parseTaglibDirective(Parser.java:418)<br />     org.apache.jasper.compiler.Parser.parseDirective(Parser.java:483)<br />     org.apache.jasper.compiler.Parser.parseElements(Parser.java:1539)<br />     org.apache.jasper.compiler.Parser.parse(Parser.java:126)<br />     org.apache.jasper.compiler.ParserController.doParse(ParserController.java:220)<br />     org.apache.jasper.compiler.ParserController.parse(ParserController.java:101)<br />     org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:203)<br />     org.apache.jasper.compiler.Compiler.compile(Compiler.java:470)<br />     org.apache.jasper.compiler.Compiler.compile(Compiler.java:451)<br />     org.apache.jasper.compiler.Compiler.compile(Compiler.java:439)<br />     org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:511)<br />     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:295)<br />     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)<br />     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)<br />     javax.servlet.http.HttpServlet.service(HttpServlet.java:810)<br />     com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)<b r />     com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:130)<br />     com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)<b r />     com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)<br />     com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)<br />     javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)<br />     com.adobe.framework.SecurityFilter.doFilter(SecurityFilter.java:177)<br />     com.adobe.idp.um.auth.filter.PortalSSOFilter.doFilter(PortalSSOFilter.java:106)<br />     com.adobe.framework.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter .java:161)<br /><br />Any idea what' wrong?<br /><br />Thanks,<br />Valerio

    Hi Howard,
    thank you for your post.
    I actually new about the problems with the jvm version. Still i wanted to ask, cause there are different reports on this `java problems` and even though the 1.4.2_08 seems to be the best version (by the way this version is not to be downloaded any longer *sig*), there are people getting all installed with other versions. I couldn't find any regularity in the misbehavior of the servers while installing.
    I finally achieved and got everything working ... but very slow. Loading the adminui or BAM features takes very long time (over one minute). Have you already had this delay. Any hint?
    Thanks again,
    Valerio

  • Unable to read TLD "META-INF/c-1_0.tld"

    Hi guys,
    I'm using Tomcat 5.5.7 and jdk1.5.0_02 installed under Winds XP PRO SP2. I'm also using Standard-1.1: JSTL 1.1 (2.0). But when trying to view the 1st page, &#65321;&#12288;&#65351;&#65359;&#65364;&#12288;&#65364;&#65352;&#65349;&#12288;&#65350;&#65359;&#65356;&#65356;&#65359;&#65367;&#65353;&#65358;&#65351;&#12288;&#65349;&#65362;&#65362;&#65359;&#65362;&#12288;&#65357;&#65363;&#65351;&#65306;
    org.apache.jasper.JasperException: Unable to read TLD "META-INF/c-1_0.tld" from JAR file "file:/C:/Tomcat5/webapps/stufftolet/WEB-INF/lib/standard.jar": org.apache.jasper.JasperException: Failed to load or instantiate TagLibraryValidator class: org.apache.taglibs.standard.tlv.JstlCoreTLV
         org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:50)
         org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:407)
         org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:179)
         org.apache.jasper.compiler.TagLibraryInfoImpl.<init>(TagLibraryInfoImpl.java:181)
         org.apache.jasper.compiler.Parser.parseTaglibDirective(Parser.java:418)
         org.apache.jasper.compiler.Parser.parseDirective(Parser.java:483)
         org.apache.jasper.compiler.Parser.parseElements(Parser.java:1539)
         org.apache.jasper.compiler.Parser.parse(Parser.java:126)
         org.apache.jasper.compiler.ParserController.doParse(ParserController.java:211)
         org.apache.jasper.compiler.ParserController.parse(ParserController.java:100)
         org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:146)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:286)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:267)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:255)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:556)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:296)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:245)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    &#65360;&#65356;&#65363;&#12288;&#65352;&#65349;&#65356;&#65360;&#65294;&#65294;&#65294;&#65294;&#65321;&#12288;&#65362;&#65349;&#65345;&#65356;&#65356;&#65369;&#12288;&#65358;&#65349;&#65349;&#65348;&#12288;&#65352;&#65349;&#65356;&#65360;&#12288;&#65348;&#65349;&#65363;&#65360;&#65349;&#65362;&#65345;&#65364;&#65349;&#65356;&#65369;&#12288;&#65281;&#12288;&#65332;&#65352;&#65345;&#65358;&#65355;s !
    regards,
    kmthien

    Hi evnafets,
    My index.jsp looks like below:
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <html>
    <head>
              <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
              <meta http-equiv="Pragma" content="no-cache"/>
              <meta http-equiv="Expires" content="-1"/>     
              <meta name="Security" content="public"/>
              <meta name="Robots" content="index,follow"/>
              <meta name="Description" content="Stufftolet Index Page."/>                     
    </head>
    <body>
    <jsp:forward page="selectcountry.jsf"/>
    </body>
    </html>
    and I still got the following error:
    org.apache.jasper.JasperException: Unable to read TLD "META-INF/c.tld" from JAR file "file:/C:/Tomcat5/webapps/stufftolet/WEB-INF/lib/standard.jar": org.apache.jasper.JasperException: Failed to load or instantiate TagLibraryValidator class: org.apache.taglibs.standard.tlv.JstlCoreTLV
         org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:50)
         org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:407)
         org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:179)
         org.apache.jasper.compiler.TagLibraryInfoImpl.<init>(TagLibraryInfoImpl.java:181)
         org.apache.jasper.compiler.Parser.parseTaglibDirective(Parser.java:418)
         org.apache.jasper.compiler.Parser.parseDirective(Parser.java:483)
         org.apache.jasper.compiler.Parser.parseElements(Parser.java:1539)
         org.apache.jasper.compiler.Parser.parse(Parser.java:126)
         org.apache.jasper.compiler.ParserController.doParse(ParserController.java:211)
         org.apache.jasper.compiler.ParserController.parse(ParserController.java:100)
         org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:146)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:286)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:267)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:255)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:556)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:296)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:245)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    Appreciate if u could give somemore assistance here, Thanks !

  • HELP - Unable to read SCANDIR???

    All,
    Facts - Zenworks 3.2 SP1, Netware Client 4.9 SP2, Windows XP SP2
    I have been experiencing problems with certain workstations not populating
    the inventory database(s). I have received the following error and warning
    for these workstations in the scanlogs...
    "Message: 027: Unable to read the sequence number from the Workstation
    Object"
    "Message: 028: Unable to read the SCANDIR directory location from the
    Inventory Policy"
    The top organization has RCF rights as well as ROOT to the
    SYS:ZENWORKS\SCANDIR referenced in the inventory service objects. I checked
    all inventory service objects and they all point to the correct path. Also
    please keep in mind that I just reinstalled the ZENworks inventory databases
    on a different server volume.
    Can somebody please fill me in on the correct DS and file system trustee
    rights for ZENworks wsimport and inventory services to function properly?
    The reason I ask is because in order for me to get the workstation import
    component to work properly I needed to give PUBLIC [rwcemf] rights to the
    container holding the imported workstations. The installation program
    didn't give the necessary rights out of the box which is strange to me.
    Thanks in advance!
    K. Darren Faller
    Director of System Operations
    Berkeley Educational Services

    I'm sorry, I am using ZENworks 3.2 SP3
    "Darren" <[email protected]> wrote in message
    news:87z8d.714$[email protected]..
    > All,
    >
    > Facts - Zenworks 3.2 SP1, Netware Client 4.9 SP2, Windows XP SP2
    >
    > I have been experiencing problems with certain workstations not populating
    > the inventory database(s). I have received the following error and
    > warning for these workstations in the scanlogs...
    >
    > "Message: 027: Unable to read the sequence number from the Workstation
    > Object"
    >
    > "Message: 028: Unable to read the SCANDIR directory location from the
    > Inventory Policy"
    >
    > The top organization has RCF rights as well as ROOT to the
    > SYS:ZENWORKS\SCANDIR referenced in the inventory service objects. I
    > checked all inventory service objects and they all point to the correct
    > path. Also please keep in mind that I just reinstalled the ZENworks
    > inventory databases on a different server volume.
    >
    > Can somebody please fill me in on the correct DS and file system trustee
    > rights for ZENworks wsimport and inventory services to function properly?
    > The reason I ask is because in order for me to get the workstation import
    > component to work properly I needed to give PUBLIC [rwcemf] rights to the
    > container holding the imported workstations. The installation program
    > didn't give the necessary rights out of the box which is strange to me.
    >
    > Thanks in advance!
    >
    > K. Darren Faller
    > Director of System Operations
    > Berkeley Educational Services
    >

  • Unable to read information of application in app store. Still can download but unable to read the application infor before downloading

    Hi,
    Please help, unable to read information of application in app store. Still can download but unable to read the application infor before downloading.
    I'm using iphone4, ios 6

    Yes it sounds like your application could be corrupt.
    First I would make sure you don't have a program like backup software or virus protection trying to read the files when you try to start the application. If not,
    Do you have any backups or data exports? If so, I would try to restore them for the application
    If you do what EsbHelper suggests, you will have to recreate the database. I think he is missing a few steps.
    If you are going to try to recreate the application, you need to copy your outline rules files calc scripts and report scritps (.otl, CSC, REP and rul files) to s saved directory.
    If you delete the directory using the file system, you orphan things in the security file. It's better to try to do it from EAS.
    Once it has been deleted, and recreated from EAS, then copy back in the objects. You will have everything but data and security. those will have to be recreated.
    As aI said first, the best way to do this is from some sort of backup. othersiwe it can get a bit messy

  • Bridge CC. on opening message says unable to read cache, purge cache. This does not help.

    On opening message says unable to read cache, purge cache. Purging the cache does not help and Bridge continues to hang. Was working fine before.

    Mac?  REad this http://forums.adobe.com/thread/1237168

  • Elements 7 on windows 7, have downloaded a new version on raw for my new camera eos50d still unable to read the raw files help

    Hi
    Hope someone can help me with this one, have a new computer with windows 7 as the operating system, have installed elements 7 and have now purchased the 50d, as i shoot in raw have tried to open the file but elements is unable to read the raw file, have looked on various threads and have downloaded the new version of raw, this version is saved in my download file directory, have copied across these files to the elements folder but i still cannot read my raw file for the 50d, is there something i have missed.
    collisa

    please have a look at the folllowing link about the isntallation of the camera raw plugin.
    http://kb2.adobe.com/cps/407/kb407344.html
    be sure not to have the older version of camera raw plugin in the same folder as that of new one. dont even rename it. Remove it and store it in some other location in case you need to revert back the changes. The camera raw plugin is called : Camera Raw
    thanks

  • Dialog box says-"Bridge encountered a problem and is unable to read the cache. ... purge central cache" For one, I can't find the central cache and two, I've purged the cache in bridge. Shouldn't that help.

    Our Bridge has been acting very strange. It keeps giving a dialog box of "Bridge encountered a problem and is unable to read the cache. ... purge central cache" For one, I can't find the central cache and two, I've purged the cache in bridge. Shouldn't that help? There's just all kinds of weird stuff going on. I suppose it does have something to do with the central cache, so maybe someone can tell me where to find it.
    When I use the burn/dodge tool sometimes it drags and staggers and takes forever to complete whatever I'm burning/dodging. When I try to delete an image from the dock, it won't disappear but it won't display either.
    Any help would be appreciated.

    The Central Cache is the Bridge Cache.
    It's referred as the Central Cache to differentiate it from the individual folder's cache or even the individual image cache.

  • When I read a pdf document using Safari I'm unable to read more than one page of a file. A padlock icon is locked on the tab. Please help.

    When I read a pdf document using Safari on my IPad  I'm unable to read more than one page of a file. A padlock icon is locked on the tab. Please help.

    Hi snoreaustralia,
    It sounds like you just need to associate the PDF filename extension with Acrobat, rather than Preview. Please see this document from the Microsoft Help for instructions on choosing the default program for opening a particular file type (in your case, PDF): Change which programs Windows uses by default - Windows Help
    Best,
    Sara

  • Has had 2 iTunes gift cards and the scratch off strip on the back leaves us unable to read the numbers and we can not retrive anysongs without the correct numbers and letters. What can we do? Please help...

    Has had 2 iTunes gift cards and the scratch off strip on the back leaves us unable to read the numbers and we can not retrive any songs without the correct numbers and letters. What can we do? Please help...

    iTunes Store: Invalid, inactive, or illegible codes

  • Trying for 3 days to get Bridge to work. Told me to unable ti read cache -- tired everything including deleting and reloading -- still getting same message. Pl;ease help I am on a deadline. Bob

    Bridge unable to read cache
    Trying for 3 days to get Bridge to work. Told me to unable ti read cache -- tired everything including deleting and reloading -- still getting same message. Restarted computer several times as well. Please help I am on a deadline. Bob

    THANKS FOR REPLY,
    No, I am on a Mac  OS X 20.9.4
    BOB

  • "Unable to read or process latte file" message when attempting to photo merge out of photoshop cc, bridge, essentials organizer or editor.  Search of "latte file" brings no explanation on the web.  What's going on?  Help?

    "Unable to read or process latte file" message when attempting to photo merge out of photoshop cc, bridge, essentials organizer or editor.  Search of "latte file" brings no explanation on the web.  What's going on?  Help?

    From the web:
    Templating | Nette Framework
    "One of the best template engines is part of Nette Framework and it is called Latte."
    Were you working on a web document or something?
    I have no clue myself.

  • Itunes 11.1.4.62 unable to read content and need to restore iphone. Please help !

    Yesterday I had update itunes to 11.1.4.62, I try to sync my iphone 5(ios 7), it unable to  read the content from my device and ask me to restore. I don't want to restore while I not yet back up everything. Any helps ? Thanks.

    Try a more recent version of my advice. The "for older video cards version" may work when the default version doesn't.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

Maybe you are looking for

  • Transferring apps from iphone 3GS to itunes on my HP with Windows Vista

    I was contemplating upgrading my iphone to the ios4 but i cannot get my applications transferred to my itunes....i have tried syncing it...Right click on the iphone and selecting transfer purchased....it just wont transfer the apps....it transferred

  • ITunes & iPod song synchronisation problem.

    Dear Experts, I want iTunes to scan through it's song database and remove from its Library the songs that no longer exist on my iPod. The reason for this is that once I've copied tracks to the iPod, I delete them from the Mac's hard disk. So now, my

  • PSE 11 - all caps

    I use Adobe Lightroom but am new to PSE.  When I use the text mode all of my letters are in caps. Caps lock is not on. I did reset preferences on next launch and that didn't work.  Any help out there?  Thanks.

  • Spaces and multiple screens

    Hi, I have a second screen hooked up to my iMac. I would like to set up spaces so that Mail and iCal are always displayed on the second screen as I move through my various spaces. Is that possible? In other words, only my main screen changes, second

  • OBIEE 11g - Aggregation With filter

    Hi all , I have a reg where the condition to be applied in ONE COLUMN of a report is as follows select count(*) from (SELECT SUM(quantity),SUM(quantity_received) qty_rec ,SUM(quantity)-SUM(quantity_received) qty ,po_header_id       FROM F_ERP_PO