OracleAS + ColdFusion + Apache vhosts = ???

I have ColdFusion deployed as a J2EE app under OracleAS. ColdFusion's "context root" is /cfusion. I have an app deployed within ColdFusion, residing at /cfusion/myapp/ on the filesystem. Oracle HTTP Server (Apache) is set up with a virtual host for the ColdFusion app. The DocumentRoot in this vhost is specified as <path-prefix>/cfusion/myapp. One would expect that (1) visiting the vhost using the URL given by its ServerName would result in the index.cfm page under the myapp/ directory on the filesystem and that (2) visiting the same URL and appending /cfusion/myapp would be an erroneous request in that it would specify a non-existent directory /cfusion/myapp/ under the DocumentRoot (which already contains /cfusion/myapp -- the request would be like <URL-prefix>/cfusion/myapp/cfusion/myapp/).
However, the former request (1) results in the proper page, but it does not get interpreted by ColdFusion (CfmServlet.jar) and the latter request (2) delivers the page, interpreted as expected.
What's going on? What should I be doing to track this down? I want to serve the ColdFusion app using the shorter URL and I want to understand where these problems are coming from. I don't know whether this is an Oracle AS or a ColdFusion issue!
Thanks.

Nevermind I am a idiot I just found a solution in this thread a few lines down.
http://bbs.archlinux.org/viewtopic.php?id=69105
sorry

