JAVA_HOME var not defined , Tomcat launch error

hi Friends ,
i just installed Tomcat 4.1 on my new m/c
when i go to browser and
write http://localhost:8080/
i see the Tomcat welcome page means tomcat has been set up successfully
however when i select 'Start Tomcat' from program files , the tomcat window opens and closes in 2 seconds
and when i launch Tomcat using catalaina run command i get the msg
The JAVA_HOME environment variable is not defined correctly
This environment variable is needed to run this program
Using CATALINA_BASE: ..
Using CATALINA_HOME: ..
Using CATALINA_TMPDIR: ..\temp
Using JAVA_HOME: C:\jdk1.3\bin;
'-Dsun.io.useCanonCaches' is not recognized as an internal or external command,
operable program or batch file.
how do i resolve the isue?

i Have defibed path & JAVA_HOME as
C:\Java1.4\j2sdk1.4.0-rc;
this is where ihave my jdk installed
i m still unable to resolve the issue
pls help

Similar Messages

  • Error: JAVA_HOME is not defined correctly - While running ant.

    I have upgraded the JDK 1.5 Update 10 to Update 14. After upgrading the ant is failing when using with cygwin.
    It's giving the below error message:
    Error: JAVA_HOME is not defined correctly.
    We cannot execute /cygdrive/c/Java/jdk14/bin/java
    The JAVA_HOME is set properly & even I am able to check java -version.
    I am using apache-ant-1.6.5 and cygwin.
    Have any one faced the same problem?
    Please let me know if you have any solutions

    Grrrr. Been having a similar problem, but with Maven2. Allow me to (hopefully) save someone the gnawing of teeth and several bald patches.
    For starters, the Maven documentation gives you a pretty clear example of how to set your PATH. This is as follows:
    export PATH=/usr/whatever/whateveragain/apache-maven-2.0.10/bin:$PATH
    Simple, eh? Note the colon before $PATH. Then, it states quite presumptuously "4) Make sure JAVA_HOME is set to the location of your JDK". However, you don't set it in exactly the same way. You set it in virtually the same way, except without the colon, like this:
    export JAVA_HOME=/usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0$JAVA_HOME
    Note that if you get the paths wrong a couple of times, you may reset them with the unset command. So to unset JAVA_HOME you'd use:
    unset JAVA_HOME
    After which you may set it again. As is advised, you may try to set the user privileges, but they didn't seem to affect my luck at all. Hope this helps!

  • JAVA_HOME is not defined correctly

    Hi everyone.
    I'm trying to run a java program I made for school but I keep getting the message in the debugger console:
    [ Session started at 2010-09-07 01:52:54 -0400. ]
    Error: JAVA_HOME is not defined correctly.
    We cannot execute /System/Library/Frameworks/JavaVM.framework/Home/bin/java
    The Debugger has exited with status 1.The Debugger has exited with status 1.
    I'm working with Xcode 3.2.3 and the java template is Java Tool. Can anyone help me fixing this?
    Thank you very much

    Grrrr. Been having a similar problem, but with Maven2. Allow me to (hopefully) save someone the gnawing of teeth and several bald patches.
    For starters, the Maven documentation gives you a pretty clear example of how to set your PATH. This is as follows:
    export PATH=/usr/whatever/whateveragain/apache-maven-2.0.10/bin:$PATH
    Simple, eh? Note the colon before $PATH. Then, it states quite presumptuously "4) Make sure JAVA_HOME is set to the location of your JDK". However, you don't set it in exactly the same way. You set it in virtually the same way, except without the colon, like this:
    export JAVA_HOME=/usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0$JAVA_HOME
    Note that if you get the paths wrong a couple of times, you may reset them with the unset command. So to unset JAVA_HOME you'd use:
    unset JAVA_HOME
    After which you may set it again. As is advised, you may try to set the user privileges, but they didn't seem to affect my luck at all. Hope this helps!

  • Root element charts not defined in schema error??

    My xsd file is
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema targetNamespace="http://www.datastay.com/schema" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:target="http://www.datastay.com/schema">
         <xs:element name="time" type="xs:positiveInteger" default="1"/>
         <xs:element name="timeType" default="weeks">
              <xs:simpleType>
                   <xs:restriction base="xs:string">
                        <xs:enumeration value="days"/>
                        <xs:enumeration value="weeks"/>
                   </xs:restriction>
              </xs:simpleType>
         </xs:element>
         <xs:element name="refresh">
              <xs:complexType>
                   <xs:all>
                        <xs:element ref="target:time"/>
                        <xs:element ref="target:timeType"/>
                   </xs:all>
              </xs:complexType>
         </xs:element>
         <xs:element name="query">
              <xs:complexType>
                   <xs:simpleContent>
                        <xs:extension base="xs:string">
                             <xs:attribute name="series" type="xs:string" use="required"/>
                        </xs:extension>
                   </xs:simpleContent>
              </xs:complexType>
         </xs:element>
         <xs:element name="chartDefinition">
              <xs:complexType>
                   <xs:all>
                        <xs:element ref="target:refresh"/>
                        <xs:element ref="target:query"/>
                   </xs:all>
                   <xs:attribute name="id" type="xs:ID" use="required"/>
                   <xs:attribute name="title" type="xs:string" use="required"/>
                   <xs:attribute name="type" type="xs:string" use="required"/>
                   <xs:attribute name="xaxislabel" type="xs:string" use="required"/>
                   <xs:attribute name="yaxislabel" type="xs:string" use="required"/>
                   <xs:attribute name="classType" default="com.dms.chart.DefaultChartBusinessHandler">
                        <xs:simpleType>
                             <xs:restriction base="xs:string">
                                  <xs:enumeration value="com.dms.chart.DefaultChartBusinessHandler"/>
                                  <xs:enumeration value="com.dms.chart.PieChartBusinessHandler"/>
                             </xs:restriction>
                        </xs:simpleType>
                   </xs:attribute>
                   <xs:attribute name="width" type="xs:int" default="500"/>
                   <xs:attribute name="height" type="xs:int" default="500"/>
                   <xs:attribute name="chartColor" type="xs:string" default="#FFFFFF"/>
              </xs:complexType>
         </xs:element>
         <xs:element name="charts">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="target:chartDefinition"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
    </xs:schema>
    My xml file is
    <?xml version="1.0"?>
    <charts xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="C:\Tomcat4\webapps\chart\WEB-INF\files\chartdefs.xsd">
    <chartDefinition id="1" title="Monthly Logins" type="verticalbar3d" xaxislabel="Month" yaxislabel="Logins" classType="com.dms.chart.DefaultChartBusinessHandler" width="500" height="750" chartColor="#FFFFFF">
    <refresh>
    <timeType>
    minutes
    </timeType>
    <time>
    1
    </time>
    </refresh>
    <query series="john">
              select * from defaultchart where name = 'john'
    </query>
    <query series="max">
              select * from defaultchart where name = 'max'
    </query>
    </chartDefinition>
    <chartDefinition id="2" title="Average Workflow life span" type="pie3d" xaxislabel="Workspace" yaxislabel="Days" classType="com.dms.chart.PieChartBusinessHandler" width="500" height="500" chartColor="#FFFFFF">
    <refresh>
         <timeType>
    minutes
    </timeType>
         <time>
    5
    </time>
    </refresh>
    <query series="john">
         select * from defaultchart where name = 'mike'
    </query>
    </chartDefinition>
    </charts>

    Copy the schema and the XML document to the same directory.
    The root element of the XML document specifies the location of the schema.
    <?xml version="1.0"?>
    <charts xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="chartdefs.xsd">The xs:schema element:
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">

  • Shared library extended class Error #1065: Variable is not defined

    Right, bit of a complicated set-up  here. I've got a class structure which includes the View class:
    com.website.buttons.MyButton
    Then i've got a shared library swc called sharedassets.swc  that contains a MovieClip in the library that uses  'com.website.buttons.MyButton' as its 'Linkage Properties' base class,  extending with the following empty class:
    com.website.timeline.sharedassets.BackButton
    Then i've got a second  swc that  imports the BackButton mc into its own library as a shared library asset, and uses an instance of  it on the stage in a MovieClip of it's own called LinearNavBar.  LinearNavBar's Linkage Properties are thus:
    Class: com.website.timeline.sequence.LinearNavBar
    Base class: com.website.navigation.LinearNavbar
    Again, 'com.website.navigation.LinearNavbar' is an actual class in the code base, whilst 'com.website.timeline.sequence.LinearNavBar' does not exits (ie: its dynamically created by the swc at compile time). 'Automatically declare stage instances' is unchecked
    Over in the class structure in my  Flash Builder project, I've got another class
    com.website.navigation.Sequence
    Which instantiates a new version of  LinearNavBar and adds it to the stage:
    var navBar:Navbar = new LinearNavBar();
    addChild(navBar);
    At which point the following error is  shown:
    ReferenceError: Error #1065: Variable BackButton is not defined.
    It seems Flash Builder cannot find 'com.website.timeline.sharedassets.BackButton', even though BOTH compiled swcs are included as part of the projects.
    What gives, my friends? I am most heartily perplexed.

    I have on the permit debugging option but it says nothing but these errors
    ReferenceError: Error #1065: Variable Button is not defined.
    ReferenceError: Error #1065: Variable ComponentShim is not defined.
    ReferenceError: Error #1065: Variable LoaderProV3AS3 is not defined.

  • Error #1065: Variable  is not defined on ObjectUtil??

    One comment to Adobe, it would be nice if the debugger would
    output better errors. Maybe it's just my lack of experience, but
    trying to track down errors is a daunting task.
    I had spent an entire night trying to track down this error
    and it has come down to the following code:
    private function server_fault(event:FaultEvent):void{
    Alert.show(ObjectUtil.toString(event));
    The ObjectUtil seems to be causing this error as if i change
    it to (event as String) it works fine. But this makes absolutely no
    sense since i have other classes that use the exact same code w/o a
    hitch. I do have the ObjectUtil imported.
    Here is the entire error:
    ReferenceError: Error #1065: Variable is not defined.
    at global/flash.utils::getDefinitionByName()
    at mx.utils::DescribeTypeCache$/describeType()
    at mx.utils::ObjectUtil$/getClassInfo()
    at mx.controls::DataGrid/::generateCols()
    at
    mx.controls::DataGrid/mx.controls:DataGrid::collectionChangeHandler()
    at mx.controls.listClasses::ListBase/set dataProvider()
    at mx.controls::DataGrid/set dataProvider()
    at mx.core::Container/createComponentFromDescriptor()
    at mx.core::Container/createComponentsFromDescriptors()
    at mx.core::Container/mx.core:Container::createChildren()
    at mx.core::UIComponent/initialize()
    at mx.core::Container/initialize()
    at mx.core::UIComponent/
    http://www.adobe.com/2006/flex/mx/internal::childAdded()
    at mx.core::Container/
    http://www.adobe.com/2006/flex/mx/internal::childAdded()
    at mx.core::Container/addChildAt()
    at mx.core::Container/addChild()
    at mx.core::Container/createComponentFromDescriptor()
    at mx.core::Container/createComponentsFromDescriptors()
    at
    mx.containers::ViewStack/createComponentsFromDescriptors()
    at mx.core::Container/mx.core:Container::createChildren()
    at
    mx.containers::TabNavigator/mx.containers:TabNavigator::createChildren()
    at mx.core::UIComponent/initialize()
    at mx.core::Container/initialize()
    at mx.core::UIComponent/
    http://www.adobe.com/2006/flex/mx/internal::childAdded()
    at mx.core::Container/
    http://www.adobe.com/2006/flex/mx/internal::childAdded()
    at mx.core::Container/addChildAt()
    at mx.core::Container/addChild()
    at mx.core::Container/createComponentFromDescriptor()
    at mx.core::Container/createComponentsFromDescriptors()
    at mx.containers::Panel/createComponentsFromDescriptors()
    at mx.core::Container/mx.core:Container::createChildren()
    at
    mx.containers::Panel/mx.containers:Panel::createChildren()
    at mx.core::UIComponent/initialize()
    at mx.core::Container/initialize()
    at views.movie::MovieDetail/initialize()
    at mx.managers::SystemManager/
    http://www.adobe.com/2006/flex/mx/internal::childAdded()
    at mx.managers::SystemManager/
    http://www.adobe.com/2006/flex/mx/internal::rawChildren_addChildAt()
    at mx.managers::SystemManager/addChild()
    at mx.managers::PopUpManagerImpl/addPopUp()
    at mx.managers::PopUpManager$/addPopUp()
    at com.windowedApplication::WindowManager$/add()
    at
    views.movie::MovieMaster/__movieDataGrid_doubleClick()

    I have on the permit debugging option but it says nothing but these errors
    ReferenceError: Error #1065: Variable Button is not defined.
    ReferenceError: Error #1065: Variable ComponentShim is not defined.
    ReferenceError: Error #1065: Variable LoaderProV3AS3 is not defined.

  • Error # 1065: Variable is not defined ..

    Hi ALL,
    I m wondering for 2 days whats this error means, previouly my file was running perfect, one day i open and do some changes than compile it shows these errors in output panel :
    1. variable button is not defined.
    2. variable component shim is not defined.
    3. variable loaderprov3 is not defined.
    i cant find how to fix these,as the behavior of flash is ambigious now. one time i run the file it runs perfectly, second i just code simple if else statement and than run the file, it leads to the above mentioned errors i m totally stuck and cant find any ways to get rid of these junks, Also compiler error window says, "unknown error optimizing byte code".
    Anyone help me out,
    cheers.

    I have on the permit debugging option but it says nothing but these errors
    ReferenceError: Error #1065: Variable Button is not defined.
    ReferenceError: Error #1065: Variable ComponentShim is not defined.
    ReferenceError: Error #1065: Variable LoaderProV3AS3 is not defined.

  • Error: $x_ShowChildren is not defined

    The page definition page is not displaying any of the usual page objects. I'm getting an Error: $x_ShowChildren is not defined in the error console.
    Source File: http://apex.oracle.com/pls/otn/f?p=4000:4150:1692562586117686::NO:::
    Line: 39 error on the page definition page.

    Hi all, we are experiencing this "$x_ShowChildren is not defined" error on our new
    APEX 3.0 installation.
    I've already checked the notes at
    http://www.oracle.com/technology/products/database/application_express/html/3.0_fsps.html#01
    and our page really looks as depicted at point one but the refresh doesn't seem to
    do anything. We have tried to flush the cache and even change browser (IE and FF)
    but the problem is still there.
    I've checked the page source and the missing function is defined in
    /i/javascript/htmldb_html_elements.js
    The js file is visible if loaded directly but somehow the page fails with
    Error: $x_ShowChildren is not defined
    Source File: [...]/f?p=4000:4150:4106999370516652::::FB_FLOW_PAGE_ID,FB_FLOW_ID:1,101
    Line: 39
    (I've removed our address there ...)
    The strange thing is that this happens only from certain PCs but all the
    configurations (browser, network, ...) seem to be identical.
    Any idea of what might be going on?
    Thanks in advance for your kind help

  • Installation of Tomcat gives errors

    hi All,
    i m installing Tomcat4.1 version
    while installing it's telling ' JDK Found' and listing the path for the same
    but after installation when i m starting tomcat , i m getting error ' JAVA_HOME" variable not defined correctly
    i have my JDK in C:\Java1.4\j2sdk1.4.0-rc\bin
    my JAVA_HOME IS DEFINED AS C:\Java1.4\j2sdk1.4.0-rc;
    what shall i do?

    hi,
    Through start menu->programs->Tomcat4.1->start tomcat i was geting the same error
    then i asked my friend , got to know that in JAVA_HOME variable . semicolon at the end is not required
    tht's it
    it's working absolutely fine

  • Flash CS3: AS3 - ReferenceError #1065 Variable is not defined

    I have developed several actionscript classes. Two of these
    classes are associated with MovieClip objects in the library. The
    MovieClips have their Linkage Base Classes set to their respective
    package and class locations and when I check the Linkage settings
    (using the check mark icon) Flash CS3 reports that it can find the
    associated classes for both MovieClips.
    When I check the syntax of my code there are no problems, and
    when I test the Flash movie no Compile Errors are shown. Yet, in
    the output window I get the following error:
    ReferenceError: Error #1065: Variable class1 is not defined.
    ReferenceError: Error #1065: Variable class2 is not defined.
    I have placed class1 and class2 in the above error messages
    to represent the classes that are associated with the MovieClip.
    Am I missing an import command somewhere? I have the base
    class path properly set in the preferences of Flash CS3.
    Thanks,

    It appears that this issue was due to some of my classes not
    being marked as public. I had been following examples from AS2 that
    had the classes marked as dynamic without a private or public
    identifier. Apparently, AS3 assumes all unmarked classes are
    private.

  • 15 beta: ProgressEvent is not defined

    Thank you for your work on Air. You are doing a wonderfull job :-)
    The new publishing engine is way faster. The ipa seems smaller now.
    However I have the following error:
    ReferenceError: Error #1065: Variable ProgressEvent is not defined.
    This error didn't show up with the previous version (14.0.0.137).
    And I have the right include in the code:
    import flash.events.*;
    Is it a bug or did I make something wrong?
    Thank you

    Hi Shankshank,
    I get back to this because I had to find a solution with the new release.
    It turns out the problem is a bit tricky. PogressEvent is defined on Windows and Android.
    In iOS, ProgressEvent is defined except in one class. Don't know why.
    I do have a class called ProgressEvent but it didn't create problems before.
    Anyway I had to find a quick fix so I replaced ProgressEvent with its value ("progress") in the problematic class and everything was fine.
    Just to let you know.
    Best

  • CQ, CQ.i18n is not Defined | Publish Instance | CQ 5.4

    Hi,
    We are using OOTB CQ.i18n.getMessage for localized JQuery Messages. everything is working as expected on Auhor instances but on Publish , it is throwing CQ is not Defined, CQ.i18n is not defined JAVA SCRIPT Errors.
    Code e.g.
    email: CQ.I18n.getMessage("APP201")
    Do we need to enable any extra JS call or include any JS file into the clientlibs? Any pointers to this would be apreciated.
    Thanks
    Vinay

    In author, you are running "inside of the CQ environment", and then the client libraries that defines and communicates with the CQ instance in initiated. On publish, you are running the scripts on the client machine. That environment has no idea about CQ.i18n, since that call does not generate a REST call to the server. It is different execution envrionments.
    Solution: Have a block in the server side generated code that fills a js object with the correct translations or create a REST/JSON representation of the i18n-nodes.
    Taking Alex and Vinzenz perfect answer from the Google Group (https://groups.google.com/forum/?fromgroups=#!topic/day-communique/EZxBdGUwcQU).
    For CQ5.5
    For publish, you need to explicitly include the "cq.shared" clientlib. On author this is automatically part of the authoring UI javascript.
    The clientlibs are noted as part of the js docs: http://dev.day.com/content/docs/en/cq/current/widgets-api/index.html?class=CQ.I18n (see basic info at the top, right below the class name).
    Disclaimer for CQ5.4
    In CQ 5.4 the i18n utility class was not yet part of the clientlib "cq.shared" but of "cq.widgets". You would have to load latter but this is not recommended on a publish instance since it is rather big
    (containing all the widgets required for page authoring and admin consoles). You probably would have to extract the i18n part and for example add it to "cq.shared" manually.
    Message was edited by: Ove Lindström
    Excelent answer.

  • NewObject("XML") getting "Handler not defined #newObject" on runtime

    I'm using Director 11.5.  This code works fine in the debugging/development mode, but as soon as I put it into a projector, I get an error.  The code reads:
          gXML = newObject("XML")
          gXML.load("update_200xml")
    Using the _player.debugPlaybackEnabled = TRUE, I can see that the first line is where the script gives the error.  I have the XMLParser.x32 included in my projector.  The projector is running on Windows 7. 
    So everything runs fine and all code executes when running in development mode.  As soon as I create a projector and run it, I receive the error:
    "Handler not defined
      #newObject
    Script Error: Continue?"
    Any advice on how to get this corrected?
    Thanks in advance!

    newObject is actually a Flash method, so you will also need to include the Flash Asset Xtra in / alongside your projector.
    (Because you are creating a scripted global object rather than using a Flash sprite, the xtra is not added automatically to your movie xtras.)

  • Problem Running ADF page in Tomcat 6 (AdfPage is not defined error)

    I'm using JDEV 11.1.1.5
    Tomcat 6.0.24
    I have the JSPX page below deployed on Tomcat.
    At runtime I get an error: AdfPage is not defined
    On this line of code:
    var passwordTextField = AdfPage.PAGE.findComponentByAbsoluteId('password');
    Any suggestion on why it does not recognize AdfPage in the javascript function?
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
              xmlns:c="http://java.sun.com/jsp/jstl/core"
              xmlns:trh="http://myfaces.apache.org/trinidad/html">
      <c:set var="bundle"
             value="#{adfBundle['oracle.apps.grc.ui.landing.GRCLandingPFBundle']}"/>
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
      <af:document id="loginPage">
            <af:group>
            <af:resource type="javascript" source="/oracle.apps.grc.ui.cryptoclient.CryptoClient.nocache.js"/>          
            <af:resource type="javascript">
                function login(event) {
                    try {
                        var grcCrypto = new window.grc.Crypto();
                        var passwordTextField = AdfPage.PAGE.findComponentByAbsoluteId('password');
                        passwordTextField.setValue(grcCrypto.encrypt(passwordTextField.getValue()));
                        var submitLoginButton = AdfPage.PAGE.findComponentByAbsoluteId('submit_login');
                  AdfActionEvent.queue(submitLoginButton, submitLoginButton.getPartialSubmit());
                        event.cancel();
                    catch (e) {
                        alert(e.message);
            </af:resource>
            </af:group>

    Hi.
    as Raphael says, check your libraries.
    I think that adfpage is in adf-richclient-api-11.jar, check if this library is in your %CATALINA_HOME%/lib folder.
    Anyway I will inform you that Tomcat is not a certificate server,http://www.oracle.com/technetwork/developer-tools/jdev/index-091111.html#Application_Servers

  • Transaction launcher, get error Starttransaction is not defined

    Hi, I am trying to create a new link in the navigation bar that should call ITS and a customer created transaction in CRM. We have been doing it before and these links are working, but now trying to create another link in the navigation bar, I gets an error
    "Starttransaction is not defined". In the Handleclass created with the transaction launcher I gave it the name ZCL_filarkiv. When I did that I got an syntax error "There is a syntax error in class zcl_filarkiv". When I goes to SE80 in order to check the class, I can see several errors, I correct them and add a call in the method IF_CRM_IC_ACTION_HANDLER~PREPARE_DATA_FLOW in order to call the ITS and our customerdefined class. The code added is:
            ICWEBCLIENTBORKEYPARAMETER =
      'ZARKIV'. "#EC NOTEXT
      me->set_container_object(
        iv_name        = '<MAINOBJ>'
        iv_object_key  = ICWEBCLIENTBORKEYPARAMETER
        iv_object_type = gv_bortype
    The transaction ZARKIV is working calling it directly in CRM.
    The syntax errors disappears and I can activate the class without problems. But when trying to use the link, I get the error "Starttransaction is not defined". Also other links that have been working before now gets an error "Error in the starttransaction ZCL_filarkiv.
    I do not have a clue what the problem could be. Is there a step that I have missed to do? Thank you for your help, regards Lena

    Found out that xpath.js wasn't uploaded correctly. Now that
    it is, it works!

Maybe you are looking for

  • Retained Earnings Roll Forward (GAAP vs. STAT)

    Does anyone have any suggestions on how to set Closing Rules, so that you are able to run separate Retained Earnings roll forward, one for GAAP entries, and the other for Statutory Adjustments, with the Book Code field being your point to differentia

  • How do I upgrade from Photoshop Elements 11 to PSE 12 (student edition)

    How do I upgrade from Photoshop Elements 11 to PSE 12 (student edition)

  • Launching tabs from task bar minimizes Firefox

    I generally keep four tabs in Firefox (they all come up when started). I like to keep Firefox maximized at all times. But when using other active programs, then clicking on the taskbar Firefox icon to select one of the tabs to open, Firefox opens min

  • LSMW for SAP HR

    Hello, Need some advice on how to use LSMW to migrate data from Legacy system to SAP for HR module. This is for implementing -ve Time Management implementation. Any input much appreciated and will be rewarded with the points. Regards, Tara

  • HT201412 iphone stuck on apple logo

    I dropped my iphone from pocket hight and because it was turned off i turned it on and it got stuck on the apple logo, I hard restart it and it's still stuck on the apple logo, i've drown the battery and recharge it and it still stuck on the pple log