TEXTAREA in JSP dosen't work

TEXTAREA in JSP dosen't wrap to next line and I use the following syntax.
<input type='textarea' name='code' rows='2' cols='30' style='width: 180px;height:30px'>
when I type it keep wraping in the first line and dosen't go to 2nd line at all.

The same syntax, I tried in a seperate html file it works.
<input type='textarea' name='code' rows='2' cols='30' style='width: 180px;height:30px'>
But, it dosen't work in my jsp? If I use your syntax in my JSP, still not working?

Similar Messages

  • JSP dosen't work..

    I am a beginner and posting here for the first time. I am looking for little help with the a jsp...
    Here's my date.jsp:
    <jsp:useBean id="date" class="DateBean.class"/>
    <html>
         <head>
              <title>Date jsp</title>
         </head>
         <body>
              <h1>Today's Date</h1>
              <p>
                   <jsp:getProperty name="date" property="date"/>
              </p>          
         </body>
    </html>and here's my DateBean src code:
    import java.util.Calendar;
    public class DateBean {
         public DateBean() {
              try {
                   Calendar rightNow = Calendar.getInstance();
                   month = months[rightNow.get(Calendar.MONTH)];
                   day = rightNow.get(Calendar.DATE);
                   year = rightNow.get(Calendar.YEAR);
              }catch (Exception e) {}          
         public String getMonth() {
              return month;
         public int getDay() {
              return day;
         public int getYear() {
              return year;
         public String getDate() {
              String date = day + "-" + month + "-" + year;
              return date;
         private String[] months = {"January" , "February" , "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"};
         private String month;
         private int day;
         private int year;
    }So I put the DateBean.class into the WEB-INF/classes/ directory of my tomcat server...
    But when i try to run it... i get the message: date.jsp(1,1) The value for the useBean class attribute DateBean.class is invalid.
    So I would like some help resolving this problem..
    Message was edited by:
    Westendraider

    First put your DateBean class in a package.
    Second when referencing the bean in the useBean tag reference it as class="packageName.DateBean" without the ".class"
    http://java.sun.com/products/jsp/syntax/2.0/syntaxref2027.html#8865

  • Gif imagen dosen't work at o.s 6.0

    The gif imagen in profile bbmsn contactas dosen't work in my torch 9800 os 6.0 all my friends that have got the os 6.0 have goy the same proble, i wanna know if there are or when is coming a update to solution this problem

    Hi,
    the problem whit NI 9223 module and the example that you talk about is know. Indeed, there is a CAR - Corrective Action Request - #30724 that deals with the erroneous implementation of the example.
    To improve the code, the owner of CAR, suggest:
    Added pipelining loops and removed from FPGA VI to Increase maximum acquisition rate and modified host VI to implement proper DMA FIFO programming practices.
    I try to implement and improve the code. Bye
    Mario

  • JSP-Editor not working properly

    Hi everybody,
    I am working with ISA5.0 and NWDI. I have checked out the Web-Module Project crm/isa/web/b2b.
    Now I would like to modify JSP-Files. Unfortonately the JSP-Editor is not working properly.
    The JSP-Editor cannot resolve references to Tag-Libraries like
    <%@ taglib uri="/isa" prefix="isa" %>
    Furthermore I get Errors with JSP-Includes
    <%@ include file="checksession.inc" %>
    The JSP-Editor does not show any other compile errors until the above mentioned errors are resolved.
    So the JSP-Editor does not help with compile errors.
    I have tried to use Lomboz instead, but due to the modularization in ISA5.0 and NWDI (ie the Taglibraries are defined in a separate module) I did not get it to work either.
    Does anybody have experience on how to get the JSP editor to work properly?
    Thanks for your help,
    Andreas

    Highlite the clip in the timeline, control click on it and choose "send to soundtrack as an audio file project" in the pop up menu. Don't do an "open with editor". This should work.
    If it doesn't and it's just the one clip, you could launch Soundtrack and then open that clip as an audio project . . . don't do a open with editor, just open it directly. Make your adjustment and save over writing the file with the new audio. You may want to copy the clip first as a backup. When you open your FCP project, you'll have to re-link the clip. Once you do it will show up with the new sound.

  • OC4J JSP Debugging not working for all the jsps

    Hi,
    Initially I was not able to debug jsps using Eclipse and OC4J. The jsp debugging started working once I made the below changes:
    1) global-web-application.xml is modified
    Changed the attribute development="true" in orion-web-app
    Added the below init param for the JspServlet
    <init-param>
    <param-name>debug</param-name>
    <param-value>class</param-value>
    </init-param>
    If the jsps are present in a sub directory under the webcontent none of the breakpoints are working. I am still be able to view the jsp pages on the browser.
    Tools: Oracle 10g Application Server Standalone version(10.1.3.5.0), JDK5, Windows XP, Eclipse Indigo
    Project Structure:
    Test (Eclipse Dynamic Web Project)
    -WebContent
    Sample.jsp ( Breakpoints are working)
    -subF (Folder)
    SubSample.jsp (Breakpoints are not working)
    -WEB-INF
    web.xml
    Debugging worked for http://localhost:8888/Test/Sample.jsp
    Debugging not working for http://localhost:8888/Test/subF/SubSample.jsp
    Any help is highly appreciated.
    Regards
    Danny

    This tells there is not enough main memory (not disk space) for the program to run.
    - You can look the dump in ST22, it will have suggestions on increasing the ROLLAREA??, you can forward that to Basis.
    - Most likely you will not have any more memory to assign so the above may not be feasible. Try to rework your query so it works with less data.

  • Parsing in Weblogic/jsp doesn't work; application-mode (command-line) works

    Hello-
    Parsing my XML file in Weblogic/jsp doesn't work, whereas it works
    in application-mode... (albeit on two different machines)
    Here are the parameters:
    server1:
    weblogic 6.0
    win2k server
    jre1.3
    my personal machine:
    ***no weblogic***
    win2k server
    jre1.3
    When I run my code as an application (command-line style) on my machine,
    parsing in my xml file works fine, and I can do a root.toString() and it
    dumps out the entire xml file, as desired.
    However, running my code inside weblogic (on server1) in JSP, parsing in
    my file and doing a root.toString() results in the following: [dmui: null]
    (where dmui is my root)
    (even though i'm running it on two different machines, i'm positive its the
    same code (the servers share a mapped drive)...
    So, I think its probably because I'm using a different parser, as
    specified by weblogic? There are no exceptions being thrown. Here's my
    (abbreviated) code, which is called either command line style or in a JSP:
    // Imports
    import org.w3c.dom.*;
    import org.w3c.dom.Document;
    import javax.xml.parsers.*;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.DocumentBuilder;
    import org.xml.sax.SAXException;
    import org.xml.sax.SAXParseException;
    DocumentBuilderFactory docBuilderFactory =
    DocumentBuilderFactory.newInstance();
    DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
    mDocument = docBuilder.parse (inFile);
    myRoot.toString()
    -END
    Doing a System.getProperty("javax.xml.parsers.DocumentBuilderFactory")
    results in:
    server1 (weblogic/jsp):
    "weblogic.apache.xerces.jaxp.DocumentBuilderFactoryImpl"
    my machine (application-mode):
    null
    Does anyone have any ideas about how to get this work? Do I try to set it
    up so that they both use the same parser? Do I change the Weblogic parser?
    If so, to what? And how?
    Am I even close?
    Any help would be appreciated..
    Thanks, Clint
    "[email protected]" <[email protected]> wrote in message
    news:[email protected]...
    No problem, glad you got it worked out :)
    ~Ryan U.
    Jennifer wrote in message <[email protected]>...
    I completely missed setting the property(:-o), foolish mistake. That wasit. Thanks.
    "j.upton" <[email protected]> wrote:
    Jennifer,
    Personally I would get rid of import com.sun.xml.parser.* and use xerces
    which comes with WLS 6.0 now, unless like I said earlier you have a need
    to
    use the sun parser :) Try something like this with your code --I've put
    things to watch for as comments in the code.
    import javax.xml.parsers.*;
    import org.xml.sax.SAXException;
    import org.w3c.dom.*;
    import java.io.FileInputStream;
    public class BasicDOM {
    public BasicDOM (String xmlFile) {
    try{
    FileInputStream inStream;
    Document document;
    /*You must specify a parser for jaxp. You can in a simple view
    think
    of this as being analogous to a driver used by JDBC or JNDI. If you are
    using this in the context of a servlet or JSP and have set an XML
    registry
    with the console this happens automatically. You can also invoke it in
    the
    context of an application on the command line using the -D switch. */
    System.setProperty("javax.xml.parsers.DocumentBuilderFactory",
    >>>
    "weblogic.apache.xerces.jaxp.DocumentBuilderFactoryImpl");
    // create a document factory
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    // specify validating or non-validating parser
    dbf.setValidating(true);
    // obtain a factory
    DocumentBuilder db = dbf.newDocumentBuilder();
    // create a document from the factory
    inStream = new FileInputStream(xmlFile);
    document = db.parse(inStream);
    }//try
    catch (Exception e)
    System.out.println("Unexpected exception reading document!"
    +e);
    System.exit (0);
    }//catch
    }//BasicDom
    // Main Method
    public static void main (String[] args) {
    if (args.length < 1)
    System.exit(1); file://or you can be more verbose
    new BasicDOM(args[0]);
    }//class
    =============================================
    That will give you a basic DOM you can manipulate and parse it fromthere.
    BTW this code
    compiled and ran on WLS 6.0 under Windows 2000.
    Let me know if this helped or you still are having trouble.
    ~Ryan U.
    "Jennifer" <[email protected]> wrote in message
    news:[email protected]...
    Actually I included com.sun.xml.parser.* as one last febble attempt toget
    it working.
    And as for source code, I included the code. If I just put that oneline
    of code
    in, including the imports, it fails giving me an error listed above inthe
    subject
    line. Here is the code again:
    package examples.xml.http;
    import javax.xml.parsers.*;
    import org.xml.sax.SAXException;
    import org.xml.sax.SAXParseException;
    import org.w3c.dom.*;
    import java.util.*;
    import java.net.*;
    import org.xml.sax.*;
    import java.io.*;
    public class BasicDOM {
    static Document document;
    public BasicDOM (String xmlFile) {
    try {
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    } catch (FactoryConfigurationError e){
    System.err.println(e.getException());
    e.printStackTrace();
    // Main Method
    public static void main (String[] args) {
    BasicDOM basicDOM = new BasicDOM (args[0]);

    Hi, Rob
    Does it work in WL9.2?
    It seems I do it exactly as the explained at http://edocs.bea.com/wls/docs81/programming/classloading.html - and it fails :o(.
    I try to run my app.ear with WL9.2 There are 2 components in it: webapp and mdb. The webapp/WEB-INF contains weblogic.xml:
    <weblogic-web-app>
    <container-descriptor>     
    <prefer-web-inf-classes>true</prefer-web-inf-classes>
    </container-descriptor>
    </weblogic-web-app>
    Mdb is expected to run in the same mode, i.e. to prefer the webapp/WEB-INF/*.jar over the parent Weblogic classloader. To do so I add the weblogic-application.xml to the app.ear!/META-INF:
    <weblogic-application>
    <classloader-structure>
    <module-ref>
    <!-- reminder: this webapp contains
    prefer-web-inf-classes -->
    <module-uri>webapp</module-uri>
    </module-ref>
    <classloader-structure>
    <module-ref>
    <module-uri>mdb.jar</module-uri>
    </module-ref>
    </classloader-structure>
    </classloader-structure>
    </weblogic-application>
    Now, when classloader-structure specified, both webabb and mdb prefer the weblogic root loader as if prefer-web-inf-classes not defined at all.

  • UBLR dosen´t work in an interfaces trunk?

    I´m configuring Aggregate policer in a Sup720-3B, I need to configure Aggregate Policer in a Trunk interfaces, It´s required to limit the bandwidth for vlan to L2 through an interface trunk, between two catalyst.  But it´s dosen´t work. The configuration that I am using is:
    S6509#run int giga 3/2
    Building configuration...
    Current configuration : 167 bytes
    interface GigabitEthernet3/2
    switchport
    switchport trunk encapsulation dot1q
    switchport mode trunk
    no ip address
    service-policy input LIMIT
    end
    S6509#
    S6509#show ip access-lists TRAFFIC
    Extended IP access list TRAFFIC
    10 permit ip any any
    S6509#
    S6509#show class-map Daniel
    Class Map match-all Daniel (id 1)
    Match access-group name TRAFFIC
    S6509#
    S6509#
    S6509#show policy
    S6509#show policy-map
    Policy Map LIMIT
    Class Daniel
    police flow mask src-only 2000000 200000 conform-action transmit exceed-action drop
    S6509#
    S6509#
    hostname S6509
    boot system flash disk1:s72033-advipservicesk9_wan-mz.122-18.SXF14.bin
    logging buffered 32768 debugging
    logging rate-limit all 1000
    enable secret 5 $1$Oewp$4FbojEBx0Nn.sXO1ZzhIj/
    class-map match-all Daniel
    match access-group name TRAFFIC
    policy-map LIMIT
    class Daniel
    police flow mask src-only 2000000 200000 conform-action transmit exceed-action drop
    S6509#show mls qos
    QoS is enabled globally
    Policy marking depends on port_trust
    QoS ip packet dscp rewrite enabled globally
    Input mode for GRE Tunnel is Pipe mode
    Input mode for MPLS is Pipe mode
    QoS Trust state is DSCP on the following interface
    Gi3/4
    Vlan or Portchannel(Multi-Earl) policies supported: Yes
    Egress policies supported: Yes
    ----- Module [5] -----
    QoS global counters:
    Total packets: 233
    IP shortcut packets: 0
    Packets dropped by policing: 0
    IP packets with TOS changed by policing: 0
    IP packets with COS changed by policing: 0
    Non-IP packets with COS changed by policing: 0
    MPLS packets with EXP changed by policing: 0
    S6509#
    S6509#
    S6509#show policy-map interface gigabitEthernet 3/2
    GigabitEthernet3/2
    Service-policy input: LIMIT
    Class-map: Daniel (match-all)
    0 packets, 0 bytes
    5 minute offered rate 0 bps, drop rate 0 bps
    Match: access-group name TRAFFIC
    Class-map: class-default (match-any)
    0 packets, 0 bytes
    5 minute offered rate 0 bps, drop rate 0 bps
    Match: any
    S6509#

    Contact the wireless carrier to which the iPhone is locked and
    ask that carrier if they provide unlocking and if you qualify.
    What is the exact wording of any error message you receive?

  • LoadingSecondFile - Dosen't work

    loadMovie() loads SWFs into _root.mc1.mc2, and I use the below method to be able to identify the selected movieclip. It works when I load the first SWF but when the second SWF is been loaded it dosen't work. What may be the cause for this.
    I tried unloadMovie() and removeMovieClip() to clear the movieclip before loading the new file, but no success.
    function traceName():Void {
         trace(this._name);
    for (i=0; i<5; i++) {
        _root.mc1.mc2["color"+i].onRelease = traceName;

    Thanks Ned. But I've got an array named mc
    var mc:Array = [mc1, mc2, mc3];
    I'm loading the below code as an external swf as well. Could that be causing this issue?
    function traceName():Void {
         trace(this._name);
    for (i=0; i<5; i++) {
        _root.mc1.mc2["color"+i].onRelease = traceName;

  • In I tunes I cant down load a CD.  I get the message "The file couldn't be convereted.  You don't have write access for you ITunes media folder or a folder with in it. To change permissions, ...  When I do this it still dosen't work

    In I tunes I can't down load a CD.  I get the message "The file couldn't be convereted.  You don't have write access for you ITunes media folder or a folder with in it. To change permissions, ...  When I do this it still dosen't work.

    Thanks C F McBlob but I recursively changed the permissions of my Music directory meaning every file and directory beneath it, as well as the directory itself, had the write permissions added.
    I used "chmod -R u+w ./Music" and chmod -R g+w ./Music" to do it.
    Alas, no cigar. :-(

  • Can't get JSP debugging to work with WebLogic 6.0 and Eclipse 2.1.1

    Is native JSP debugging supported in WebLogic 6.0? If so, what are
              the steps involved in getting it to work? I'm in debug mode and my
              servlets will catch at my breakpoints but the JSP pages' breakpoints
              are ignored. I am using compliance level 1.3 and a JRE 1.3. I tried
              to start WebLogic with the 1.4.2 JRE but I get an exception error on
              the WLS JDK name" field. What am I missing here?
              Thanks!
              

    I appear to have solved it, but it is not clear to me why.
    I created a jar file of the required classes, and placed it in the same directory as the jsp file. My jsp code then looked like:
    <jsp:plugin type="applet" code="nz.astarte.ganttapplet.GanttApplet"
    codebase="."
    archive="GanttApplet.jar"
    jreversion="1.3.1"
    width="400" height="175">
    <jsp:fallback>
    Plugin support could not be determined
    </jsp:fallback>
    </jsp:plugin>
    This works fine. However I would expect to be able to move the jar file to some other directory, so that the jar file and jsp files are separated. I spent hours trying to work out why it wouldn't work when I had the jar
    file in WEB-INF/classes (under the jsp file directory) and had codebase="WEB-INF/classes/". In the end I put the jar file into a directory I defined separately called wotnot and defined codebase="wotnot/"
    Now it works. However I still think I should be able to have the jar file anywhere, including WEB-INF/classes and would love for someone to tell me why not!
    Thanks, Andrew

  • Can't get jsp:plugin to work with jb5

    I am trying to get a Swing applet compiled with JDK 1.3.1 to run on a jsp page using the <jsp:plugin> tag. At this stage it is a ridiculously simple applet (just some JLabels and JTextFields) but I can't get it to work. Here is the jsp code:
    <jsp:plugin type="applet" code="nz.astarte.ganttapplet.GanttApplet"
    codebase="./WEB-INF/classes" jreversion="1.3.1"
    width="400" height="175">
    <jsp:fallback>
    Plugin support could not be determined
    </jsp:fallback>
    </jsp:plugin>
    When I run it in the jb5 ide nothing shows up at all. OK, I figured the ide doesn't support the plugin, so leaving the ide running (which provides me with a web server) I go into IE (version 5) and enter the url to the page, which is http://localhost:8080/AppletCommunications/GanttApplet.jsp
    I get the page, and the gray box saying loading the applet but the plugin console tells me:
    load: class nz.astarte.ganttapplet.GanttApplet not found.
    java.lang.ClassNotFoundException: java.io.FileNotFoundException: http://localhost:8080/AppletCommunications/WEB-INF/classes/nz/astarte/ganttapplet/GanttApplet.class
    Why not? Under the directory where the jsp page is located is the directory structure WEB-INF/classes/nz/astarte/ganttapplet and in that directory is a GanttApplet.class file.
    I cannot understand why it isn't found. Do applets work with the jb5 ide? Is there something blindingly obvious that I've missed?
    Thanks, Andrew

    I appear to have solved it, but it is not clear to me why.
    I created a jar file of the required classes, and placed it in the same directory as the jsp file. My jsp code then looked like:
    <jsp:plugin type="applet" code="nz.astarte.ganttapplet.GanttApplet"
    codebase="."
    archive="GanttApplet.jar"
    jreversion="1.3.1"
    width="400" height="175">
    <jsp:fallback>
    Plugin support could not be determined
    </jsp:fallback>
    </jsp:plugin>
    This works fine. However I would expect to be able to move the jar file to some other directory, so that the jar file and jsp files are separated. I spent hours trying to work out why it wouldn't work when I had the jar
    file in WEB-INF/classes (under the jsp file directory) and had codebase="WEB-INF/classes/". In the end I put the jar file into a directory I defined separately called wotnot and defined codebase="wotnot/"
    Now it works. However I still think I should be able to have the jar file anywhere, including WEB-INF/classes and would love for someone to tell me why not!
    Thanks, Andrew

  • When try to connect my iPod touch 4th gen to my house Wifi it won't connect, it used to work fine but now it dosen't work, but it does say that the internet is available, but when I tap on it it just loads. all other devices work fine.

    When try to connect my iPod touch 4th gen to my house Wifi it won't connect, it used to work fine but now it dosen't work, but it does say that the internet is available, but when I tap on it it just loads. all other devices work fine.

    Does the iOS device connect to other networks? If yes that tend to indicate a problem with your network.
    Does the iOS device see the network?
    Any error messages?
    Do other devices now connect?
    Did the iOS device connect before?
    Try the following to rule out a software problem:                
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on your router
    .- Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Wi-Fi: Unable to connect to an 802.11n Wi-Fi network      
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem and it does not connect to any networks make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • JSP Doesn't work on Apache

    I installed Oracle Portal Early Adoptor edition to Windows 2000. I noticed that the Oracle HTTP server has Apache/Jserv. The servlet sample works, however the JSP doesn't work. There aren't any documentation about JSP. Do I have to install a 3rd party JSP web server such as JRUN to run JSP? Thanks.

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Sir Gawin:
    I installed Oracle Portal Early Adoptor edition to Windows 2000. I noticed that the Oracle HTTP server has Apache/Jserv. The servlet sample works, however the JSP doesn't work. There aren't any documentation about JSP. Do I have to install a 3rd party JSP web server such as JRUN to run JSP? Thanks.<HR></BLOCKQUOTE>
    I would also be interested in this answer.I had test site running on a win2000 server with Apache/Jserv until I installed WebDB. Now I can connect via a web browser to the default WebDB site but the Apache HTTP sevices refuse to start up giving an error message 1069( or something like that). WebDB is configired to a different port( not 80)than Apache http
    null

  • Apache in testing dosen't work

    i install apache mysql and php in testing repo.
    but apache dosen't work.
    $ sudo /etc/rc.d/httpd start
    :: Starting HTTP Daemon                                                  [FAIL]
    $ sudo /usr/sbin/apachectl start
    httpd: Syntax error on line 232 of /etc/httpd/conf/httpd.conf: Cannot load /usr/lib/apache/mod_access.so into server: /usr/lib/apache/mod_access.so: cannot open shared object file: No such file or directory
    there is not mod_access.so. hwo to run appache daemon?
    $ pacman -Ql apache | grep /usr/lib/apache/mod
    apache /usr/lib/apache/mod_actions.so
    apache /usr/lib/apache/mod_alias.so
    apache /usr/lib/apache/mod_asis.so
    apache /usr/lib/apache/mod_auth_basic.so
    apache /usr/lib/apache/mod_auth_digest.so
    apache /usr/lib/apache/mod_authn_anon.so
    apache /usr/lib/apache/mod_authn_dbd.so
    apache /usr/lib/apache/mod_authn_dbm.so
    apache /usr/lib/apache/mod_authn_default.so
    apache /usr/lib/apache/mod_authn_file.so
    apache /usr/lib/apache/mod_authz_dbm.so
    apache /usr/lib/apache/mod_authz_default.so
    apache /usr/lib/apache/mod_authz_groupfile.so
    apache /usr/lib/apache/mod_authz_host.so
    apache /usr/lib/apache/mod_authz_owner.so
    apache /usr/lib/apache/mod_authz_user.so
    apache /usr/lib/apache/mod_autoindex.so
    apache /usr/lib/apache/mod_cern_meta.so
    apache /usr/lib/apache/mod_cgi.so
    apache /usr/lib/apache/mod_dav.so
    apache /usr/lib/apache/mod_dav_fs.so
    apache /usr/lib/apache/mod_dbd.so
    apache /usr/lib/apache/mod_deflate.so
    apache /usr/lib/apache/mod_dir.so
    apache /usr/lib/apache/mod_dumpio.so
    apache /usr/lib/apache/mod_env.so
    apache /usr/lib/apache/mod_expires.so
    apache /usr/lib/apache/mod_ext_filter.so
    apache /usr/lib/apache/mod_filter.so
    apache /usr/lib/apache/mod_headers.so
    apache /usr/lib/apache/mod_ident.so
    apache /usr/lib/apache/mod_imagemap.so
    apache /usr/lib/apache/mod_include.so
    apache /usr/lib/apache/mod_info.so
    apache /usr/lib/apache/mod_log_config.so
    apache /usr/lib/apache/mod_log_forensic.so
    apache /usr/lib/apache/mod_logio.so
    apache /usr/lib/apache/mod_mime.so
    apache /usr/lib/apache/mod_mime_magic.so
    apache /usr/lib/apache/mod_negotiation.so
    apache /usr/lib/apache/mod_proxy.so
    apache /usr/lib/apache/mod_proxy_ajp.so
    apache /usr/lib/apache/mod_proxy_balancer.so
    apache /usr/lib/apache/mod_proxy_connect.so
    apache /usr/lib/apache/mod_proxy_ftp.so
    apache /usr/lib/apache/mod_proxy_http.so
    apache /usr/lib/apache/mod_rewrite.so
    apache /usr/lib/apache/mod_setenvif.so
    apache /usr/lib/apache/mod_speling.so
    apache /usr/lib/apache/mod_ssl.so
    apache /usr/lib/apache/mod_status.so
    apache /usr/lib/apache/mod_suexec.so
    apache /usr/lib/apache/mod_unique_id.so
    apache /usr/lib/apache/mod_userdir.so
    apache /usr/lib/apache/mod_usertrack.so
    apache /usr/lib/apache/mod_version.so
    apache /usr/lib/apache/mod_vhost_alias.so

    A bunch of modules have changed for apache 2.2 and got new names etc, therefore you have to edit httpd.conf, take look at http://httpd.apache.org/docs/2.2/new_features_2_2.html. For example, mod_access is now called mod_authz_host (with the new identifier authz_host_module, instead of access_module)

  • My password dosen't work in app store either game center !!

    My password dosen't work in app store either game center , what is the problem?

    Based on the numerous posts regarding iTunes and the App Store, there appears to be an issue at Apple's end. Apple has finally posted an update on the iCloud status page. https://www.apple.com/support/systemstatus/
    Do not change your settings.

Maybe you are looking for

  • Authorization Check while TECO PM ORDER

    While performing action TECO of PM order, system check the authorization of Mtc. Plant of Equipment entered in the  PM Order in place of Mts. plant authorization of PM Order it self. If during the period of PM order creation to TECO PM order the equi

  • MIR7 preliminary posting - Entry date continuity after posting

    Hi All, Is anybody has experice regarding the following issue? in MIR7 preliminary incoming invoice is created. E.g. Entry date (CPUDT) 20/02/2009. When the we post preliminary invoice, system updates CPUDT with the actual date, by this we lose conti

  • Is there a downloadable iTunes Version Available for OS Windows ME?

    Is there a downloadable iTunes Version Available for OS Windows ME? If so, please let me know. Here is the situation. I would like to import some classical music that I have in my Windows Media Player to iTunes so that I could burn the music to a CD.

  • Multiple Database Users

    Dear Experts I have created 3 database users (SCOTT, X, and Y). SCOTT user has all the database. I wanted to give the full rights to X and Y on the objects of SCOTT, so, I issued the command SQL>grant all on emp to X; Connecting X, i have to give sch

  • Problems with placed PSDs in ID CC2014

    Hello everyone, after placing a PSD file in ID, there a massive loss of quality which can best be seen on the edges. Sample from original Logo in Photoshop, 100 %, CMYK (4000 x 2500 px, 300 dpi): Image saved as PSD and placed in ID (no scaling in ID,