Similar Messages

  • I use Apache in Oracle 9i DB. I keep php in C:\oracle\ora92\Apache\Apache\h

    I use Apache in Oracle 9i DB. I keep php in C:\oracle\ora92\Apache\Apache\htdocs. Why I can't run php. I must use driver, doesn't me?.
    Thank you!
    Sorry, I'm not well in English.

    Have you installed the php program into Oracle's Apache?
    There are some notes on this at:
    http://otn.oracle.com/products/ias/ohs/htdocs/php_instructions_for_ohs.htm
    What error are you getting?
    -- CJ

  • Oracle 8i + Apache 1.3.9 + PHP 3.0.14

    I have installed oracle 8.1.5 with patch 2 on my redhat 6.1, it seems to work fine ( sqlplus svrmgrl, etc. ). So I recompiled my PHP 3.0.14 to use OCI8. But something must be wrong. When I restarted Apache to load php module, it died immediately. In redhat 6.1, nothing output in error.log, and in mandrake 7.0, it said that "caught SIGTERM". I don't know why, then I had to restart the computer, it worked, but could not use oci functions to connect dbserver ( error code -12545 ). And when I restarted httpd, the same error as above happened. Does anybody encounter this error? Who can help me?

    I've been able to get Apache_1.3.(9|11|12)+PHP-(3.0.1[45]|4.0b4pl1)+Oracle-8.1.5.0.2 to work (OCI8 API calls) but with much difficulty.
    Compiling was pretty straightforward. I used APXS to load the PHP module. However, when I start Apache with the PHP modules loaded and added, Apache would die (no hints, etc.) What I did was start Apache without PHP loaded, reconfigure in PHP once Apache started and THEN restart apache. This works for me. Kinda tedious, though. And the time when Apache is running without support for PHP would allow anyone to see my PHP code with my database password.
    (Incidentally, how should I configure Apache so it doesn't serve files which end in .php[3] unless it was through the PHP module?)
    I've emailed the Apache OCI8 module developers about it (Stig and Thies) so I hope it'll be resolved soon.

  • PHP4 + Oracle 9i Apache Server

    Hy
    i got a problem compiling php4 with the apxs under
    $ORACLE_HOME/product/Ora9i/Apache/Apache/bin/apxs
    the error message is :
    checking for Apache module support via DSO through APXS...
    Can't locate strict.pm in @INC (@INC contains: /project4/iAS1021/src/pdc_perl/bin/Linux/Opt/lib/5.00503/i686-linux /project4/iAS1021
    /src/pdc_perl/bin/Linux/Opt/lib/5.00503 /project4/iAS1021/src/pdc_perl/bin/Linux/Opt/lib/site_perl/5.005/i686-linux /project4/iAS102
    1/src/pdc_perl/bin/Linux/Opt/lib/site_perl/5.005 .) at /app/oracle/product/Ora9i/Apache/Apache/bin/apxs line 64.
    BEGIN failed--compilation aborted at /app/oracle/product/Ora9i/Apache/Apache/bin/apxs line 64.
    Sorry, I was not able to successfully run APXS. Possible reasons:
    1. Perl is not installed;
    2. Apache was not compiled with DSO support (--enable-module=so);
    3. 'apxs' is not in your path.
    anybody knows about this strict.pm script ?
    thanks

    It should be relatively straight forward.
    If you have WAR files which you've deployed to Tomcat, then you should pretty much be able to deploy them as is to OracleAS using the application server control management console.
    The mgt console has support for WAR file deployment.
    In the documentation, the User's Guide is a good book to read to get up to speed.
    http://download-west.oracle.com/docs/cd/B10464_02/web.htm
    If you have just a collection of JSPs as your application, then I'd recommend you put them into a WAR file archive, and then deploy that.
    cheers
    -steve-

  • Io Exception connecting to Oracle from apache-tomcat-6.0.14 - weird problem

    Hi all,
    I'm in a desperate situation here. Trying to solve this problem for a week now. I have searched all over the internet but coul not find any solution. I developed an application using netbeans 5.5.1 with VWD pack and it works fine. The application accesses an oracle db on another server which works fine on my development machine. Now I deployed to oracle 9i and apache-tomcat-6.0.14 on a solaris machine and encountered this error :
    java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    on further troubleshooting I tried this code on the server.
    java.sql.DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    java.sql.Connection conn = java.sql.DriverManager.getConnection("jdbc:oracle:thin:@servername:1521:sid", "username", "pswd");
    and it works alright. The connection was established wothout error.
    But when I try
    Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
    javax.naming.Context init new javax.naming.Context();
    javax.naming.Context ctx = (javax.naming.Context)init.lookup("java:comp/env");
    javax.sql.DataSource ds = (javax.sql.DataSource) ctx.lookup("jdbc/dataSource");
    java.sql.Connection conn = ds.getConnection();
    I still get the same io Exception error.
    Now I need to fetch the values from the context file, because my application uses :-
    CachedRowSetXImpl portal_tabsRowSet= new CachedRowSetXImpl();
    CachedRowSetDataProvider portal_tabsDataProvider= new CachedRowSetDataProvider();
    as follows :-
    portal_tabsRowSet.setDataSourceName("java:comp/env/jdbc/dataSource");
    portal_tabsRowSet.setCommand("SELECT * FROM PORTAL_TABS");
    portal_tabsRowSet.setTableName("PORTAL_TABS");
    portal_tabsDataProvider.setCachedRowSet((javax.sql.rowset.CachedRowSet)getValue("#{SessionBean1.portal_tabsRowSet}"));
    here is my context.xml
    <Context path="/AppPortal">
    <Resource auth="Container" driverClassName="oracle.jdbc.driver.OracleDriver" m
    axActive="20" maxIdle="10" maxWait="-1" name="jdbc/dataSource" password="pswd" ty
    pe="javax.sql.DataSource" url="jdbc:oracle:thin:@servername:1521:sid" username="username"/>
    </Context>
    here is my web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"><context-param><param-name>javax.faces.STATE_SAVING_METHOD</param-name><param-value>server</param-value></context-param><context-param><param-name>javax.faces.CONFIG_FILES</param-name><param-value>/WEB-INF/navigation.xml,/WEB-INF/managed-beans.xml</param-value></context-param><context-param><param-name>com.sun.faces.validateXml</param-name><param-value>true</param-value></context-param><context-param><param-name>com.sun.faces.verifyObjects</param-name><param-value>false</param-value></context-param><filter><filter-name>UploadFilter</filter-name><filter-class>com.sun.rave.web.ui.util.UploadFilter</filter-class><init-param><description>
    The maximum allowed upload size in bytes. If this is set
    to a negative value, there is no maximum. The default
    value is 1000000.
    </description><param-name>maxSize</param-name><param-value>1000000</param-value></init-param><init-param><description>
    The size (in bytes) of an uploaded file which, if it is
    exceeded, will cause the file to be written directly to
    disk instead of stored in memory. Files smaller than or
    equal to this size will be stored in memory. The default
    value is 4096.
    </description><param-name>sizeThreshold</param-name><param-value>4096</param-value></init-param></filter><filter-mapping><filter-name>UploadFilter</filter-name><servlet-name>Faces Servlet</servlet-name></filter-mapping><servlet><servlet-name>Faces Servlet</servlet-name><servlet-class>javax.faces.webapp.FacesServlet</servlet-class><load-on-startup> 1 </load-on-startup></servlet><servlet><servlet-name>ExceptionHandlerServlet</servlet-name><servlet-class>com.sun.errorhandler.ExceptionHandler</servlet-class><init-param><param-name>errorHost</param-name><param-value>localhost</param-value></init-param><init-param><param-name>errorPort</param-name><param-value>24444</param-value></init-param></servlet><servlet><servlet-name>ThemeServlet</servlet-name><servlet-class>com.sun.rave.web.ui.theme.ThemeServlet</servlet-class></servlet><servlet-mapping><servlet-name>Faces Servlet</servlet-name><url-pattern>*.jspx</url-pattern></servlet-mapping><servlet-mapping><servlet-name>ExceptionHandlerServlet</servlet-name><url-pattern>/error/ExceptionHandler</url-pattern></servlet-mapping><servlet-mapping><servlet-name>ThemeServlet</servlet-name><url-pattern>/theme/*</url-pattern></servlet-mapping><session-config><session-timeout>5</session-timeout></session-config><welcome-file-list>
    <welcome-file>JSCreator_index.jsp</welcome-file>
    </welcome-file-list><error-page><exception-type>javax.servlet.ServletException</exception-type><location>/error/ExceptionHandler</location></error-page><error-page><exception-type>java.io.IOException</exception-type><location>/error/ExceptionHandler</location></error-page><error-page><exception-type>javax.faces.FacesException</exception-type><location>/error/ExceptionHandler</location></error-page><error-page><exception-type>com.sun.rave.web.ui.appbase.ApplicationException</exception-type><location>/error/ExceptionHandler</location></error-page><jsp-config><jsp-property-group><url-pattern>*.jspf</url-pattern><is-xml>true</is-xml></jsp-property-group></jsp-config><resource-ref><description>Creator generated DataSource Reference</description><res-ref-name>jdbc/dataSource</res-ref-name><res-type>javax.sql.DataSource</res-type><res-auth>Container</res-auth></resource-ref></web-app>
    This is really strange to me.
    Please help!

    I haven't studied your problem in detail and don't actually use Tomcat 6, but in earlier versions of Tomcat the handling of JNDI leaves a lot to be desired. If you search this forum for posts about Tomcat and JNDI, you will find some useful information.
    One thing I found was that you really need to use the context.xml file in your Meta-inf directory, putting the datasource anywhere else gets into one kind of trouble or another. I tried using server.xml, a context file for the application and the web-inf file.

  • Oracle & PHP/Apache not working togather for unicode (working individually)

    hi, i have oracle xe zend core for oracle installed.
    When i insert data through aplication express or oracle sql developer its perfect. Unicode can be inserted and viewed, but when I try to view same data through php script it display ??? signs only english character show properly.
    Seems the unicode enviourment issue with php/apache and oracle communication, as php pages display uniode correctly when not taking data from oracle. I need help
    I have gone through globlizing_oracle_php_applications.pdf and have enabled mbstring, also php charset is utf8 i also used 'AL32UTF8' in connection string.
    Also if someone can provide a small sample php script to insert or view unicode data.
    thanks

    root the php module seems to be not working as the
    displayed index.php was just text page. I tried with
    apache2 as well but the result was the same.I don't believe the apache included with Solaris 10 includes PHP support; you will probably have to re-compile it . See the README file in /etc/apache for the actual config of the distributed version.

  • Need some help with Apache vhost. Access a server on network.

    Not sure if this can be done. But here is my case:
    Me and my colleague is writing some database applications for out employer. And this server runs Apache, PHP and MySQL.
    We want to be able to access different vhosts using just the post after the server local IP-address. (I.e., 10.0.2.242:8080).
    Because we want to use the same server for different projects, but we need some way to split this. And so far, a port name is the best.
    Another way would be to use the DNS server, and redirect any request for example.com to that particular server. but since we have started to use OpenDNS, that can't be done.
    My question is, can't this be achived? If I type 10.0.2.242:8080, i can be directed to /srv/http/test_vhost, where /srv/http is the server root.
    Any reply is much apprecited. Since I could find an answear on Google.
    Birger

    MindTooth wrote:I run Windows at work. But I think I know to set a hosts different.
    IIRC, C:\Windows\System32\drivers\etc\hosts
    MindTooth wrote:(OpenDNS sucks because? Better then the DNS server located inhouse. It is slooooow. OpenDNS is faster.)
    It can screw you up because it *always* returns an IP address, which isn't so bad for web browsing, but when you're trying to do (or diagnose!) other things it can really screw with you.
    MindTooth wrote:I have tryed it. But when I added :8080 behind the IP, it would not direct to the correct folder.
    Have you uncommented this line in httpd.conf?
    #Include conf/extra/httpd-vhosts.conf

  • Apache Vhosts and SSL

    Hi all,
    Iam having this problem with Virtual Hosts and SSL.
    The subdomains work fine but the problem is when you try to connect to the one with SSL then you get "ssl_error_rx_record_too_long"
    Its not a permission error and the certificate is created with the ssh.mydomain.com as FQDN name if that is of any importance
    Listen 443
    <VirtualHost 172.16.2.250:80>
    DocumentRoot /srv/http/www
    ServerName www.mydomain.com
    </VirtualHost>
    <VirtualHost 172.16.2.250:80>
    DocumentRoot /srv/http/glype
    ServerName proxy.mydomain.com
    </VirtualHost>
    <VirtualHost 172.16.2.250:80>
    DocumentRoot /srv/http/forum
    ServerName forum.mydomain.com
    </VirtualHost>
    <VirtualHost 172.16.2.250:443>
    DocumentRoot /srv/http/ssh
    ServerName ssh.mydomain.com
    SSLEngine ON
    SSLCertificateKeyFile "/etc/httpd/certs/server.key"
    SSLCertificateFile "/etc/httpd/certs/server.crt"
    SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
    CustomLog logs/ssl_request_log \
    "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
    ProxyRequests Off
    <Proxy *>
    Order deny,allow
    Allow from all
    </Proxy>
    ProxyPass / http://localhost:8100/
    ProxyPassReverse / http://localhost:8100/
    </VirtualHost>
    Iam grateful for all the help i can recieve.

    neddie_seagoon wrote:SSL needs to run on a dedicated IP (and responds to all https requests on that IP) so you can't have multiple vhosts with SSL on the same IP. You would need to bring up more IPs and then configure your other vhosts to use them.
    fyi: recent builds of apache and openssl can now do SNI.
    http://wiki.apache.org/httpd/NameBasedSSLVHostsWithSNI
    Also, if you use wildcard certificates, and your vhosts are all subdomains of the same top level domain, then that would work too. I have done this a few times before. Apache squaks a little when it starts up, but it works fine.
    But in the general case, and when using older builds of apache, you are correct regarding the ip requirements.
    Last edited by cactus (2009-08-29 18:44:16)

  • Oracle 8i, Apache server and Intel P4

    Is somebodey out there that managed to install Oracle 8i DB and
    Apache HTTP server on computer with Intel P4 (Windows 2000 Pro,
    1GB RAM, 20GB HDD)? Do examples (JSPs, Java beans, JDBC
    connections...) on Apcahe work?
    In our case we already spent too much time with workaround's
    (from metalink) and we have no success!
    Thank you for helping us.
    Neja

    Im not sure I understand your question. Can you give me mroe
    details please?
    Thanks,
    Jay Tomlinson

  • Apache vhost/jrun access error

    I have 5 virtual hosts set up on this one box. They have the same configs and all work except for this one. When you navigate to the site for the very first time you'll get a "The connection was reset" or "This webpage is not available" error, depending on which browser you use. However, if you refresh the page the site will come up just fine and will continue to be fine unless you clear out your cache/cookies and try again.
    Below is what I'm seeing in the log file.
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_trans: r is 0x399a2bc8, server is 0x1688fd0, virtual 1
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     HOST: profiles-stage.com
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  filtering / (c:/domains/profiles/) HOST=profiles-stage.com
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  filterRequest:   no match
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_trans: sub-request so DECLINED
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_service: r is 0x399a2bc8, server is 0x1688fd0, virtual 1
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_service: found jrun-proxy-target index -1
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     HOST: profiles-stage.com
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  filtering /index.cfm (/index.cfm) HOST=profiles-stage.com
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  filterRequest:   matched *.cfm
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     cookie: <null>
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  127.0.0.1:51003 selectProxy
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  127.0.0.1:51003 proxy_handleRequest()
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_SERVICE_40 ->
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     QUERY_STRING:
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     REQUEST_METHOD: GET
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     SCRIPT_NAME: /index.cfm
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     PATH_INFO: <null>
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     REMOTE_ADDR: 10.10.33.244
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     REMOTE_ADDR: 10.10.33.244
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     SERVER_NAME: profiles-stage.com
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     SERVER_PORT: 80
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     SERVER_PROTOCOL: HTTP/1.1
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     PATH_TRANSLATED: <null>
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     SERVER_PORT_SECURE: 0
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     REMOTE_USER: <null>
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     AUTH_TYPE: <null>
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  127.0.0.1:51003 pooled socket [7424] returned
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 672/672/672
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_HEADER <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 15/15/15
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     Acrobat-Version: <null>
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_REALPATH <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 10/10/10
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     ap_escape_uri(/index.cfm) = /index.cfm
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_trans: sub-request so DECLINED
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     getRealPath(/index.cfm) = C:/domains/profiles/index.cfm
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 33/33/33
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_REALPATH <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 10/10/10
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     ap_escape_uri(/index.htm) = /index.htm
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_trans: sub-request so DECLINED
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     getRealPath(/index.htm) = C:/domains/profiles/index.htm
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 33/33/33
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_HEADER <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 7/7/7
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     GETHOST: <null>
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_HEADER <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 5/5/5
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     GETID: <null>
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_HEADER <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 7/7/7
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     GETCODE: <null>
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_HEADER <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 8/8/8
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     GETTITLE: <null>
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_HEADER <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 9/9/9
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     PATH_INFO: <null>
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_REALPATH <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 30/30/30
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     ap_escape_uri(/assets/shared/styles/main.css) = /assets/shared/styles/main.css
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_trans: sub-request so DECLINED
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     getRealPath(/assets/shared/styles/main.css) = C:/domains/profiles/assets/shared/styles/main.css
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 53/53/53
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_REALPATH <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 39/39/39
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     ap_escape_uri(/assets/skins/fullsail/styles/theme.css) = /assets/skins/fullsail/styles/theme.css
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_trans: sub-request so DECLINED
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     getRealPath(/assets/skins/fullsail/styles/theme.css) = C:/domains/profiles/assets/skins/fullsail/styles/theme.css
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 62/62/62
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_REALPATH <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 37/37/37
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     ap_escape_uri(/assets/shared/scripts/initFirebug.js) = /assets/shared/scripts/initFirebug.js
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_trans: sub-request so DECLINED
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     getRealPath(/assets/shared/scripts/initFirebug.js) = C:/domains/profiles/assets/shared/scripts/initFirebug.js
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 60/60/60
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_REALPATH <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 45/45/45
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     ap_escape_uri(/assets/shared/scripts/jQuery/jquery-1.4.2.js) = /assets/shared/scripts/jQuery/jquery-1.4.2.js
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_trans: sub-request so DECLINED
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     getRealPath(/assets/shared/scripts/jQuery/jquery-1.4.2.js) = C:/domains/profiles/assets/shared/scripts/jQuery/jquery-1.4.2.js
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 68/68/68
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_REALPATH <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 35/35/35
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     ap_escape_uri(/assets/shared/scripts/swfobject.js) = /assets/shared/scripts/swfobject.js
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_trans: sub-request so DECLINED
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     getRealPath(/assets/shared/scripts/swfobject.js) = C:/domains/profiles/assets/shared/scripts/swfobject.js
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 58/58/58
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_REALPATH <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 44/44/44
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     ap_escape_uri(/assets/shared/scripts/jQuery/f4vLightbox.js) = /assets/shared/scripts/jQuery/f4vLightbox.js
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_trans: sub-request so DECLINED
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     getRealPath(/assets/shared/scripts/jQuery/f4vLightbox.js) = C:/domains/profiles/assets/shared/scripts/jQuery/f4vLightbox.js
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 67/67/67
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_REALPATH <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 48/48/48
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     ap_escape_uri(/assets/shared/scripts/jQuery/longboxLightbox.js) = /assets/shared/scripts/jQuery/longboxLightbox.js
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_trans: sub-request so DECLINED
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     getRealPath(/assets/shared/scripts/jQuery/longboxLightbox.js) = C:/domains/profiles/assets/shared/scripts/jQuery/longboxLightbox.js
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 71/71/71
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_REALPATH <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 41/41/41
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     ap_escape_uri(/assets/shared/scripts/jQuery/profiles.js) = /assets/shared/scripts/jQuery/profiles.js
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_trans: sub-request so DECLINED
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     getRealPath(/assets/shared/scripts/jQuery/profiles.js) = C:/domains/profiles/assets/shared/scripts/jQuery/profiles.js
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 64/64/64
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_REALPATH <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 46/46/46
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     ap_escape_uri(/jslib/jQuery/ui/jquery-ui-1.7.1.custom.min.js) = /jslib/jQuery/ui/jquery-ui-1.7.1.custom.min.js
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_trans: sub-request so DECLINED
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     getRealPath(/jslib/jQuery/ui/jquery-ui-1.7.1.custom.min.js) = C:/domains/globalmappings/jslib/jQuery/ui/jquery-ui-1.7.1.custom.min.js
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 75/75/75
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_REALPATH <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 34/34/34
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     ap_escape_uri(/jslib/jQuery/ui/orange/ui.all.css) = /jslib/jQuery/ui/orange/ui.all.css
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_trans: sub-request so DECLINED
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     getRealPath(/jslib/jQuery/ui/orange/ui.all.css) = C:/domains/globalmappings/jslib/jQuery/ui/orange/ui.all.css
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 63/63/63
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_REALPATH <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 33/33/33
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     ap_escape_uri(/index.cfm?fuseaction=site.xfa2js) = /index.cfm%3ffuseaction=site.xfa2js
    [Fri Aug 06 14:01:04 2010] [error] [client 10.10.33.244] (20025)The given path contained wildcard characters: access to /index.cfm?fuseaction=site.xfa2js failed
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     getRealPath(/index.cfm?fuseaction=site.xfa2js) = C:/domains/profiles/index.cfm?fuseaction=site.xfa2js
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 56/56/56
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_REALPATH <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 31/31/31
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     ap_escape_uri(/assets/shared/styles/login.css) = /assets/shared/styles/login.css
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_trans: sub-request so DECLINED
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     getRealPath(/assets/shared/styles/login.css) = C:/domains/profiles/assets/shared/styles/login.css
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 54/54/54
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_REALPATH <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 48/48/48
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     ap_escape_uri(/assets/shared/scripts/jQuery/jquery.validate.js) = /assets/shared/scripts/jQuery/jquery.validate.js
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_trans: sub-request so DECLINED
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     getRealPath(/assets/shared/scripts/jQuery/jquery.validate.js) = C:/domains/profiles/assets/shared/scripts/jQuery/jquery.validate.js
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 71/71/71
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_REALPATH <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 35/35/35
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     ap_escape_uri(/assets/shared/scripts/loginUser.js) = /assets/shared/scripts/loginUser.js
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_trans: sub-request so DECLINED
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     getRealPath(/assets/shared/scripts/loginUser.js) = C:/domains/profiles/assets/shared/scripts/loginUser.js
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 58/58/58
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_HEADER <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 17/17/17
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     CCVLEFTCOLCONTENT: <null>
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_HEADER <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 18/18/18
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     CCVRIGHTCOLCONTENT: <null>
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_HEADER <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 14/14/14
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     CCVMAINCONTENT: <null>
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_HEADER <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 9/9/9
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     CCVHEADER: <null>
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_HEADER <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 9/9/9
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     CCVFOOTER: <null>
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_GET_HEADER <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 15/15/15
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     CCVFRAMECONTENT: <null>
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  sent/avail/result 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_PUT_STATUS <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 2/2/2
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]    200 OK
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_PUT_HEADER_VALUE <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 10/10/10
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 54/54/54
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     adding cookie Set-Cookie: CFID=2019;expires=Sun, 29-Jul-2040 18:01:04 GMT;path=/
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_PUT_HEADER_VALUE <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 10/10/10
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 61/61/61
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     adding cookie Set-Cookie: CFTOKEN=74897000;expires=Sun, 29-Jul-2040 18:01:04 GMT;path=/
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_PUT_HEADER_VALUE <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 10/10/10
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 54/54/54
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     adding cookie Set-Cookie: JSESSIONID=a6301cdac9713abd66df75210207329e1978;path=/
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_PUT_HEADER_VALUE <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 6/6/6
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 8/8/8
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     table_set(pragma, no-cache)
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_PUT_HEADER_VALUE <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 7/7/7
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 29/29/29
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     table_set(expires, Fri, 06 Aug 2010 18:01:04 GMT)
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_PUT_HEADER_VALUE <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 13/13/13
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 35/35/35
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     table_set(cache-control, no-cache, no-store, must-revalidate)
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_PUT_HEADER_VALUE <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 12/12/12
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 24/24/24
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     request_rec->content_type = text/html; charset=UTF-8
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_PUT_CLIENT <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4673/4673/4673
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     ap_send_http_header()
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     ap_rwrite(4673 bytes)
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  read/len/total 4/4/4
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  PROXY_FINISH <- [7424]
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  127.0.0.1:51003 returned socket [7424] to pool
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_service: OK
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_trans: r is 0x399a8be0, server is 0x1688fd0, virtual 1
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     HOST: profiles-stage.com
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  filtering /favicon.ico (c:/domains/profiles/favicon.ico) HOST=profiles-stage.com
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  filterRequest:   no match
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_service: r is 0x399a8be0, server is 0x1688fd0, virtual 1
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_service: no handler, return DECLINED
    [Fri Aug 06 14:01:04 2010] [error] [client 10.10.33.244] File does not exist: C:/domains/profiles/favicon.ico
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_trans: r is 0x399aa750, server is 0x1688fd0, virtual 1
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]     HOST: profiles-stage.com
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  filtering /assets/skins/errorpages/404.html (c:/domains/profiles/assets/skins/errorpages/404.html) HOST=profiles-stage.com
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  filterRequest:   no match
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_service: r is 0x399aa750, server is 0x1688fd0, virtual 1
    [Fri Aug 06 14:01:04 2010] [notice] jrApache[8320: 47920]  jrun_service: no handler, return DECLINED
    And the Apache config for the site.
    <Directory "C:/domains/profiles">
        Options FollowSymLinks
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
    <VirtualHost x.x.x.x:80>
        DocumentRoot "C:/domains/profiles"
        ServerName profiles-stage.com:80
        JRunConfig Apialloc false
        JRunConfig Verbose true
        JRunConfig Serverstore "C:/JRun4/lib/wsconfig/profiles/jrunserver.store"
        JRunConfig Bootstrap 127.0.0.1:51003
        ErrorLog "|bin/rotatelogs C:/weblogs/domains/profiles/profiles-stage.com-error_log.%Y-%m-%d-%H_%M_%S 86400"
        CustomLog "|bin/rotatelogs C:/weblogs/domains/profiles/profiles-stage.com-access_log.%Y-%m-%d-%H_%M_%S 30M" combined
    </VirtualHost>
    Any ideas on why this one site would have this problem yet none of the others do?
    Thanks for any help!

    If you need to use virtual hosts in order to test your sites (vs. just setting up subdirectories under the default web root), then you need to decide which way the server will resolve the site - offhand, I can think of DNS (hostname or domain name), IP address, or port.
    If you want to have the sites be reachable by a regular domain name, you'll need to have local or remote DNS set up for them mapped to that server (you may be able to fake this with the /etc/hosts file, but I haven't tested whether that works with host headers on the server side).
    If you can assign additional IPs to the machine, you could then have each bound to a different vhost, although that's a little complicated just for testing sites. Using independent ports may be the most flexible option for you - setting up the first site to bind to 16081, the next to 16082, etc. The VirtualHost entry is httpd.conf would be something like:
    <VirtualHost *:16081>
    In addition to specifying the port in the httpd.conf, you'll also need to open the port on the firewall, if it's running, just as you must have done for 16080.
    More details and options for VirtualHost configuration is available in the Apache documentation.
    PowerBook G4, et al.   Mac OS X (10.4.7)  

  • Oracle HTTP (Apache) Autoload problem Please help

    Dear all,
    I just finished install E-Suite 11i on SuEL9 it's work fine but after reboot Oracle Database has load but not for Apache I don't know how to start application.
    I use VIS Database for study. Plese help
    Tony

    Did you run the start up script in common_top/admin/scripts/adstrtall?
    if you run post the displayed error

  • Oracle-Java-Apache-Tomcat-JK connector configuration help...

    Windows 7 Ultimate 64-bit
    Oracle 12c
    Java 8
    Apache HTTP server 2.4.10
    Tomcat 8.0.15
    JK Connector 1.2.40
    Here are the main configuration files httpd.conf, mod_jk.conf, server.xml, and workers.properties.
    When I browse to a .jsp file, it appears to be read as html, thus not reading <jsp:include> statements as such.
    Please suggest minimum configuration.
    httpd.conf
    Define SRVROOT "/apache"
    ServerRoot "${SRVROOT}"
    Listen 80
    LoadModule actions_module modules/mod_actions.so
    LoadModule alias_module modules/mod_alias.so
    LoadModule allowmethods_module modules/mod_allowmethods.so
    LoadModule asis_module modules/mod_asis.so
    LoadModule auth_basic_module modules/mod_auth_basic.so
    LoadModule authn_core_module modules/mod_authn_core.so
    LoadModule authn_file_module modules/mod_authn_file.so
    LoadModule authz_core_module modules/mod_authz_core.so
    LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
    LoadModule authz_host_module modules/mod_authz_host.so
    LoadModule authz_user_module modules/mod_authz_user.so
    LoadModule autoindex_module modules/mod_autoindex.so
    LoadModule cgi_module modules/mod_cgi.so
    LoadModule dir_module modules/mod_dir.so
    LoadModule env_module modules/mod_env.so
    LoadModule include_module modules/mod_include.so
    LoadModule isapi_module modules/mod_isapi.so
    LoadModule log_config_module modules/mod_log_config.so
    LoadModule mime_module modules/mod_mime.so
    LoadModule negotiation_module modules/mod_negotiation.so
    LoadModule setenvif_module modules/mod_setenvif.so
    LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
    LoadModule ssl_module modules/mod_ssl.so
    ServerName localhost:80
    #experimental section starts here
    #experimental section ends here
    # Virtual hosts
    NameVirtualHost *
    Include conf/mod_jk.conf
    mod_jk.conf
    LoadModule jk_module modules/mod_jk.so
    JkWorkersFile "c:/tomcat/conf/jk/workers.properties"
    JkMount /servlet/*  ajp13
    JkMount /*.jsp  ajp13
    <VirtualHost *>
    ServerName om1001001.omnisocial.com
    DocumentRoot "c:/data/fxality/java001"
    </VirtualHost>
    <VirtualHost *>
    ServerName om1001002.omnisocial.com
    DocumentRoot "c:/data/fxality/java002"
    </VirtualHost>
    <VirtualHost *>
    ServerName om1001003.omnisocial.com
    DocumentRoot "c:/data/fxality/java003"
    </VirtualHost>
    server.xml
    <?xml version='1.0' encoding='utf-8'?>
    <Server port="8005" shutdown="SHUTDOWN">
    <GlobalNamingResources>
    <Resource name="UserDatabase" auth="Container"
    type="org.apache.catalina.UserDatabase"
    description="User database that can be updated and saved"
    factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
    pathname="conf/tomcat-users.xml" />
    </GlobalNamingResources>
    <Service name="Catalina">
    <Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />
    <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
    <Engine name="Catalina" defaultHost="localhost">
    <Realm className="org.apache.catalina.realm.UserDatabaseRealm" resourceName="UserDatabase"/></Realm>
    <Host name="localhost"  appBase="webapps"/>
    <Host name="om1001001.omnisocial.com" appBase="c:/data/fxality/java001">
    <Context path="" docBase=""></Context>
    </Host>
    <Host name="om1001002.omnisocial.com" appBase="c:/data/fxality/java002">
    <Context path="" docBase=""></Context>
    </Host>
    <Host name="om1001003.omnisocial.com" appBase="c:/data/fxality/java003">
    <Context path="" docBase=""></Context>
    </Host>
    </Engine>
    </Service>
    </Server>
    workers.properties
    # BEGIN workers.properties
    # Definition for Ajp13 worker
    worker.list=ajp13
    worker.ajp13.type=ajp13
    worker.ajp13.host=localhost
    worker.ajp13.port=8009
    # END workers.properties

    I haven't studied your problem in detail and don't actually use Tomcat 6, but in earlier versions of Tomcat the handling of JNDI leaves a lot to be desired. If you search this forum for posts about Tomcat and JNDI, you will find some useful information.
    One thing I found was that you really need to use the context.xml file in your Meta-inf directory, putting the datasource anywhere else gets into one kind of trouble or another. I tried using server.xml, a context file for the application and the web-inf file.

  • Time Machine and apache vhosts

    I just upgraded from Leopard to snow leopard, I had backed up using time machine before I did the upgrade. When I started using my mac it was obvious that the httpd-vhosts.con file had been overwritten (why !) anyway, Does anyone no how I can recover this file from time machine.

    What do you see when you enter Time Machine from within mail?
    Also, do you happen to have an external display? I have one and I think that causes extra issues.
    Do you see a stack of past inboxes, and for each inboxes do you actually see emails listed?
    How many email accounts do you have? And what type are they - Gmail, etc.?
    It may be a corruption issue on my individual installation. Or it may be that we have different numbers and types of accounts. So it would be useful to compare.
    I have 4 Gmail accounts, 2 "ordinary cPanel" IMAP accounts and 1 iCloud account. So 7 in all.
    Thanks,
    doug

  • Oracle 8.1.6 + PHP 5.2.0 + APACHE 2.2.2

    I have lot of problems trying to make the Oracle+php+Apache work... I really need help.
    Scenario:
    - Oracle 8.1.6 (I know.. is old..no other alternative) in a Unix Server
    - Apache 2.2.2 and PHP 5.2.0 in a WXP SP2 Box
    - Oracle Client 8.0.5 Installed in the same WXP Box. (Oracle Instant Client doesn't work... not supported against my Oracle 8.1.6 version)
    Problem
    OCI8 doesn't work at all.... I can configure Oci8 extension in PHP but I can never connect to Oracle... aparently for compatibility with my DB version.
    Any Ideas about how to solve it?
    mikosiko at adelphia dot net

    hi Jer and others. ummm well... bit confuse so probably some b/ground of my scenario here. the db is 8.0.5 on solaris. we have a small redhat x86 box which php being compiled by the previous guy against oci8 (i dont have much info on that oci8, like - the age of that distribution, when it was released/acquired, from where it was get)
    then (recently) i have to setup an redhat4 x86_64 machine (which suppose to replace the above machine). understood that instantclient is the way to go, i proceed with that only to find out that it doesnt support db 8.x. so i thought probably if i drop instantclient and go for oci8 then i should get the old machine replaced. that's what i really mean earlier - where can i get the last release oci8?
    anyway by the intense pressure i get, i managed to find in our archieve the oci8 zip file used for the above mentioned (old) machine. reinstall the new machine to just x86 o/s (because the oci8 having problem to be compiled in x86_64 - i dont have much time to deal with it), i finally got the whole thing works. i guess i have to stay this way until the 8.x db upgraded to 10g (in 2 months time) and only after that revert the o/s to x86_64 and again play with the instantclient.
    love to hear comment from others on what i've did as well the answer to the question where can i get the last released oci8 (including the 64bit if available)? tqvm

  • Can I change from Embedded PL/SQL Gateway to Oracle HTTP Server/Apache?

    Hi everyone
    Can I change a running installation of Oracle 10.2.0 Application Express 3.2.1.00.10 to move away from the Embedded PL/SQL Gateway on to the Oracle HTTP Apache server? I'd like the change to be as transparent as possible to avoid an outage if I can. Do I need to reinstall everything and just import a backup or is there a way to switch between the http servers? I couldn't find anything on "switching" in the User's guide, so I was hoping one of you may have successfully tried this.
    Many thanks for your help!
    m.

    It should be straight forward with a very small downtime. Test on dev system before interrupting the prod system.
    1. Install OHS
    2. Configure OHS
    3. Configure the mod_plsql plugin
    4. Stop the Embedded PL/SQL Gateway
    Let the users know about the new URL.
    All the above steps are documented in the docs.
    -Andy

Maybe you are looking for

  • Desktop manager for OS10

    How do i use desktop manager for my OS 10 phone?

  • Creating Sap Crystal Report Through Oracle Stored Procedure Packages

    Hi,    1.How we can create crystal report through oracle stored procedure packages pls tell me the steps through adding command then tell me the syntax what should i write in command to call the stored procedure packages or if have some other option

  • I am unable to download the new version of Firefox.

    I click download, but no icon shows up on screen to be dragged into the applications folder. An icon does appear in downloads but not the Orange Firefox icon, just the metal one. What's my problem?

  • My brush cursor disappear when i zoom in

    Hi, My Photoshop has been upgraded to CS5.5 now. When I used my circle brush tool before, I can see the size of my brush in a circle so I know where to paint. Now this circle is disappearing when I use my brush tool when zooming in the picture. I did

  • Just a note to let you know about the Refurbished iPhones....

    Good morning. I'm sure a number of you will not agree but..... I purchase all my Apple products refurbished and have never had a single days' problem with anything from a laptop to a Tower and now, the same with my iPhone. As soon as it went on Refur