Struts errror message

javax.servlet.jsp.JspException: Cannot find message resources under key org.apache.struts.action.MESSAGE
I already have in web.xml
application = ApplicationResources
I already checked that all the entries exists in the ApplicationResources.properties
as a parameter for action servlet, but still getting this message.
Oliver

I posit that it is not irrelevant, but rather crucial. The OP is not using the html <form> tag, but rather the Struts <html:form> tag which converts the action= attribute to the appropriate query-string equivalent. I give more detail here:
web.xml maps all *.do urls through the Struts servlet
struts-config defines an <action> with name='/foo'
author's jsp file uses Struts custom <html:form> tag with attribute action='foo'
this action= value MUST MATCH a struts-config action name value (sans *.do ending)
this design relieves the jsp author of having to know the web.xml servlet-mapping details
dlgrasse

Similar Messages

  • Using EL variable in struts bean:message tag(not struts EL tag)

    Is there any work around to use an EL variable inside struts bean:message tag as key:
    I have like this:
    <bean:message key="${bean.keyName}"/>
    which is throwing error , I know this can be resolved by using struts-el tags but i cannot use them for specific reasons.
    I dont want to use bean:define tag to define my 'bean' and then use like this:
    <bean:message key="<%=bean.getKeyName%>"/> (this actually works, but i want to use EL variable)
    Is there any work around to use EL variable and make the message display on the jsp.
    i tried multiple ways like scriplets and jsp:useBean but nothing worked, Please let me know..
    Thanks in advance

    Im pretty sure that EL does not work in the normal struts tag unless its struts-el tag.Have you tried it?
    As I said, in a properly configured JSP2.0 container you can use EL expressions anywhere you could traditionally use a standard runtime expression <%= expr %>.
    What server are you using? What JSP version?
    The Struts-el tags were written so that you could use EL with struts in JSP1.2 containers.
    The c_rt tags were written so you could use runtime expressions with JSTL tags in JSP1.2 containers. Their use was discouraged even then. Now I consider their use absolutely unnecessary.
    Please read this thread: http://forum.java.sun.com/thread.jspa?threadID=629437&tstart=0
    Cheers,
    evnafets

  • Replacing JBO error messages with Struts error messages

    I would like to display Struts error messages on an HTML form instead of the JBO error messages when a user submits a form with data entry error. Has anybody done that? Do I need to extend the DataForwardAction class and write JAVA code to do it or is there a more elegant way?

    Could someone please answer this? As I understand, Steve Meunch says: "our prescriptive architecture's best practice is to implement all validation in your entities" but this is talking more about rules, I think, than about error messages that are customized to specific pages and fields.
    Thanks,
    Jeff

  • Cannot find message resources under key org.apache.struts.action.MESSAGE ?

    Hi All,
    I am getting the following error.. while running a simple application in struts.
    Cannot find message resources under key org.apache.struts.action.MESSAGE ?
    As I have searched in google but could not find the concreate example so please help and give me a proper answer..
    my struts-config.xml file is as .....
    <code>
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!DOCTYPE struts-config PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 1.0//EN"
    "http://jakarta.apache.org/struts/dtds/struts-config_1_0.dtd">
    <struts-config>
    <!-- ========== Form Bean Definitions ============ -->
    <form-beans>
         <form-bean name="login" type="test.struts.LoginForm" />
    </form-beans>
    <!-- ========== Global Forward Definitions ========= -->
    <global-forwards>
    </global-forwards>
    <!-- ========== Action Mapping Definitions ======== -->
    <action-mappings>
    <action
         path="/login"
         type="test.struts.LoginAction"
         name="login"
         input="/jsp/LoginView.jsp"
         validate="true">
         <forward name="valid" path="/jsp/MainMenu.jsp" />
         <forward name="invalid" path="/jsp/LoginView.jsp" />
         </action>
    </action-mappings>
    <message-resources null="false" parameter="test.struts.MessageResources"/>
    </struts-config>
    </code>
    And my LoginView.jsp file is as:
    <code>
    <!-- LoginView.jsp -->
    <%@ taglib uri="/struts/WEB-INF/struts-html.tld" prefix="html" %>
    <%@ taglib uri="/struts/WEB-INF/struts-bean.tld" prefix="bean" %>
    <%@ taglib uri="/struts/WEB-INF/struts-logic.tld" prefix="struts" %>
    <HTML>
    <HEAD><TITLE><bean:message key="title.login" /></TITLE></HEAD>
    <BODY>
    <bean:message key="heading.login" />
    <html:errors />
    <html:form action="/login">
         <p>
         <bean:message key="label.userId" />:
         <html:text property="userId" size="10" />
         <br>
         <bean:message key="label.passWord" />:
         <html:password property="passWord" size="10" />
         <br><br>
         <html:submit>
              <bean:message key="button.submit" />
         </html:submit>
    </html:form>
    </BODY>
    </HTML>
    </code>
    MessageResources.properties is as :
    <code>
    button.submit=Send for Verification
    error.no.userId=<li>User ID is a required field</li>
    error.no.passWord=<li>Password is a required field</li>
    error.invalid.login=<li>The User ID and/or Password are invalid. Please try again.</li>
    errors.footer=</ul><hr>
    errors.header=<h3><font color="red">Validation Error</font></h3>You must correct the following error(s) before proceeding:<ul>
    label.userId=User ID
    label.passWord=Password
    heading.login=<H2>Enter your user information</H2>
    title.login=Login Screen
    title.mainmenu=Welcome
    heading.mainmenu=<H1>Welcome!</H1>
    label.userType=<H2>You are authorized to use this system as a</H2>
    </code>
    Please reply soon.
    Thanks in advance
    Amitindia

    Hi All,
    I am getting the following error.. while running a simple application in struts.
    Cannot find message resources under key org.apache.struts.action.MESSAGE ?
    As I have searched in google but could not find the concreate example so please help and give me a proper answer.. my struts-config.xml file is as .....
    <?xml version="1.0" encoding="ISO-8859-1" ?> <!DOCTYPE struts- 
      config PUBLIC "-//Apache Software Foundation//DTD Struts
    Configuration 1.0//EN" "http://jakarta.apache.org/struts/dtds/struts-
    config_1_0.dtd"> <struts-config> <!-- ========== Form Bean
    Definitions ============ --> <form-beans> <form-bean name="login"
    type="test.struts.LoginForm" /> </form-beans> <!-- ========== Global Forward Definitions ========= --> <global-forwards> </global-
    forwards> <!-- ========== Action Mapping Definitions ======== --> <action-mappings> <action path="/login" type="test.struts.LoginAction" name="login" input="/jsp/LoginView.jsp" validate="true"> <forward name="valid" path="/jsp/MainMenu.jsp" /> <forward name="invalid" path="/jsp/LoginView.jsp" /> </action> </action-mappings> <message-resources null="false" parameter="test.struts.MessageResources"/> </struts-config>
    And my LoginView.jsp file is as:
    <!-- LoginView.jsp --> <%@ taglib uri="/struts/WEB-INF/struts-html.tld" prefix="html" %> <%@ taglib uri="/struts/WEB-INF/struts-bean.tld" prefix="bean" %> <%@ taglib uri="/struts/WEB-INF/struts-logic.tld" prefix="struts" %> <HTML> <HEAD><TITLE><bean:message key="title.login" /></TITLE></HEAD> <BODY> <bean:message key="heading.login" /> <html:errors /> <html:form action="/login">
    <bean:message key="label.userId" />: <html:text property="userId" size="10" /> <br> <bean:message key="label.passWord" />: <html:password property="passWord" size="10" /> <br><br> <html:submit> <bean:message key="button.submit" /> </html:submit> </html:form> </BODY> </HTML>
    MessageResources.properties is as :
    button.submit=Send for Verification error.no.userId=<li>User ID is a required field</li> error.no.passWord=<li>Password is a required field</li> error.invalid.login=<li>The User ID and/or Password are invalid. Please try again.</li> errors.footer=</ul><hr> errors.header=<h3><font color="red">Validation Error</font></h3>You must correct the following error(s) before proceeding:<ul> label.userId=User ID label.passWord=Password heading.login=<H2>Enter your user information</H2> title.login=Login Screen title.mainmenu=Welcome heading.mainmenu=<H1>Welcome!</H1> label.userType=<H2>You are authorized to use this system as a</H2>
    Please reply soon. Thanks in advance Amitindia                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • When trying to set up an email account I keep receiving ssl errror message. Any advice please.

    When trying to set up an email account I keep receiving ssl errror message. Any advice please.

    Error is: Cannot connect using SSL. Do you want to try setting up the account without SSL?
    Answer: Yes
    Then "Verifying" appears at top of screen but nothing happens.
    Tiscali/Talk Talk is the provider.

  • Struts - Firfefox messages: No input attribute for mapping path /editNxtMod

    Hi!
    I'd like to create an admin application which is based upon a simple database table. The list shows already, but the detail of selected record doesn't. When I click to a record, the Firefox writes "No input attribute for mapping path /editNxtModuls". What does it mean? Maybe bad configuration files?
    Please help me!
    Thank Yoy!
    Here my code:
    <struts-config>
         <data-sources />
         <form-beans>
              <form-bean name="NxtModulsForm" type="forms.NxtModulsForm" />
         </form-beans>
         <global-exceptions />
         <global-forwards>
              <forward name="error" path="/error.jsp" />
         </global-forwards>
         <action-mappings>
              <action input="/index.jsp" path="/listNxtModuls"
                   type="actions.ListNxtModulsAction">
                   <forward name="list" path="/NxtModuls/list.jsp" />
              </action>
              <action name="NxtModulsForm"
                   path="/editNxtModuls" scope="request"
                   type="actions.EditNxtModulsAction" validate="true">
                   <forward name="edit" path="/NxtModuls/edit.jsp" />
              </action>
              <action path="/saveNxtModuls"
                   type="actions.SaveNxtModulsAction" />
              <action input="/NxtModuls/edit.jsp" name="NxtModulsForm"
                   path="/processNxtModuls">
                   <forward name="save" path="/saveNxtModuls.do" />
                   <forward name="cancel" path="/cancelNxtModuls.do" />
              </action>
              <action path="/cancelNxtModuls"
                   type="actions.CancelNxtModulsAction" />
         </action-mappings>
         <controller />
         <message-resources parameter="resources.application" />
    </struts-config>
    *****************list.jsp*************
    <td>                         <a href="editNxtModuls.do?modul_id=<bean:write name="nxtmoduls" property="modul_id"/>">
    <bean:write name="nxtmoduls" property="modul_id"/>
    <a/>
    </td>
    *****************edit.jsp*************
    <html>
         <h2>Edit</h2>
         <html:errors/>
         <body>
              <html:form action="processNxtModuls.do">
                   <table border="1">
                        <tr>
                             <td>Modul name: </td>
                             <td><html:text property="modul_name" size="20" maxlength="20" /></td>
                        </tr>
                        <tr>
                             <td>Synonym name: </td>
                             <td><html:text property="synonym_name" size="20" maxlength="20" /></td>
                        </tr>
                   </table>
                   <html:submit value="Save" onclick="go('saveNxtModuls')"/>
                   <html:submit value="Cancel" onclick="go('cancelNxtModuls')"/>
              </html:form>
         </body>
    </html>
    *********************action******************
    public class EditNxtModulsAction extends CommonAction {
         public EditNxtModulsAction() {
         @Override
         public ActionForward commonExecute(ActionMapping mapping, ActionForm form,
                   HttpServletRequest request, HttpServletResponse response) throws Exception {
              NxtModulsForm myForm = (NxtModulsForm)form;
              try {
                   if (request.getParameter("modul_id") == null) {
                        throw new OwnException("The modul_id parameter was not returned!");
                   Long ModulId;
                   try {
                        ModulId = new Long(request.getParameter("modul_id"));
                   catch(Exception e) {
                        throw new OwnException("The modul_id parameter is not a number!");
                   NxtModulsBean OneRecord = new NxtModulsBean();
                   OneRecord = myManager.getRecord(ModulId);
                   myForm.setModul_name(OneRecord.getModul_name());
                   myForm.setSynonym_name(OneRecord.getSynonym_name());
              catch(OwnException e) {
                   System.out.println(e);
                   myErrors.add("label",new ActionError("error.get_record_failed"));
                   saveErrors(request, myErrors);
                   mapping.findForward("error");
              return mapping.findForward("edit");
    }

    The config file looks ok to me.
    The Action looks like you aren't taking full advantage of Struts.
    You shouldn't have to call request.getParameter() - you should define an action form which picks up the parameters, and does the validations/conversions for you.
    Maybe try this:
    <html:link action="/editNxtModuls" paramId="modul_id" paramName="nxtmoduls" paramProperty="modul_id" /><bean:write name="nxtmoduls" property="modul_id"/>
    </html:link>Edit: Reads error message
    No input attribute for mapping path /editNxtModuls
    This means that the form validation for this action failed, and it is attempting to return control to the sending page so that you can fix the error.
    Check the forms.NxtModulsForm validate() method to see if validation would pass/fail.
    The fix would be to put an "input" attribute into the action
    <action name="NxtModulsForm"
    path="/editNxtModuls"
    scope="request"
    type="actions.EditNxtModulsAction"
    validate="true"
    input = "list.jsp">
    <forward name="edit" path="/NxtModuls/edit.jsp" />
    </action>
    Cheers,
    evnafets

  • Struts question - message-resources

    Hi,
    I'm trying to do someting which should be pretty straight forward, but can't figure it out. In my application.properties file I have a setting. (DEBUG = true). I can spit this value out in my jsp easy enough using
    <bean:message key="DEBUG"/>
    But what I want to do is be able to decide in the jsp (using some logic) if the flag is set to true, then show some hyperlinks (for debugging purposes).
    What I kinda want to do is this (i know this doesnt work)....
    <logic:equal name="message?" property="DEBUG" value="true">
    <p>debug mode</p>
         .. print some stuff
    </logic:equal>
    Obviously I'm not getting a handle to a bean here & thats why it doesnt work. But is there a simple way to do this. I dont want to code this property into into a bean - there must be some way of doing it.
    I was looking around on the web and found a site where somebody mentioned that a "messages" bean is created and put in the session. If this is true then I could possibly get the above syntax to work, but I dont know how to get the name of the bean - (message doesnt work)
    Any help would be greatly appeciated
    Paul

    I don't think the logic tags are tied into struts like the bean and html tags. The only way I know of is to get the message resources the hard way...
    <%
    MessageResources mr = (MessageResources)application.getAttribute(Globals.MESSAGES_KEY);
    Locale locale = (Locale)session.getAttribute(Globals.LOCALE_KEY);
    pageContext.setAttribute("DEBUG", mr.getMessage(locale, "DEBUG"));
    %>
    <logic:equals name="DEBUG" value="true">
    That should work, I think.

  • Struts bean:message encoding help

    Hello, i am using Struts framework and have problems with resource files.
    I have two files for english and lithuanian.
    jsp file:
    <%@ page contentType="text/html; charset=Cp1257" pageEncoding="Cp1257"%>
    Developed by: <bean:message key="developer.name"/>
    So its echo bad string.
    Any ideas?

    I have had same problem but I have resolve it by both changing the encoding property of IDE(mine is NetBeans 3.6) to UTF-8 and
    put the line
    <%@page pageEncoding="UTF-8"  contentType="text/html; charset=UTF-8" %>on the top of jsp pages.
    But now I having some problems with formbean I hope I resolve it.
    You can follow it from here
    http://forum.java.sun.com/thread.jspa?threadID=698855

  • TS1539 I get this errror message with a batch of 21 songs I bought as MP3's on Amazon, installed into Amazon Cloud, and uploaded to itunes. After that, they will NOT sync to my ipod Classic 120g.  This has no happended in previous uploads using the same p

    Clearly I thought I was typing my Q in here, but it loaded into the headline.
    The issue is my inability to sync songs (purchased from Amazon, and downloaded with Amazon Cloud Player) to my ipod 120G Classic.
    21 songs (most recent, as I buy from time to time, but have never had this problem) will not sync to ipod, but will show up in Music files/library.
    The error message is -50, and I did the step-by-step procedure to update the appleipod.bat file (?) with no success.
    This problem never occured before.
    I have restored the ipod to original settings, deleted and reinstalled the songs many times and now have hours and hours into trying to simply get some new songs onto my ipod...
    HELP!!
    thanks
    C
    [email protected]

    See this older thread for a few possible solutions.
    https://discussions.apple.com/thread/3924425?tstart=30
    B-rock

  • Office Professional Plus 2013 - Click to run fails to start - errror message "Couldn't install"

    I have just purchased an new PC with 8.1, and have also purchased Office 2013 via the HUP. Now I am trying to start the download.  After clicking on the link in the email, a "Click to Run" file is downloaded. When I open the file, it fails
    to start the Office 2013 download. I get the message "Couldn't install"
    However after trying several options including compatability and administrator options,  I still get the message "Couldn't install".
    I have checked for compatibility and all checks OK
    I am looking forward to an ideas :)
    Thanks in advance :)
    Richard

    Hi Richard,
    Thanks for your question. I believe that "Couldn't install" is not the complete error message, it would be great that you can copy and paste the entire message here. It's necessary for the investigation.
    Please first check if you have any pre-installed version  (Preview edition) of Office on your PC. If yes, please try to use
    Microsoft Fix It tool to remove any traces of Office from your computer, then try the installation again:
    http://support.microsoft.com/kb/2739501
    You might also need to follow the manually steps mentioned on the same page to delete the related reg keys/folder structures, and then try again.
    Hope this helps.
    Thanks,
    Ethan Hua CHN
    TechNet Community Support

  • HT4557 I have music on my second Iphone, but when I hook myphone to my computer the library is empty even though there is music on the phone.  When I try to add music to the phone I et an errror message that says it can not be moved because the phone can

    I can not manage music on an additional device.  Thephone has music from my library on it.  But when I connect the phone to my computer it shows there is nothing on the phone.  When I gry to add a song, I get an error message that says can not be copied to IPhone Helen(name of the phone) because it can not be found, even though it shows on the coputer

    See this excellent user tip from another forum member turingtest2 outlining the different methods and software available to help you copy content from your iPod back to your new Mac and into iTunes.
    Recovering your iTunes library from your iPod or iOS device
    Then proceed to do the Erase and Sync or restore the device.
    B-rock

  • How to display errror message in a form based on a procedure

    I created a single-level form based on a procedure. In this form, I would like to generate an error message inside of a custom button, so I used the following inside of that button:
    p_session.set_value (p_block_name => 'DEFAULT',
    p_attribute_name => '_STATUS',
    p_value => 'Please choose a valid chair from the popup icon.');
    Unfortunately, it returned a WWV-0000 error code without any error messages. I use that code in another single-level form based on a table/view, and it works fine, but I need a single-level form based on a procedure. Therefore, I want to know if that code snippet can be used in a form based on a procedure or not? Do we have any other ways to display error messages in pl/sql besides p_session.set_value(...);
    Thanks in advance.

    Somebody please response.

  • Errror message: file already exists - overwrite or save as?

    When I attempt to open the .cp file that I had previously
    worked on today I now get the following series of messages:
    1. C:\Documents and Settings/vsutherl/My Documents\My
    Captivate Projects\game\game2.cp already exists.
    Do you want to overwrite the file or save as a new file?
    When I select "Overwrite" or a File Save As, I get the
    following message in response:
    Adobe Captivate could not open "game2.cp" because it is
    either not a supported file type or because the file has been
    damaged (for example, it was sent as an email attachment and wasn't
    correctly decoded).
    This began happening after I attempted to click the game2.exe
    file to review the project in its final (stand alone) form but
    clicked the .cp file in error, which was already open.
    Now all four of the projects (which were clones of each other
    with simple text changes for each project) receive the same error
    message. I can no longer open any of the source (.cp) files to make
    additional changes. This represents *weeks* of work and I cannot
    start from scratch to rebuild all four projects - again. I've
    already had numerous problems with these projects (per prior posts
    here).
    Other projects (totally separate and apart from these 4) open
    properly. However when game2.cpgot corrupted it caused all of the
    other gameX.cp files to also receive the same error message;
    resulting in not just one file being corrupted but all 4 even
    though the problem that was originally encountered was when
    attempting to (re-)open game3.cp (while already open).
    How can this file corruption be overcome? I am using Windows
    2000 and Captivate 3.
    Help and thanks!
    Vince

    Another possibility, I think, is using the wrong version of
    Captivate to
    open the course. I see this error, or something similar, if I
    attempt to
    open a CP2 file in CP1. Do you have various versions of CP on
    your
    computer? Are you sure you're using the proper version to
    open a given file?
    Erik
    awelendam2 wrote:
    > Adobe Captivate could not open "game2.cp" because it is
    either not a supported
    > file type or because the file has been damaged (for
    example, it was sent as an
    > email attachment and wasn't correctly decoded).
    Erik Lord
    http://www.capemedia.net
    Adobe Community Expert - Authorware
    http://www.adobe.com/communities/experts/
    http://www.awaretips.net -
    samples, tips, products, faqs, and links!
    *Search the A'ware newsgroup archives*
    http://groups.google.com/group/macromedia.authorware
    *The Blankenship Caveat: Note that direct linking to http
    content
    through any Authorware icon will likely fail if a proxy
    server is present!*

  • Receiver File CC errror message

    HI Guys,
    I am working on IDOC to File scenario whre I am getting Follwing error in File sender CC in RWB.. IN SXMB_MONI IDOC message is successful
    Message processing failed. Cause: javax.ejb.EJBException: Exception in getMethodReady() for stateless bean sap.com/com.sap.aii.af.appxml|com.sap.aii.af.ejb.jarxml|CallAdapterWithMessageBean; nested exception is: com.sap.engine.services.ejb3.util.pool.PoolException: javax.ejb.EJBException: Exception raised from invocation of public void com.sap.aii.af.app.modules.CallAdapterWithMessageBean.ejbCreate() throws javax.ejb.CreateException method on bean instance com.sap.aii.af.app.modules.CallAdapterWithMessageBean@4ba33360 for bean sap.com/com.sap.aii.af.appxml|com.sap.aii.af.ejb.jarxml|CallAdapterWithMessageBean; nested exception is: javax.ejb.CreateException: com.sap.engine.services.jndi.persistent.exceptions.NameNotFoundException: Object not found in lookup of SapXIJDBCAdapterService
    Any Idea?
    Thanks
    Rajeev

    HI,
    As stated I restarted the service but still the following error exist:
    Delivering the message to the application using connection File_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: javax.ejb.EJBException: Exception in getMethodReady() for stateless bean sap.com/com.sap.aii.af.appxml|com.sap.aii.af.ejb.jarxml|CallAdapterWithMessageBean; nested exception is: com.sap.engine.services.ejb3.util.pool.PoolException: javax.ejb.EJBException: Exception raised from invocation of public void com.sap.aii.af.app.modules.CallAdapterWithMessageBean.ejbCreate() throws javax.ejb.CreateException method on bean instance com.sap.aii.af.app.modules.CallAdapterWithMessageBean@58e01320 for bean sap.com/com.sap.aii.af.appxml|com.sap.aii.af.ejb.jarxml|CallAdapterWithMessageBean; nested exception is: javax.ejb.CreateException: com.sap.engine.services.jndi.persistent.exceptions.NameNotFoundException: Object not found in lookup of SapXIJDBCAdapterService..
    In CC in short LOG its states as Functioning but the status is in RED and the error message as stated above.
    Even I tried wtih giving the wrong server details but still its giving the same error instead of saying wrong server details or so!....
    Any inputs?
    Thanks
    Rajeev
    Edited by: rajeev raj on Sep 19, 2009 3:19 PM

  • Errror message "quicktime -3" can't open iTunes

    I was in the middle of updating itunes and I got an error message that just says error message -3. I have tried to uninstall both itunes and quicktime and re-install and that was unsucessful as well. I also tried to dissable my security stuff and install then and that was unsecsefull. I need help I am dying from lack of music!!!!! help me please! I am considering becoming a monk if I can't figure this out!!!
    [email protected]

    Try posting in the iTunes for Windows area. You'll be more likely to get a quick and accurate answer there than you will here in the iTunes for Macintosh forum. Good luck.

Maybe you are looking for

  • High memory usage, MacBook PRO retina 16Gb

    Hi, I'm using a MacBook Pro  Retina 15-inch 16Gb Processor 2,5 Ghz Intel Core i7 Graphics Intel Iris Pro 1536 Mb OS: OS X  Yoseminte v10.10.2 I'm having a problem with my ram. I think its eating too much rum when I'm not doing anything.. Please find

  • Oracle 9.0.1 on RedHat 7.1

    When installing Oracle 9.0.1 Database enterprise edition. I do encounter the following error in the make file, target install, ld cannot find -lclntsh. This is in the following makefile: OraHome1/plsql/lib/ins_plsql.mk. The file where is refered to,

  • Pricing , freight conditon type, import procedure in pricing , taxes

    I understood the pricing , but what with some exercises from where get this? How many conditon type will be used in MM ? <b>pricing , freight conditon type, import procedure in pricing , taxes</b> which conditon types used ? what make the settings in

  • How do you make a tint of a color in an alpha channel?

    When creating a spot color channel in PS it gives you Solidity option. I set this to 50% on my Reflex Blue channel but it still prints at 100%. What am I doing wrong?

  • Imovie defaults to audio fade-in.

    When I split a clip, detach audio to play over previous clip as a lead-in to the clip iMovie defaults to "fade in" on the clip. Deselecting the fade-in box is ineffective. Is there something i can do about this?