Apache2 problems

I recently attempted to enable cgi and php on my macbooks local webserver. In attempting to do this, my entire server stopped working. When I try to access the local site, I get the following error:
Though the site seems valid, the browser was unable to establish a connection.
below is my httpd.conf file, the only thing I modified (I stupidly did not create a backup), and thus what I am assuming is causing my problems. How do I fix my server?
# This is the main Apache HTTP server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:<a class="jive-link-external-small" href="http://">http://httpd.apache.org/docs/2.2> for detailed information.
# In particular, see
# <URL:<a class="jive-link-external-small" href="http://">http://httpd.apache.org/docs/2.2/mod/directives.html>
# for a discussion of each configuration directive.
# Do NOT simply read the instructions in here without understanding
# what they do. They're here only as hints or reminders. If you are unsure
# consult the online docs. You have been warned.
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path. If the filenames do not begin
# with "/", the value of ServerRoot is prepended -- so "/private/var/log/apache2/foo.log"
# with ServerRoot set to "/usr" will be interpreted by the
# server as "/usr//private/var/log/apache2/foo.log".
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
# Do not add a slash at the end of the directory path. If you point
# ServerRoot at a non-local disk, be sure to point the LockFile directive
# at a local disk. If you wish to share the same ServerRoot for multiple
# httpd daemons, you will need to change at least LockFile and PidFile.
ServerRoot "/usr"
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#Listen 12.34.56.78:80
Listen 80
# Dynamic Shared Object (DSO) Support
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available before they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
# Example:
# LoadModule foo_module modules/mod_foo.so
LoadModule authnfilemodule libexec/apache2/modauthnfile.so
LoadModule authndbmmodule libexec/apache2/modauthndbm.so
LoadModule authnanonmodule libexec/apache2/modauthnanon.so
LoadModule authndbdmodule libexec/apache2/modauthndbd.so
LoadModule authndefaultmodule libexec/apache2/modauthndefault.so
LoadModule authzhostmodule libexec/apache2/modauthzhost.so
LoadModule authzgroupfilemodule libexec/apache2/modauthzgroupfile.so
LoadModule authzusermodule libexec/apache2/modauthzuser.so
LoadModule authzdbmmodule libexec/apache2/modauthzdbm.so
LoadModule authzownermodule libexec/apache2/modauthzowner.so
LoadModule authzdefaultmodule libexec/apache2/modauthzdefault.so
LoadModule authbasicmodule libexec/apache2/modauthbasic.so
LoadModule authdigestmodule libexec/apache2/modauthdigest.so
LoadModule cache_module libexec/apache2/mod_cache.so
LoadModule diskcachemodule libexec/apache2/moddiskcache.so
LoadModule memcachemodule libexec/apache2/modmemcache.so
LoadModule dbd_module libexec/apache2/mod_dbd.so
LoadModule dumpio_module libexec/apache2/mod_dumpio.so
LoadModule extfiltermodule libexec/apache2/modextfilter.so
LoadModule include_module libexec/apache2/mod_include.so
LoadModule filter_module libexec/apache2/mod_filter.so
LoadModule deflate_module libexec/apache2/mod_deflate.so
LoadModule logconfigmodule libexec/apache2/modlogconfig.so
LoadModule logforensicmodule libexec/apache2/modlogforensic.so
LoadModule logio_module libexec/apache2/mod_logio.so
LoadModule env_module libexec/apache2/mod_env.so
LoadModule mimemagicmodule libexec/apache2/modmimemagic.so
LoadModule cernmetamodule libexec/apache2/modcernmeta.so
LoadModule expires_module libexec/apache2/mod_expires.so
LoadModule headers_module libexec/apache2/mod_headers.so
LoadModule ident_module libexec/apache2/mod_ident.so
LoadModule usertrack_module libexec/apache2/mod_usertrack.so
#LoadModule uniqueidmodule libexec/apache2/moduniqueid.so
LoadModule setenvif_module libexec/apache2/mod_setenvif.so
LoadModule version_module libexec/apache2/mod_version.so
LoadModule proxy_module libexec/apache2/mod_proxy.so
LoadModule proxyconnectmodule libexec/apache2/modproxyconnect.so
LoadModule proxyftpmodule libexec/apache2/modproxyftp.so
LoadModule proxyhttpmodule libexec/apache2/modproxyhttp.so
LoadModule proxyajpmodule libexec/apache2/modproxyajp.so
LoadModule proxybalancermodule libexec/apache2/modproxybalancer.so
LoadModule ssl_module libexec/apache2/mod_ssl.so
LoadModule mime_module libexec/apache2/mod_mime.so
LoadModule dav_module libexec/apache2/mod_dav.so
LoadModule status_module libexec/apache2/mod_status.so
LoadModule autoindex_module libexec/apache2/mod_autoindex.so
LoadModule asis_module libexec/apache2/mod_asis.so
LoadModule info_module libexec/apache2/mod_info.so
LoadModule cgi_module libexec/apache2/mod_cgi.so
LoadModule davfsmodule libexec/apache2/moddavfs.so
LoadModule vhostaliasmodule libexec/apache2/modvhostalias.so
LoadModule negotiation_module libexec/apache2/mod_negotiation.so
LoadModule dir_module libexec/apache2/mod_dir.so
LoadModule imagemap_module libexec/apache2/mod_imagemap.so
LoadModule actions_module libexec/apache2/mod_actions.so
LoadModule speling_module libexec/apache2/mod_speling.so
LoadModule userdir_module libexec/apache2/mod_userdir.so
LoadModule alias_module libexec/apache2/mod_alias.so
LoadModule rewrite_module libexec/apache2/mod_rewrite.so
LoadModule bonjour_module libexec/apache2/mod_bonjour.so
LoadModule php5_module libexec/apache2/libphp5.so
LoadModule fastcgi_module libexec/apache2/mod_fastcgi.so
<IfModule !mpmnetwaremodule>
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
# User/Group: The name (or #number) of the user/group to run httpd as.
# It is usually good practice to create a dedicated user and group for
# running httpd, as with most system services.
User www
Group www
</IfModule>
# 'Main' server configuration
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# <VirtualHost> definition. These values also provide defaults for
# any <VirtualHost> containers you may define later in the file.
# All of these directives may appear inside <VirtualHost> containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
# ServerAdmin: Your address, where problems with the server should be
# e-mailed. This address appears on some server-generated pages, such
# as error documents. e.g. [email protected]
ServerAdmin [email protected]
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
# If your host doesn't have a registered DNS name, enter its IP address here.
#ServerName www.example.com:80
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
DocumentRoot "/Library/WebServer/Documents"
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
# First, we configure the "default" to be a very restrictive set of
# features.
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
# This should be changed to whatever you set DocumentRoot to.
<Directory "/Library/WebServer/Documents">
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
# Note that "MultiViews" must be named explicitly --- "Options All"
# doesn't give it to you.
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
Options Indexes FollowSymLinks MultiViews
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
AllowOverride None
# Controls who can get stuff from this server.
Order allow,deny
Allow from all
</Directory>
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
<IfModule dir_module>
DirectoryIndex index.html index.htm index.php index.pl index.cgi
</IfModule>
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
<FilesMatch "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
Order allow,deny
Deny from all
Satisfy All
</FilesMatch>
# Apple specific filesystem protection.
<Files "rsrc">
Order allow,deny
Deny from all
Satisfy All
</Files>
<DirectoryMatch ".*\.\.namedfork">
Order allow,deny
Deny from all
Satisfy All
</DirectoryMatch>
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here. If you do define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
ErrorLog /private/var/log/apache2/error_log
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
<IfModule logconfigmodule>
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
<IfModule logio_module>
# You need to enable mod_logio.c to use %I and %O
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
# The location and format of the access logfile (Common Logfile Format).
# If you do not define any access logfiles within a <VirtualHost>
# container, they will be logged here. Contrariwise, if you do
# define per-<VirtualHost> access logfiles, transactions will be
# logged therein and not in this file.
CustomLog /private/var/log/apache2/access_log common
# If you prefer a logfile with access, agent, and referer information
# (Combined Logfile Format) you can use the following directive.
#CustomLog /private/var/log/apache2/access_log combined
</IfModule>
<IfModule alias_module>
# Redirect: Allows you to tell clients about documents that used to
# exist in your server's namespace, but do not anymore. The client
# will make a new request for the document at its new location.
# Example:
# Redirect permanent /foo http://www.example.com/bar
# Alias: Maps web paths into filesystem paths and is used to
# access content that does not live under the DocumentRoot.
# Example:
# Alias /webpath /full/filesystem/path
# If you include a trailing / on /webpath then the server will
# require it to be present in the URL. You will also likely
# need to provide a <Directory> section to allow access to
# the filesystem path.
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the target directory are treated as applications and
# run by the server when requested rather than as documents sent to the
# client. The same rules about trailing "/" apply to ScriptAlias
# directives as to Alias.
ScriptAliasMatch ^/cgi-bin/((?!(?i:webobjects)).*$) "/Library/WebServer/CGI-Executables/$1"
</IfModule>
<IfModule cgid_module>
# ScriptSock: On threaded servers, designate the path to the UNIX
# socket used to communicate with the CGI daemon of mod_cgid.
#Scriptsock /private/var/run/cgisock
</IfModule>
# "/Library/WebServer/CGI-Executables" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
<Directory "/Library/WebServer/CGI-Executables">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
# DefaultType: the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensions.
# If your server contains mostly text or HTML documents, "text/plain" is
# a good value. If most of your content is binary, such as applications
# or images, you may want to use "application/octet-stream" instead to
# keep browsers from trying to display binary files as though they are
# text.
DefaultType text/plain
<IfModule mime_module>
# TypesConfig points to the file containing the list of mappings from
# filename extension to MIME-type.
TypesConfig /private/etc/apache2/mime.types
# AddType allows you to add to or override the MIME configuration
# file specified in TypesConfig for specific file types.
#AddType application/x-gzip .tgz
# AddEncoding allows you to have certain browsers uncompress
# information on the fly. Note: Not all browsers support this.
#AddEncoding x-compress .Z
#AddEncoding x-gzip .gz .tgz
# If the AddEncoding directives above are commented-out, then you
# probably should define those extensions to indicate media types:
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
# AddHandler allows you to map certain file extensions to "handlers":
# actions unrelated to filetype. These can be either built into the server
# or added with the Action directive (see below)
# To use CGI scripts outside of ScriptAliased directories:
# (You will also need to add "ExecCGI" to the "Options" directive.)
AddHandler cgi-script .cgi .pl
Options ExecCGI
# For type maps (negotiated resources):
#AddHandler type-map var
# Filters allow you to process content before it is sent to the client.
# To parse .shtml files for server-side includes (SSI):
# (You will also need to add "Includes" to the "Options" directive.)
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
</IfModule>
# The modmimemagic module allows the server to use various hints from the
# contents of the file itself to determine its type. The MIMEMagicFile
# directive tells the module where the hint definitions are located.
#MIMEMagicFile /private/etc/apache2/magic
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.example.com/subscription_info.html
# EnableMMAP and EnableSendfile: On systems that support it,
# memory-mapping or the sendfile syscall is used to deliver
# files. This usually improves server performance, but must
# be turned off when serving from networked-mounted
# filesystems or if support for these functions is otherwise
# broken on your system.
#EnableMMAP off
#EnableSendfile off
# Supplemental configuration
# The configuration files in the /private/etc/apache2/extra/ directory can be
# included to add extra features or to modify the default configuration of
# the server, or you may simply copy their contents here and change as
# necessary.
# Server-pool management (MPM specific)
Include /private/etc/apache2/extra/httpd-mpm.conf
# Multi-language error messages
#Include /private/etc/apache2/extra/httpd-multilang-errordoc.conf
# Fancy directory listings
Include /private/etc/apache2/extra/httpd-autoindex.conf
# Language settings
Include /private/etc/apache2/extra/httpd-languages.conf
# User home directories
Include /private/etc/apache2/extra/httpd-userdir.conf
# Real-time info on requests and configuration
#Include /private/etc/apache2/extra/httpd-info.conf
# Virtual hosts
Include /private/etc/apache2/extra/httpd-vhosts.conf
# Local access to the Apache HTTP Server Manual
Include /private/etc/apache2/extra/httpd-manual.conf
# Distributed authoring and versioning (WebDAV)
#Include /private/etc/apache2/extra/httpd-dav.conf
# Various default settings
#Include /private/etc/apache2/extra/httpd-default.conf
# Secure (SSL/TLS) connections
Include /private/etc/apache2/extra/httpd-ssl.conf
# Note: The following must must be present to support
# starting without SSL on platforms with no /dev/random equivalent
# but a statically compiled-in mod_ssl.
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
Include /private/etc/apache2/other/*.conf

Given your inexperience with apache, I think you would be better off restoring your apache configuration and then asking questions about how to set up php. You don't need to set up cgi, really, but that's a conversation I can't have right now.
The first thing I want to make sure is that you are using a text editor like the free and very useful TextWrangler to edit your config files. If that's the case, you can download a copy of the original httpd.conf file from my server and replace your broken one.
Click Here to Begin Download:
http://secure.dreamyskies.net/shimmering/httpd.orig.conf.zip
good luck.
<Edited by Moderator>

Similar Messages

  • Anyone manage to get ColdFusion to work under Apache on OS X 10.10 Yosemite?

    Hi all I'm having great difficulty getting ColdFusion10 to work under Apache with OS X 10.10 Yosemite.
    Here is a description of what I've faced and a little of what I've done to solve my problem
    Problem 1
    Apache httpd.conf file gets messed up
    Solution: copy original httpd.conf file from /etc/apache2/original/ to /etc/apache2/
    Problem 2
    No Java Virtual Machine is installed!
    Solution: install Java (version 6 or 7 is better) you may only be able to install version 8
    Problem 3
    ColdFusion doesn't know where your Java installation is so find and update your ColdFusion configuration files
    /Applications/ColdFusion10/cfusion/bin/jvm.config
    /Applications/ColdFusion10/cfusion/bin/coldfusion
    /Applications/ColdFusion10/cfusion/runtime/bin/wsconfig_jvm.config
    change the source to whatever your current Java is and where it's located
    for example if you have version 7 installed:
    /Library/Java/JavaVirtualMachines/jdk1.7.0_45.jdk/Contents/Home
    if you have version 8 installed:
    /Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk/Contents/Home
    Problem 4
    INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: YOUR PATH HERE!
    Solution:Still working on this one!

    I think you should try Pacifist http://www.charlessoft.com/
    It's a .pkg installer for OS X, I used it several times to install software that Apple's Installer can't install. After installing Xsan 1.0 from your CD, just launch Apple's software update to upgrade to version 1.3. I think it should work (I didn't try it with Xsan, but this procedure works with other software).
    Khafaga

  • LaCie Raid manager unable to access localhost:8845 in OS X server Yosemite

    I am running OS X server Yosemite. I have an external LaCie RAID Storage box. The RAID manager software that comes with the LaCie communicates settings by accessing the hardware via a web browser (ie. localhost:8845). I am able to access this port on my macbook pro just running OS X Yosemite but when I plug the hardware into my OS X server, that access is blocked.
    Can anyone provide me with instructions to allow browser connection to the localhost.  I assume it is an apache2 problem. But maybe that is just my guess.
    Thank you in advance.

    Hi,
    Got a reply from LaCie, they are aware of this problem and are working on a permanent fix. In the meanwhile I got a zip file, which contained a terminal.command file from which I have posted the code here, you need to save that file as an executable so you can run it.
    As always create a backup first, goodluck!
    #!/bin/sh
    if sw_vers -productVersion|grep 10.10 >/dev/null
    then
    `cat << EOF > ~/lrm.conf
    LoadModule php5_module /usr/share/lrm/apacheForOs10/modules/libphp5.so
    Listen 8845
    <VirtualHost *:8845>
    ServerName localhost:8845
    DocumentRoot "/usr/share/lrm/root"
    ServerAdmin [email protected]
    ErrorLog "/usr/share/lrm/apacheForOs10/logs/error_log"
    CustomLog "/usr/share/lrm/apacheForOs10/logs/error_log" common
    LogLevel warn
    TraceEnable off
    UserDir disabled
    </VirtualHost>
    <Directory "/usr/share/lrm/root">
        Options FollowSymLinks Multiviews
        MultiviewsMatch Any
        AllowOverride None
        Require all granted
    </Directory>
    AliasMatch /MSU/(.*) "/usr/share/lrm/root/$1"
    AliasMatch /MSu/(.*) "/usr/share/lrm/root/$1"
    AliasMatch /Msu/(.*) "/usr/share/lrm/root/$1"
    AliasMatch /msu/(.*) "/usr/share/lrm/root/$1"
    EOF`
    else
    if sw_vers -productVersion|grep 10.9 >/dev/null
    then
    `cat << EOF > ~/lrm.conf
    LoadModule php5_module /usr/share/lrm/apacheForOs9/modules/libphp5.so
    Listen 8845
    <VirtualHost *:8845>
    ServerName localhost:8845
    DocumentRoot "/usr/share/lrm/root"
    ServerAdmin [email protected]
    ErrorLog "/usr/share/lrm/apacheForOs10/logs/error_log"
    CustomLog "/usr/share/lrm/apacheForOs10/logs/error_log" common
    LogLevel warn
    TraceEnable off
    UserDir disabled
    </VirtualHost>
    <Directory "/usr/share/lrm/root">
        Options Indexes FollowSymLinks Multiviews
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
    AliasMatch /MSU/(.*) "/usr/share/lrm/root/$1"
    AliasMatch /MSu/(.*) "/usr/share/lrm/root/$1"
    AliasMatch /Msu/(.*) "/usr/share/lrm/root/$1"
    AliasMatch /msu/(.*) "/usr/share/lrm/root/$1"
    EOF`
    else
    echo "Unsupported Mac OS system version";
    exit 5;
    fi
    fi
    if [ -d /usr/share/lrm ]
    then
      echo "Will update Mac OS apache Server configuration";
    else
      echo "failed to locate LaCie Raid Manager directory";
      exit 6;
    fi
    if [ -f ~/lrm.conf ]
    then
      sudo cp ~/lrm.conf /etc/apache2/other
    else
      echo “Error: Missing LRM config file”;
      exit 1;
    fi
    if [ $? -ne 0 ]
    then
      echo “failed to copy lm config file”;
      exit 2;
    else
      rm $(pwd)/lrm.conf;
    fi
    if [ -f /etc/apache2/other/lrm.conf ]
    then
      sudo mv /Library/LaunchDaemons/com.lacie.WebService.plist /Library/LaunchDaemons/com.lacie.WebService.backup;
    else
      echo “Error: Missing LRM config file for apache”;
      exit 3;
    fi
    if [ $? -ne 0 ]
    then
      echo “failed to backup WebService file”;
      exit 4;
    fi
    sudo httpd -k stop;
    sudo apachectl start;
    echo "Successfully reconfigure Apache server"

  • Certificate renewed, clients offered expired cert

    Renewed our cert with GoDaddy, went into Server Admin and added the new one per instructions. Removed old cert and checked that all services are now using the new one.  So far, so good.
    Here's the fun part - the server is showing a two-year-old expired cert to OD users.  This manifests itself as a dialog when launching iCal: "iCal can't verify the identity of the server example.com"
    I seem to recall stumbling across a post somewhere regarding OD / LDAP where there were a few terminal commands required to complete the cert update.
    Any clues?
    Thanks!

    UPDATE:
    It appears to be some kind of Apache / Apache2 problem....  still digging.
    Oddly, /etc/certificates now contains another group of 4 .pem files, which are directly referenced by servermgr_web_apache2_config.plist
    These files were not here yesterday, and based on their date stamp, these are the expired cert files.  I cannot assign the new cert in Server Admin, and I cannot edit the .plist manually.  More precisely, I can edit the plist, but something keeps re-writing the old value back into the file.  Server Admin will let me select the new cert, but when I attempt to save the change, I get this error:
    More to come, I'm sure.
    ;o)

  • Apache2 local web server + Perl 5 + mysql problem

    this problem has been bugging me for some months; it's stopping me developing on my new MBP.
    I cannot connect to mysql 5.0.45 database when web sharing w/ Apache2 with either Perl 5.8 & Activeperl 5.10 cgi scripts on Mac OS X Leopard 10.5.2 & 10.5.3
    Although I can connect to the mysql DB when running the Perl scripts from the command line.
    The problem only occurs on my local web server in Mac OS X 10.5.2 & 10.5.3.
    On my old development Mac running 10.3 the code runs fine, as it also does on my remote site.
    server error log: Can't locate DBD/mysql.pm . . .
    I suspect there is a problem somewhere between Apache2, Perl & MySQL.
    Please advise.
    Sarpedon Jones
    Message was edited by: Sarpedon Jones

    I've got the same problem but It sounds like I've gotten farther. I was forced to do an emergency move of some Perl and PHP sites to 10.5.4 when our 10.4 web server refused to authenticate to AD anymore...
    Leopard's Apache/Perl support is terrible. There is not click to add option anymore so you have to manually set up mod_perl. No big deal but the first sign that there isn't reasonable support.
    The bigger issue is that Apple's Perl will not compile some modules.. namely DBD::mysql.
    Normally you'd use "cpan" to install the modules you need. The core module for connecting to a mysql database is DBD.. specifically DBD::mysql
    You should be able to run "cpan" or "cpanp" [cpan plus] to get a cpan interactive prompt. At this point you should be able to compile DBD by issuing either of the following:
    "install DBD::mysql" or
    "install Module DBD::mysql"
    I've tried this on two installs of OS X Server and that module (and others) will not compile on either system. One of my servers had been set up as a Wiki server before but the other had not been running any web services before I started using it as a test bed for my site move. (BTW these sites are unavailable until I can move them).
    There is another bug (noted on mysql's site) with Apple's version of cpan. If you try to add some modules, cpan will report that it needs to install a new, full version of Perl. The recommendation is to not do this, but rather force the install.. "install f DBD::mysql"
    Forcing the install is a questionable idea but it doesn't work anyway.
    I eventually did install perl 5.0.10 on the system in /usr/ and that does allow me to compile the needed Perl mods. However, the global @INC path has the old Perl paths listed so my perl CGIs will not use the new perl install.
    I'm sorry I don't have a solution. Hopefully my troubleshooting will elicit some more feedback.
    steven.

  • Very strange index.jsp problem (Apache2 + Jboss/Tomcat)

    I've been working on this for 6 hours until the current time of 4.30 am - any help is very much appreciated.
    I (thought) I had successfully integrated Jboss/Tomcat with apache 2 using mod_jk 1.2.8 - and added an alias for jmx-console. But I just can't make index.jsp serve when loading the default directory. I also tried with a fairly straightforward jsp site I have 'ConnectSite' (just a conference name).
    I have created deployment and alias called connect, results
    http://localhost:8080/ConnectSite [success]
    http://localhost/ConnectSite/index.jsp [success]
    http://localhost/ConnectSite/ [fail] - Apache treats it like any other directory.
    But what's really strange is if i take out mod_jk from apache and leave in DirectoryIndex index.jsp - then apache will serve the .jsp file unprocessed. All the static content is served by apache just fine.
    I am baffled. Should I just try proxy for the moment.
    Many Thanks,
    -Mike D
    Config files -
    Apache section (Have of course added DirectoryIndex index.jsp)
    LoadModule jk_module /usr/local/apache2/modules/mod_jk.so
    <IfModule mod_jk.c>
    JkWorkersFile /usr/local/apache2/workers.properties
    JkLogFile /usr/local/apache2/logs/mod_jk.log
    JkLogLevel error
    JkOptions +ForwardDirectories
    DirectoryIndex index.jsp
    # JkAutoAlias /usr/java/jboss/server/default/deploy
    # send all requests ending in .jsp to worker1
    JkMount /*.jsp foo
    # send all requests ending /servlet to worker1
    JkMount /*/servlet/ foo
    </IfModule>
    (running apachectl configtest returns syntax OK)
    workers.properties ...
    # Tomcat and Java configuration
    workers.tomcat_home=/usr/java/jboss/server/default/deploy/jbossweb-tomcat50.sar
    workers.java_home=/usr/java/jdk
    ps=/
    worker.list=foo
    # Definition for local worker using AJP 1.3
    worker.foo.type=ajp13
    worker.foo.host=localhost
    worker.foo.port=8009
    worker.foo.cachesize=20

    Workaround for anyone interested:
    In apache conf:
    use JkMount /ContextName/ to explicitly send each directory with index.jsp to Tomcat

  • Problem with apache2 + mod_jk2

    OS: SuSe 9.1
    apache: apache2-2.0.49-27.18.3
    OAS: Oracle9iAS Containers for J2EE Version 9.0.3.0.0
    i compiled myself mod_jk2
    i tried all version
    When i enter JSP page in browser
    if page size is very small - everything is OK
    if page size a little bigger, i got in browser:
    (at the end LALALALA means my HTML code from that JSP, but not from begining: there are only last part)
    ERROR BAD MESSAGE: msg_ajp.getLong(): BufferOverflowException %d %d
    msg_ajp.geInt(): BufferOverflowException %d %d
    msg_ajp.peekInt(): BufferOverflowException %d %d
    msg_ajp.getByte(): BufferOverflowException %d %d
    msg_ajp.getString(): BufferOverflowException %d %d
    msg_ajp.getBytes(): BufferOverflowException %d %d
    msgAjp.receive(): Bad signature %x%x
    msgAjp.receive(): Incoming message is too big %d
    msgAjp.copy(): destination buffer too small %d/%d
    msg.appendFromServer(): appendInt failed
    msgAjp.appendFromServer() error reading from server
    mutex.%d()
    ../../common/jk_mutex.c mutex.unlock()
    mutex.trylock()
    mutex.lock()
    mechanism logger.file logger.win32 uriMap uriEnv endpoint uri config ajp13 status run channel.un channel.socket shm procMutex channel.jni worker.jni vm signal user jk2_registry_init: Assertion failed, env==NULL -----END CERTIFICATE-----
    ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/ -----BEGIN CERTIFICATE-----
    0123456789abcdef &#1105;&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;˜&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;h&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;;&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1080; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1105;&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;˜&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;h&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;;&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1080; &#1102;&#1103;Content-Type Content-Language Content-Length Date Last-Modified Location Set-Cookie Set-Cookie2 Servlet-Engine Status WWW-Authenticate ../../common/jk_requtil.c web-inf meta-inf cookie ;jsessionid JSESSIONID user-agent referer pragma accept connection authorization content-type charset content-length encoding cookie2 language POST HEAD DELETE OPTIONS TRACE PROPFIND PROPPATCH MKCOL COPY MOVE UNLOCK REPORT VERSION-CONTROL CHECKIN UNCHECKOUT SEARCH MKWORKSPACE UPDATE LABEL MERGE BASELINE-CONTROL MKACTIVITY handler.marshalPostHead() - error len=%d
    handle.request() Error serializing the message head
    serialize.request() Add headerName %s
    serialize.request() Error serializing header id
    handle.request() Error serializing SSL key size
    handle.request() Error serializing SSL session
    handle.request() Error serializing secret
    handle.request() Error serializing SSL cipher
    handle.request() Error serializing SSL cert
    handle.request() Error serializing worker id
    handle.request() Error serializing query string
    handle.request() Error serializing auth type
    serialize.request() Error serializing user name
    Error ajp_marshal_into_msgb - method %s
    serialize.request() Error serializing header name
    serialize.request() serialized %s
    handle.request() Error encoding method %s
    handle.request() Error serializing attribute %s=%s
    serialize.request() Error serializing header value
    handle.request() Error serializing end marker
    size slots useMemory resetEndpointStats ../../common/jk_shm.c shm.init() Reset %s %#lx
    shm.init(): file=%s size=%d
    anon shm.%d()
    shm.writeSlot() %s %d
    epStat shm.getSlot() found existing slot %d %s
    shm.create(): shm created %#lx %#lx %d
    shm.create(): error creating shm %s
    shm.create(): error creating shm %d %s
    shm.create() Created head %#lx size %d
    shm.create(): Anonymous shared memory not implemented %d
    shm.init(): shm file not specified
    shm.writeSlot() No head - shm was not initalized
    shm.writeSlot() Packet too large %d %d
    shm.createSlot() Created slot %d
    shm.createSlot() found existing slot %s
    shm.createSlot() no shared memory head
    shm.createSlot() create %d returned NULL
    context servlet timing alias match_type aliases exact prefix gensuffix contextpath regexp uriEnv.init() map %s %s %s
    ../../common/jk_uriEnv.c lb:lb * worker vhost uriEnv.init() exact mapping %s=%s
    uriEnv.init() regexp mapping %s=%s
    uriEnv.init() map to invalid worker %s %s
    uriEnv.init() suffix mapping %s=%s
    uriEnv.init() %s host=%s uri=%s type=%d ctx=%s prefix=%s suffix=%s
    uriEnv.init() host mapping %s=%s
    uriEnv.init() prefix mapping %s=%s
    uriEnv.init() context must start with '/' in %s
    uriEnv.init() context mapping %s=%s
    uriEnv.parseName() parsing regexp %s not supported
    uriEnv.factory() error parsing %s
    uriEnv.setAttribute() the %s directive is deprecated. Use 'group' instead.
    uriMap.addUriEnv() %s %s %s
    ../../common/jk_uriMap.c uriMap.destroy()
    *: *:%d / uriMap.init() Fixing Host %s
    null uriMap: no context %s
    uriMap.init() global for %s
    uriMap.init() NPE
    uriMap: creating context %s
    uriMap.mapUri() found ctx %s
    %s:%d uriMap: creating duplicate of uri %s
    uriMap: can't create uri object %s
    uriMap.factory() OutOfMemoryError
    uriMap.init() Create default context %s
    uriMap.factory() Fail to create default host
    uriMap.init() Create missing host %s
    uriMap.init() loaded context %s %s %#lx %#lx %#lx
    uriMap: fix uri %s context %s host %s
    uriMap.init() adding context %s:%s for %s
    uriMap: can't create context object %s
    uriMap: creating duplicate of context %s
    uriMap.init() creating global webapp %s for %s
    uriMap.init() no context for %s
    uriMap.init() creating global mappings
    uriMap.init() processing mappings
    uriMap.mapUri() rewrote uri %s
    uriMap.mapUri() exact match %s %s
    uriMap.mapUri() hostname %s port %d uri %s
    uriMap.mapUri() found host %s
    uriMap.mapUri() uri must start with /
    uriMap.mapUri() context match %s %s
    uriMap.mapUri() prefix match %s %s
    uriMap.mapUri() caching host %s
    uriMap.mapUri() no context %s
    uriMap.mapUri() extension match %s %s
    uriMap.mapUri() cannot find host %s/
    uriMap.mapUri() no match found
    ../../common/jk_workerEnv.c destroy worker %s
    workerEnv.close() done %d
    workerEnv.init() Reset shm
    config.file Message: workerEnv.callbacks() %s
    Received Apache->tomcat fs so i386 arch HTTPS SSL_CLIENT_CERT SSL_CIPHER SSL_SESSION_ID SSL_CIPHER_USEKEYSIZE config: shm: Error creating config
    handler. workerEnv.init() ok %s
    logger sslEnable httpsIndicator certsIndicator cipherIndicator sessionIndicator keySizeIndicator forwardKeySize forwardURICompat forwardURICompatUnparsed forwardURIEscaped noRecoveryIfRequestSent noRecoveryIfHeaderSent workerEnv.initWorkers() init failed for %s
    workerEnv.initChannel() init failed for %s
    ${serverRoot}/conf/workers2.properties workerEnv.dispatch() Calling %d %s
    workerEnv.dispatch() Invalid code: %d
    workerEnv.processCallbacks() error sending response data
    workerEnv.processCallbacks() by configuration, avoid recovery when tomcat has started to send headers to client
    workerEnv.processCallbacks() Error reading reply
    workerEnv.processCallbacks() by configuration, avoid recovery when tomcat has received request
    workerEnv.processCallbacks() unknown status %d
    workerEnv.processCallbacks() no reply after %d ms waiting
    workerEnv.addChannel(): Can't find ajp13 worker
    Error getting uriMap implementation
    workerEnv.addWorker() duplicated %s worker
    workerEnv.init() create default worker %s
    U&#1100;&#1102;&#1103;&#1064;&#1101;&#1102;&#1103;&#1048;&#1101;&#1102;&#1103;¬&#1101;&#1102;&#1103;˜&#1101;&#1102;&#1103;channel secretkey max_connections lb_factor route routeRedirect connectTimeout replyTimeout prepostTimeout groups epCount lb_value errorState errorTime endpoint.close() %s
    ajp13.done() No pool
    ajp13.destroy()
    lb: ajp13.init(): No channel %s
    channelName 0 tomcatId ajp13.getEndpoint() No pool
    ajp13.service() %s
    ajp13.forwardST() After %d
    ajp13.service() done %s
    ajp13.connect() %s %s
    ajp13.connect() failed %s
    ajp13.connect() logging in
    Post head ../../common/jk_worker_ajp13.c ajp13.checkalive() can't get cpong reply from %s in %d ms
    ajp13.checkalive() can't send cping request to %s
    ajp13.checkalive() can't read cpong reply from %s
    ajp13.done() return to pool %s
    ajp13.done() Error recycling ep
    ajp13.done() close endpoint %s error_state %d
    ajp13.destroy() closed %d cached endpoints
    ajp13.factory() NullPointerException
    ajp13.init(): Adding %s to %s
    ajp13.init(): Automatically creating the group %s
    ajp13.init(): Failed to create %s
    ajp13.init(): Adding %s to default lb
    ajp13.init(): error creating endpoint ERROR BAD MESSAGE: msg_ajp.getLong(): BufferOverflowException %d %d
    msg_ajp.geInt(): BufferOverflowException %d %d
    msg_ajp.peekInt(): BufferOverflowException %d %d
    msg_ajp.getByte(): BufferOverflowException %d %d
    msg_ajp.getString(): BufferOverflowException %d %d
    msg_ajp.getBytes(): BufferOverflowException %d %d
    msgAjp.receive(): Bad signature %x%x
    msgAjp.receive(): Incoming message is too big %d
    msgAjp.copy(): destination buffer too small %d/%d
    msg.appendFromServer(): appendInt failed
    msgAjp.appendFromServer() error reading from server
    mutex.%d()
    ../../common/jk_mutex.c mutex.unlock()
    mutex.trylock()
    mutex.lock()
    mechanism logger.file logger.win32 uriMap uriEnv endpoint uri config ajp13 status run channel.un channel.socket shm procMutex channel.jni worker.jni vm signal user jk2_registry_init: Assertion failed, env==NULL -----END CERTIFICATE-----
    ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/ -----BEGIN CERTIFICATE-----
    0123456789abcdef &#1105;&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;˜&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;h&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;;&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1080; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1105;&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;˜&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;h&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;;&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1080; &#1102;&#1103;Content-Type Content-Language Content-Length Date Last-Modified Location Set-Cookie Set-Cookie2 Servlet-Engine Status WWW-Authenticate ../../common/jk_requtil.c web-inf meta-inf cookie ;jsessionid JSESSIONID user-agent referer pragma accept connection authorization content-type charset content-length encoding cookie2 language POST HEAD DELETE OPTIONS TRACE PROPFIND PROPPATCH MKCOL COPY MOVE UNLOCK REPORT VERSION-CONTROL CHECKIN UNCHECKOUT SEARCH MKWORKSPACE UPDATE LABEL MERGE BASELINE-CONTROL MKACTIVITY handler.marshalPostHead() - error len=%d
    handle.request() Error serializing the message head
    serialize.request() Add headerName %s
    serialize.request() Error serializing header id
    handle.request() Error serializing SSL key size
    handle.request() Error serializing SSL session
    handle.request() Error serializing secret
    handle.request() Error serializing SSL cipher
    handle.request() Error serializing SSL cert
    handle.request() Error serializing worker id
    handle.request() Error serializing query string
    handle.request() Error serializing auth type
    serialize.request() Error serializing user name
    Error ajp_marshal_into_msgb - method %s
    serialize.request() Error serializing header name
    serialize.request() serialized %s
    handle.request() Error encoding method %s
    handle.request() Error serializing attribute %s=%s
    serialize.request() Error serializing header value
    handle.request() Error serializing end marker
    size slots useMemory resetEndpointStats ../../common/jk_shm.c shm.init() Reset %s %#lx
    shm.init(): file=%s size=%d
    anon shm.%d()
    shm.writeSlot() %s %d
    epStat shm.getSlot() found existing slot %d %s
    shm.create(): shm created %#lx %#lx %d
    shm.create(): error creating shm %s
    shm.create(): error creating shm %d %s
    shm.create() Created head %#lx size %d
    shm.create(): Anonymous shared memory not implemented %d
    shm.init(): shm file not specified
    shm.writeSlot() No head - shm was not initalized
    shm.writeSlot() Packet too large %d %d
    shm.createSlot() Created slot %d
    shm.createSlot() found existing slot %s
    shm.createSlot() no shared memory head
    shm.createSlot() create %d returned NULL
    context servlet timing alias match_type aliases exact prefix gensuffix contextpath regexp uriEnv.init() map %s %s %s
    ../../common/jk_uriEnv.c lb:lb * worker vhost uriEnv.init() exact mapping %s=%s
    uriEnv.init() regexp mapping %s=%s
    uriEnv.init() map to invalid worker %s %s
    uriEnv.init() suffix mapping %s=%s
    uriEnv.init() %s host=%s uri=%s type=%d ctx=%s prefix=%s suffix=%s
    uriEnv.init() host mapping %s=%s
    uriEnv.init() prefix mapping %s=%s
    uriEnv.init() context must start with '/' in %s
    uriEnv.init() context mapping %s=%s
    uriEnv.parseName() parsing regexp %s not supported
    uriEnv.factory() error parsing %s
    uriEnv.setAttribute() the %s directive is deprecated. Use 'group' instead.
    uriMap.addUriEnv() %s %s %s
    ../../common/jk_uriMap.c uriMap.destroy()
    *: *:%d / uriMap.init() Fixing Host %s
    null uriMap: no context %s
    uriMap.init() global for %s
    uriMap.init() NPE
    uriMap: creating context %s
    uriMap.mapUri() found ctx %s
    %s:%d uriMap: creating duplicate of uri %s
    uriMap: can't create uri object %s
    uriMap.factory() OutOfMemoryError
    uriMap.init() Create default context %s
    uriMap.factory() Fail to create default host
    uriMap.init() Create missing host %s
    uriMap.init() loaded context %s %s %#lx %#lx %#lx
    uriMap: fix uri %s context %s host %s
    uriMap.init() adding context %s:%s for %s
    uriMap: can't create context object %s
    uriMap: creating duplicate of context %s
    uriMap.init() creating global webapp %s for %s
    uriMap.init() no context for %s
    uriMap.init() creating global mappings
    uriMap.init() processing mappings
    uriMap.mapUri() rewrote uri %s
    uriMap.mapUri() exact match %s %s
    uriMap.mapUri() hostname %s port %d uri %s
    uriMap.mapUri() found host %s
    uriMap.mapUri() uri must start with /
    uriMap.mapUri() context match %s %s
    uriMap.mapUri() prefix match %s %s
    uriMap.mapUri() caching host %s
    uriMap.mapUri() no context %s
    uriMap.mapUri() extension match %s %s
    uriMap.mapUri() cannot find host %s/
    uriMap.mapUri() no match found
    ../../common/jk_workerEnv.c destroy worker %s
    workerEnv.close() done %d
    workerEnv.init() Reset shm
    config.file Message: workerEnv.callbacks() %s
    Received Apache->tomcat fs so i386 arch HTTPS SSL_CLIENT_CERT SSL_CIPHER SSL_SESSION_ID SSL_CIPHER_USEKEYSIZE config: shm: Error creating config
    handler. workerEnv.init() ok %s
    logger sslEnable httpsIndicator certsIndicator cipherIndicator sessionIndicator keySizeIndicator forwardKeySize forwardURICompat forwardURICompatUnparsed forwardURIEscaped noRecoveryIfRequestSent noRecoveryIfHeaderSent workerEnv.initWorkers() init failed for %s
    workerEnv.initChannel() init failed for %s
    ${serverRoot}/conf/workers2.properties workerEnv.dispatch() Calling %d %s
    workerEnv.dispatch() Invalid code: %d
    workerEnv.processCallbacks() error sending response data
    workerEnv.processCallbacks() by configuration, avoid recovery when tomcat has started to send headers to client
    workerEnv.processCallbacks() Error reading reply
    workerEnv.processCallbacks() by configuration, avoid recovery when tomcat has received request
    workerEnv.processCallbacks() unknown status %d
    workerEnv.processCallbacks() no reply after %d ms waiting
    workerEnv.addChannel(): Can't find ajp13 worker
    Error getting uriMap implementation
    workerEnv.addWorker() duplicated %s worker
    workerEnv.init() create default worker %s
    U&#1100;&#1102;&#1103;&#1064;&#1101;&#1102;&#1103;&#1048;&#1101;&#1102;&#1103;¬&#1101;&#1102;&#1103;˜&#1101;&#1102;&#1103;channel secretkey max_connections lb_factor route routeRedirect connectTimeout replyTimeout prepostTimeout groups epCount lb_value errorState errorTime endpoint.close() %s
    ajp13.done() No pool
    ajp13.destroy()
    lb: ajp13.init(): No channel %s
    channelName 0 tomcatId ajp13.getEndpoint() No pool
    ajp13.service() %s
    ajp13.forwardST() After %d
    ajp13.service() done %s
    ajp13.connect() %s %s
    ajp13.connect() failed %s
    ajp13.connect() logging in
    Post head ../../common/jk_worker_ajp13.c ajp13.checkalive() can't get cpong reply from %s in %d ms
    ajp13.checkalive() can't send cping request to %s
    ajp13.checkalive() can't read cpong reply from %s
    ajp13.done() return to pool %s
    ajp13.done() Error recycling ep
    ajp13.done() close endpoint %s error_state %d
    ajp13.destroy() closed %d cached endpoints
    ajp13.factory() NullPointerException
    ajp13.init(): Adding %s to %s
    ajp13.init(): Automatically creating the group %s
    ajp13.init(): Failed to create %s
    ajp13.init(): Adding %s to default lb
    ajp13.init(): error creating endpoint ERROR BAD MESSAGE: msg_ajp.getLong(): BufferOverflowException %d %d
    msg_ajp.geInt(): BufferOverflowException %d %d
    msg_ajp.peekInt(): BufferOverflowException %d %d
    msg_ajp.getByte(): BufferOverflowException %d %d
    msg_ajp.getString(): BufferOverflowException %d %d
    msg_ajp.getBytes(): BufferOverflowException %d %d
    msgAjp.receive(): Bad signature %x%x
    msgAjp.receive(): Incoming message is too big %d
    msgAjp.copy(): destination buffer too small %d/%d
    msg.appendFromServer(): appendInt failed
    msgAjp.appendFromServer() error reading from server
    mutex.%d()
    ../../common/jk_mutex.c mutex.unlock()
    mutex.trylock()
    mutex.lock()
    mechanism logger.file logger.win32 uriMap uriEnv endpoint uri config ajp13 status run channel.un channel.socket shm procMutex channel.jni worker.jni vm signal user jk2_registry_init: Assertion failed, env==NULL -----END CERTIFICATE-----
    ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/ -----BEGIN CERTIFICATE-----
    0123456789abcdef &#1105;&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;˜&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;h&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;;&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1080; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1105;&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;˜&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;h&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;;&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1038;&#1102;&#1103;&#1054; &#1102;&#1103;&#1054; &#1102;&#1103;&#1080; &#1102;&#1103;Content-Type Content-Language Content-Length Date Last-Modified Location Set-Cookie Set-Cookie2 Servlet-Engine Status WWW-Authenticate ../../common/jk_requtil.c web-inf meta-inf cookie ;jsessionid JSESSIONID user-agent referer pragma accept connection authorization content-type charset content-length encoding cookie2 language POST HEAD DELETE OPTIONS TRACE PROPFIND PROPPATCH MKCOL COPY MOVE UNLOCK REPORT VERSION-CONTROL CHECKIN UNCHECKOUT SEARCH MKWORKSPACE UPDATE LABEL MERGE BASELINE-CONTROL MKACTIVITY handler.marshalPostHead() - error len=%d
    handle.request() Error serializing the message head
    serialize.request() Add headerName %s
    serialize.request() Error serializing header id
    handle.request() Error serializing SSL key size
    handle.request() Error serializing SSL session
    handle.request() Error serializing secret
    handle.request() Error serializing SSL cipher
    handle.request() Error serializing SSL cert
    handle.request() Error serializing worker id
    handle.request() Error serializing query string
    handle.request() Error serializing auth type
    serialize.request() Error serializing user name
    Error ajp_marshal_into_msgb - method %s
    serialize.request() Error serializing header name
    serialize.request() serialized %s
    handle.request() Error encoding method %s
    handle.request() Error serializing attribute %s=%s
    serialize.request() Error serializing header value
    handle.request() Error serializing end marker
    size slots useMemory resetEndpointStats ../../common/jk_shm.c shm.init() Reset %s %#lx
    shm.init(): file=%s size=%d
    anon shm.%d()
    shm.writeSlot() %s %d
    epStat shm.getSlot() found existing slot %d %s
    shm.create(): shm created %#lx %#lx %d
    shm.create(): error creating shm %s
    shm.create(): error creating shm %d %s
    shm.create() Created head %#lx size %d
    shm.create(): Anonymous shared memory not implemented %d
    shm.init(): shm file not specified
    shm.writeSlot() No head - shm was not initalized
    shm.writeSlot() Packet too large %d %d
    shm.createSlot() Created slot %d
    shm.createSlot() found existing slot %s
    shm.createSlot() no shared memory head
    shm.createSlot() create %d returned NULL
    context servlet timing alias match_type aliases exact prefix gensuffix contextpath regexp uriEnv.init() map %s %s %s
    ../../common/jk_uriEnv.c lb:lb * worker vhost uriEnv.init() exact mapping %s=%s
    uriEnv.init() regexp mapping %s=%s
    uriEnv.init() map to invalid worker %s %s
    uriEnv.init() suffix mapping %s=%s
    uriEnv.init() %s host=%s uri=%s type=%d ctx=%s prefix=%s suffix=%s
    uriEnv.init() host mapping %s=%s
    uriEnv.init() prefix mapping %s=%s
    uriEnv.init() context must start with '/' in %s
    uriEnv.init() context mapping %s=%s
    uriEnv.parseName() parsing regexp %s not supported
    uriEnv.factory() error parsing %s
    uriEnv.setAttribute() the %s directive is deprecated. Use 'group' instead.
    uriMap.addUriEnv() %s %s %s
    ../../common/jk_uriMap.c uriMap.destroy()
    *: *:%d / uriMap.init() Fixing Host %s
    null uriMap: no context %s
    uriMap.init() global for %s
    uriMap.init() NPE
    uriMap: creating context %s
    uriMap.mapUri() found ctx %s
    %s:%d uriMap: creating duplicate of uri %s
    uriMap: can't create uri object %s
    uriMap.factory() OutOfMemoryError
    uriMap.init() Create default context %s
    uriMap.factory() Fail to create default host
    uriMap.init() Create missing host %s
    uriMap.init() loaded context %s %s %#lx %#lx %#lx
    uriMap: fix uri %s context %s host %s
    uriMap.init() adding context %s:%s for %s
    uriMap: can't create context object %s
    uriMap: creating duplicate of context %s
    uriMap.init() creating global webapp %s for %s
    uriMap.init() no context for %s
    uriMap.init() creating global mappings
    uriMap.init() processing mappings
    uriMap.mapUri() rewrote uri %s
    uriMap.mapUri() exact match %s %s
    uriMap.mapUri() hostname %s port %d uri %s
    uriMap.mapUri() found host %s
    uriMap.mapUri() uri must start with /
    uriMap.mapUri() context match %s %s
    uriMap.mapUri() prefix match %s %s
    uriMap.mapUri() caching host %s
    uriMap.mapUri() no context %s
    uriMap.mapUri() extension match %s %s
    uriMap.mapUri() cannot find host %s/
    uriMap.mapUri() no match found
    ../../common/jk_workerEnv.c destroy worker %s
    workerEnv.close() done %d
    workerEnv.init() Reset shm
    config.file Message: workerEnv.callbacks() %s
    Received Apache->tomcat fs so i386 arch HTTPS SSL_CLIENT_CERT SSL_CIPHER SSL_SESSION_ID SSL_CIPHER_USEKEYSIZE config: shm: Error creating config
    handler. workerEnv.init() ok %s
    logger sslEnable httpsIndicator certsIndicator cipherIndicator sessionIndicator keySizeIndicator forwardKeySize forwardURICompat forwardURICompatUnparsed forwardURIEscaped noRecoveryIfRequestSent noRecoveryIfHeaderSent workerEnv.initWorkers() init failed for %s
    workerEnv.initChannel() init failed for %s
    ${serverRoot}/conf/workers2.properties workerEnv.dispatch() Calling %d %s
    workerEnv.dispatch() Invalid code: %d
    workerEnv.processCallbacks() error sending response data
    workerEnv.processCallbacks() by configuration, avoid recovery when tomcat has started to send headers to client
    workerEnv.processCallbacks() Error reading reply
    workerEnv.processCallbacks() by configuration, avoid recovery when tomcat has received request
    workerEnv.processCallbacks() unknown status %d
    workerEnv.processCallbacks() no reply after %d ms waiting
    workerEnv.addChannel(): Can't find ajp13 worker
    Error getting uriMap implementation
    workerEnv.addWorker() duplicated %s worker
    workerEnv.init() create default worker %s
    U&#1100;&#1102;&#1103;&#1064;&#1101;&#1102;&#1103;&#1048;&#1101;&#1102;&#1103;¬&#1101;&#1102;&#1103;˜&#1101;&#1102;&#1103;channel secretkey max_connections lb_factor route routeRedirect connectTimeout replyTimeout prepostTimeout groups epCount lb_value errorState errorTime endpoint.close() %s
    ajp13.done() No pool
    ajp13.destroy()
    lb: ajp13.init(): No channel %s
    channelName 0 tomcatId ajp13.getEndpoint() No pool
    ajp13.service() %s
    ajp13.forwardST() After %d
    ajp13.service() done %s
    ajp13.connect() %s %s
    ajp13.connect() failed %s
    ajp13.connect() logging in
    Post head ../../common/jk_worker_ajp13.c ajp13.checkalive() can't get cpong reply from %s in %d ms
    ajp13.checkalive() can't send cping request to %s
    ajp13.checkalive() can't read cpong reply from %s
    ajp13.done() return to pool %s
    ajp13.done() Error recycling ep
    ajp13.done() close endpoint %s error_state %d
    ajp13.destroy() closed %d cached endpoints
    ajp13.factory() NullPointerException
    ajp13.init(): Adding %s to %s
    ajp13.init(): Automatically creating the group %s
    ajp13.init(): Failed to create %s
    ajp13.init(): Adding %s to default lb
    ajp13.init(): error creating endpointLALALALALALALA

    Start by using console and checking your apache logs in /var/log/httpd or whereveer you have set apache2 to log to.
    Aside from using your 'configuration' - is there some features you need in apache2 that are not available in apache ?

  • Problem With httpd.conf and mod_rewrite rules Apache 2.2

    I have some RewriteRules that are working on my Leopard Client Apache 2.2 machine - but when I try to implement them on Leopard Server Apache 2.2, they don't work. I don't get any errors, they just won't execute.
    Could somebody with Leopard Server help me out using the below info?
    Here are the rules I am trying to add: (below is the httpd.conf file)
    ======RULES========
    RewriteEngine On
    Options +FollowSymLinks
    RewriteRule ^(.+)/$ http://%{HTTP_HOST}$1 [R=301, L]
    # Remove ".php"
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.php(.*)\ HTTP
    RewriteRule (.+)\.php(.*)$ $1$2 [R, L]
    # Remove ".asp"
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.asp(.*)\ HTTP
    RewriteRule (.+)\.asp(.*)$ $1$2 [R, L]
    # Remove ".aspx"
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.aspx(.*)\ HTTP
    RewriteRule (.+)\.aspx(.*)$ $1$2 [R, L]
    # Remove ".htm" and ".html"
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.htm.(.)\ HTTP
    RewriteRule (.+)\.htm.(.)$ $1$2 [R, L]
    # Remove ".cfm"
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.cfm(.*)\ HTTP
    RewriteRule (.+)\.cfm(.*)$ $1$2 [R, L]
    # Remove ".bak"
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.bak(.*)\ HTTP
    RewriteRule (.+)\.bak(.*)$ $1$2 [R, L]
    # Remove ".inc"
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.inc(.*)\ HTTP
    RewriteRule (.+)\.inc(.*)$ $1$2 [R, L]
    # Remove ".*"
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\..(.)\ HTTP
    RewriteRule (.+)\..(.)$ $1$2 [R, L]
    =====RULES============
    =========HTTPD.CONF=============
    #### Default httpd.conf for Mac OS X Server, Apache 2.2
    #### This httpd.conf differs from the httpd.conf distributed
    #### with Apache and the httpd.conf present on Mac OS X.
    #### Feel free to edit this; the Server Admin app also edits this file but will
    #### respect your changes unless noted below. See also ReadMe.txt.
    ## ServerRoot: The top of the directory tree under which the server's
    ## configuration, error, and log files are kept.
    ## NOTE! If you intend to place this on an NFS (or otherwise network)
    ## mounted filesystem then please read the LockFile documentation
    ## (available at <URL:<a class="jive-link-external-small" href="http://">http://www.apache.org/docs/mod/core.html#lockfile>);
    ## you will save yourself a lot of trouble.
    ## Do NOT add a slash at the end of the directory path.
    ServerRoot "/usr"
    ## PidFile: The file in which the server should record its process
    ## identification number when it starts.
    PidFile /var/run/httpd.pid
    ## ScoreBoardFile: File used to store internal server process information.
    ## Not all architectures require this. But if yours does (you'll know because
    ## this file will be created when you run Apache) then you must ensure that
    ## no two invocations of Apache share the same scoreboard file.
    #ScoreBoardFile "/var/run/apache2runtimestatus"
    ## Server-pool size regulation. Rather than making you guess how many
    ## server processes you need, Apache dynamically adapts to the load it
    ## sees --- that is, it tries to maintain enough server processes to
    ## handle the current load, plus a few spare servers to handle transient
    ## load spikes (e.g., multiple simultaneous requests from a single
    ## Netscape browser).
    ## It does this by periodically checking how many servers are waiting
    ## for a request. If there are fewer than MinSpareServers, it creates
    ## a new spare. If there are more than MaxSpareServers, some of the
    ## spares die off. The default values are probably OK for most sites.
    MinSpareServers 1
    MaxSpareServers 1
    ## Number of servers to start initially --- should be a reasonable ballpark
    ## figure.
    StartServers 1
    ## MaxRequestsPerChild: the number of requests each child process is
    ## allowed to process before the child dies. The child will exit so
    ## as to avoid problems after prolonged use when Apache (and maybe the
    ## libraries it uses) leak memory or other resources. On most systems, this
    ## isn't really needed, but a few (such as Solaris) do have notable leaks
    ## in the libraries. For these platforms, set to something like 10000
    ## or so; a setting of 0 means unlimited.
    ## NOTE: This value does not include keepalive requests after the initial
    ## request per connection. For example, if a child process handles
    ## an initial request and 10 subsequent "keptalive" requests, it
    ## would only count as 1 request towards this limit.
    MaxRequestsPerChild 100000
    ## Dynamic Shared Object (DSO) Support
    ## To be able to use the functionality of a module which was built as a DSO you
    ## have to place corresponding `LoadModule' lines at this location so the
    ## directives contained in it are actually available before they are used.
    ## Please read the file http://httpd.apache.org/docs/dso.html for more
    ## details about the DSO mechanism and run `httpd -l' for the list of already
    ## built-in (statically linked and thus always available) modules in your httpd
    ## binary.
    ## Note: The order in which modules are loaded is important. Don't change
    ## the order below without expert advice.
    ## Example:
    ## LoadModule foo_module libexec/mod_foo.so
    #### For Mac OS X Server: Note that the Server Admin application
    #### and the apxs utility enable and disable modules
    #### by removing and adding a comment character.
    LoadModule authnfilemodule libexec/apache2/modauthnfile.so
    #LoadModule authndbmmodule libexec/apache2/modauthndbm.so
    #LoadModule authnanonmodule libexec/apache2/modauthnanon.so
    #LoadModule authndbdmodule libexec/apache2/modauthndbd.so
    #LoadModule authndefaultmodule libexec/apache2/modauthndefault.so
    LoadModule authzhostmodule libexec/apache2/modauthzhost.so
    #LoadModule authzgroupfilemodule libexec/apache2/modauthzgroupfile.so
    #LoadModule authzusermodule libexec/apache2/modauthzuser.so
    #LoadModule authzdbmmodule libexec/apache2/modauthzdbm.so
    #LoadModule authzownermodule libexec/apache2/modauthzowner.so
    #LoadModule authzdefaultmodule libexec/apache2/modauthzdefault.so
    #LoadModule authbasicmodule libexec/apache2/modauthbasic.so
    #LoadModule authdigest_applemodule libexec/apache2/modauth_digestapple.so
    LoadModule cache_module libexec/apache2/mod_cache.so
    LoadModule memcachemodule libexec/apache2/modmemcache.so
    LoadModule diskcachemodule libexec/apache2/moddiskcache.so
    #LoadModule dbd_module libexec/apache2/mod_dbd.so
    LoadModule dumpio_module libexec/apache2/mod_dumpio.so
    LoadModule extfiltermodule libexec/apache2/modextfilter.so
    LoadModule include_module libexec/apache2/mod_include.so
    LoadModule filter_module libexec/apache2/mod_filter.so
    LoadModule deflate_module libexec/apache2/mod_deflate.so
    LoadModule logconfigmodule libexec/apache2/modlogconfig.so
    LoadModule logio_module libexec/apache2/mod_logio.so
    LoadModule env_module libexec/apache2/mod_env.so
    LoadModule expires_module libexec/apache2/mod_expires.so
    LoadModule headers_module libexec/apache2/mod_headers.so
    LoadModule ident_module libexec/apache2/mod_ident.so
    LoadModule setenvif_module libexec/apache2/mod_setenvif.so
    LoadModule proxy_module libexec/apache2/mod_proxy.so
    #LoadModule proxyconnectmodule libexec/apache2/modproxyconnect.so
    #LoadModule proxyftpmodule libexec/apache2/modproxyftp.so
    LoadModule proxyhttpmodule libexec/apache2/modproxyhttp.so
    #LoadModule proxyajpmodule libexec/apache2/modproxyajp.so
    LoadModule proxybalancermodule libexec/apache2/modproxybalancer.so
    LoadModule ssl_module libexec/apache2/mod_ssl.so
    LoadModule mime_module libexec/apache2/mod_mime.so
    #LoadModule mimemagicmodule libexec/apache2/modmimemagic.so
    #LoadModule dav_module libexec/apache2/mod_dav.so
    LoadModule status_module libexec/apache2/mod_status.so
    LoadModule autoindex_module libexec/apache2/mod_autoindex.so
    LoadModule asis_module libexec/apache2/mod_asis.so
    LoadModule info_module libexec/apache2/mod_info.so
    LoadModule cgi_module libexec/apache2/mod_cgi.so
    #LoadModule davfsmodule libexec/apache2/moddavfs.so
    LoadModule vhostaliasmodule libexec/apache2/modvhostalias.so
    LoadModule negotiation_module libexec/apache2/mod_negotiation.so
    LoadModule dir_module libexec/apache2/mod_dir.so
    LoadModule imagemap_module libexec/apache2/mod_imagemap.so
    LoadModule actions_module libexec/apache2/mod_actions.so
    LoadModule speling_module libexec/apache2/mod_speling.so
    LoadModule userdir_module libexec/apache2/mod_userdir.so
    LoadModule alias_module libexec/apache2/mod_alias.so
    LoadModule rewrite_module libexec/apache2/mod_rewrite.so
    #LoadModule php5_module libexec/apache2/libphp5.so
    #LoadModule encoding_module libexec/apache2/mod_encoding.so
    #LoadModule jk_module libexec/apache2/mod_jk.so
    #LoadModule applespotlightmodule libexec/apache2/modspotlightapple.so
    #LoadModule bonjour_module libexec/apache2/mod_bonjour.so
    LoadModule appleauthmodule libexec/apache2/modauthapple.so
    LoadModule spnegoauthmodule libexec/apache2/modspnegoapple.so
    LoadModule appledigestmodule libexec/apache2/moddigestapple.so
    LoadModule hfsapplemodule libexec/apache2/modhfsapple.so
    #LoadModule fastcgi_module libexec/apache2/mod_fastcgi.so
    #LoadModule scgipubsubmodule libexec/apache2/modscgipubsub.so
    #LoadModule davsvnmodule libexec/apache2/moddavsvn.so
    #LoadModule authzsvnmodule libexec/apache2/modauthzsvn.so
    ## If you wish httpd to run as a different user or group, you must run
    ## httpd as root initially and it will switch.
    ## User/Group: The name (or #number) of the user/group to run httpd as.
    ## It is usually good practice to create a dedicated user and group for
    ## running httpd, as with most system services.
    User www
    Group www
    ## Each directory to which Apache has access, can be configured with respect
    ## to which services and features are allowed and/or disabled in that
    ## directory (and its subdirectories).
    ## First, we configure the "default" to be a very restrictive set of
    ## features.
    <Directory />
    Options FollowSymLinks
    AllowOverride None
    </Directory>
    ## UserDir: The name of the directory which is appended onto a user's home
    ## directory if a ~user request is received.
    #### For Mac OS X Server: Note that
    #### personal websharing is not supported on Mac OS X Server.
    <IfModule mod_userdir.c>
    UserDir Sites
    </IfModule>
    ## AccessFileName: The name of the file to look for in each directory
    ## for access control information.
    AccessFileName .htaccess
    ## The following lines prevent .htaccess files from being viewed by
    ## Web clients.
    #### For Mac OS X Server: Note the case-insensitive pattern, which protects
    #### .htaccess fils on HFS volumes.
    #### (Note: Denying .DS_S* may interfere with Finder WebDAV operation)
    <Files ~ "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
    Order allow,deny
    Deny from all
    Satisfy All
    </Files>
    #### Block attempts to circumvent access controls by requesting forks.
    <Files "rsrc">
    Order allow,deny
    Deny from all
    Satisfy All
    </Files>
    <DirectoryMatch ".*\.\.namedfork">
    Order allow,deny
    Deny from all
    Satisfy All
    </DirectoryMatch>
    ## DefaultType is the default MIME type the server will use for a document
    ## if it cannot otherwise determine one, such as from filename extensions.
    ## If your server contains mostly text or HTML documents, "text/plain" is
    ## a good value. If most of your content is binary, such as applications
    ## or images, you may want to use "application/octet-stream" instead to
    ## keep browsers from trying to display binary files as though they are
    ## text.
    DefaultType text/plain
    <IfModule mod_mime.c>
    # TypesConfig points to the file containing the list of mappings from
    # filename extension to MIME-type.
    TypesConfig /dev/null
    #AddType application/x-gzip .tgz
    # AddEncoding allows you to have certain browsers uncompress
    # information on the fly. Note: Not all browsers support this.
    #AddEncoding x-compress .Z
    #AddEncoding x-gzip .gz .tgz
    # Filters allow you to process content before it is sent to the client.
    # To parse .shtml files for server-side includes (SSI):
    # (You will also need to add "Includes" to the "Options" directive.)
    #AddOutputFilter INCLUDES .shtml
    ## Although mod_mime may support several extensions following a single
    ## mime type (ex: "AddType video/quicktime qt mov"), the parser used
    ## by the Server Admin application expects only one extension per line.
    AddHandler send-as-is asis
    AddHandler cgi-script cgi
    AddHandler fastcgi-script fcgi
    AddHandler imap-file map
    AddHandler server-parsed shtml
    AddHandler type-map var
    AddHandler spotlight-search spotlight
    AddType application/andrew-inset ez
    AddType application/atom+xml atom
    AddType application/atomcat+xml atomcat
    AddType application/atomsvc+xml atomsvc
    AddType application/ccxml+xml ccxml
    AddType application/davmount+xml davmount
    AddType application/ecmascript ecma
    AddType application/font-tdpfr pfr
    AddType application/hyperstudio stk
    AddType application/javascript js
    AddType application/json json
    AddType application/mac-binhex40 hqx
    AddType application/mac-compactpro cpt
    AddType application/marc mrc
    AddType application/mathematica ma
    AddType application/mathematica mb
    AddType application/mathematica nb
    AddType application/mathml+xml mathml
    AddType application/mbox mbox
    AddType application/mediaservercontrol+xml mscml
    AddType application/mp4 mp4s
    AddType application/msword doc
    AddType application/msword dot
    AddType application/mxf mxf
    AddType application/octet-stream bin
    AddType application/octet-stream bpk
    AddType application/octet-stream class
    AddType application/octet-stream dist
    AddType application/octet-stream distz
    AddType application/octet-stream dmg
    AddType application/octet-stream dms
    AddType application/octet-stream dump
    AddType application/octet-stream elc
    AddType application/octet-stream iso
    AddType application/octet-stream lha
    AddType application/octet-stream lzh
    AddType application/octet-stream scpt
    AddType application/octet-stream so
    AddType application/oda oda
    AddType application/ogg ogg
    AddType application/pdf pdf
    AddType application/pgp-encrypted pgp
    AddType application/pgp-signature asc
    AddType application/pgp-signature sig
    AddType application/pics-rules prf
    AddType application/pkcs10 p10
    AddType application/pkcs7-mime p7c
    AddType application/pkcs7-mime p7m
    AddType application/pkcs7-signature p7s
    AddType application/pkix-cert cer
    AddType application/pkix-crl crl
    AddType application/pkix-pkipath pkipath
    AddType application/pkixcmp pki
    AddType application/pls+xml pls
    AddType application/postscript ai
    AddType application/postscript eps
    AddType application/postscript ps
    AddType application/prs.cww cww
    AddType application/rdf+xml rdf
    AddType application/reginfo+xml rif
    AddType application/relax-ng-compact-syntax rnc
    AddType application/resource-lists+xml rl
    AddType application/rls-services+xml rs
    AddType application/rsd+xml rsd
    AddType application/rss+xml rss
    AddType application/rtf rtf
    AddType application/sbml+xml sbml
    AddType application/sdp sdp
    AddType application/set-payment-initiation setpay
    AddType application/set-registration-initiation setreg
    AddType application/shf+xml shf
    AddType application/smil+xml smi
    AddType application/smil+xml smil
    AddType application/srgs gram
    AddType application/srgs+xml grxml
    AddType application/ssml+xml ssml
    AddType application/vnd.3gpp.pic-bw-large plb
    AddType application/vnd.3gpp.pic-bw-small psb
    AddType application/vnd.3gpp.pic-bw-var pvb
    AddType application/vnd.3m.post-it-notes pwn
    AddType application/vnd.accpac.simply.aso aso
    AddType application/vnd.accpac.simply.imp imp
    AddType application/vnd.acucobol acu
    AddType application/vnd.acucorp acutc
    AddType application/vnd.acucorp atc
    AddType application/vnd.adobe.xdp+xml xdp
    AddType application/vnd.adobe.xfdf xfdf
    AddType application/vnd.amiga.ami ami
    AddType application/vnd.anser-web-certificate-issue-initiation cii
    AddType application/vnd.anser-web-funds-transfer-initiation fti
    AddType application/vnd.antix.game-component atx
    AddType application/vnd.apple.installer+xml mpkg
    AddType application/vnd.apple.installer+xml pkg
    AddType application/vnd.audiograph aep
    AddType application/vnd.blueice.multipass mpm
    AddType application/vnd.bmi bmi
    AddType application/vnd.businessobjects rep
    AddType application/vnd.chemdraw+xml cdxml
    AddType application/vnd.chipnuts.karaoke-mmd mmd
    AddType application/vnd.cinderella cdy
    AddType application/vnd.claymore cla
    AddType application/vnd.clonk.c4group c4d
    AddType application/vnd.clonk.c4group c4f
    AddType application/vnd.clonk.c4group c4g
    AddType application/vnd.clonk.c4group c4p
    AddType application/vnd.clonk.c4group c4u
    AddType application/vnd.commonspace csp
    AddType application/vnd.commonspace cst
    AddType application/vnd.contact.cmsg cdbcmsg
    AddType application/vnd.cosmocaller cmc
    AddType application/vnd.crick.clicker clkx
    AddType application/vnd.crick.clicker.keyboard clkk
    AddType application/vnd.crick.clicker.palette clkp
    AddType application/vnd.crick.clicker.template clkt
    AddType application/vnd.crick.clicker.wordbank clkw
    AddType application/vnd.criticaltools.wbs+xml wbs
    AddType application/vnd.ctc-posml pml
    AddType application/vnd.cups-ppd ppd
    AddType application/vnd.curl curl
    AddType application/vnd.data-vision.rdz rdz
    AddType application/vnd.denovo.fcselayout-link fe_launch
    AddType application/vnd.dna dna
    AddType application/vnd.dolby.mlp mlp
    AddType application/vnd.dpgraph dpg
    AddType application/vnd.dreamfactory dfac
    AddType application/vnd.ecowin.chart mag
    AddType application/vnd.enliven nml
    AddType application/vnd.epson.esf esf
    AddType application/vnd.epson.msf msf
    AddType application/vnd.epson.quickanime qam
    AddType application/vnd.epson.salt slt
    AddType application/vnd.epson.ssf ssf
    AddType application/vnd.eszigno3+xml es3 et3
    AddType application/vnd.ezpix-album ez2
    AddType application/vnd.ezpix-package ez3
    AddType application/vnd.fdf fdf
    AddType application/vnd.flographit gph
    AddType application/vnd.fluxtime.clip ftc
    AddType application/vnd.framemaker fm
    AddType application/vnd.framemaker frame
    AddType application/vnd.framemaker maker
    AddType application/vnd.frogans.fnc fnc
    AddType application/vnd.frogans.ltf ltf
    AddType application/vnd.fsc.weblaunch fsc
    AddType application/vnd.fujitsu.oasys oas
    AddType application/vnd.fujitsu.oasys2 oa2
    AddType application/vnd.fujitsu.oasys3 oa3
    AddType application/vnd.fujitsu.oasysgp fg5
    AddType application/vnd.fujitsu.oasysprs bh2
    AddType application/vnd.fujixerox.ddd ddd
    AddType application/vnd.fujixerox.docuworks xdw
    AddType application/vnd.fujixerox.docuworks.binder xbd
    AddType application/vnd.fuzzysheet fzs
    AddType application/vnd.genomatix.tuxedo txd
    AddType application/vnd.google-earth.kml+xml kml
    AddType application/vnd.google-earth.kmz kmz
    AddType application/vnd.grafeq gqf
    AddType application/vnd.grafeq gqs
    AddType application/vnd.groove-account gac
    AddType application/vnd.groove-help ghf
    AddType application/vnd.groove-identity-message gim
    AddType application/vnd.groove-injector grv
    AddType application/vnd.groove-tool-message gtm
    AddType application/vnd.groove-tool-template tpl
    AddType application/vnd.groove-vcard vcg
    AddType application/vnd.handheld-entertainment+xml zmm
    AddType application/vnd.hbci hbci
    AddType application/vnd.hhe.lesson-player les
    AddType application/vnd.hp-hpgl hpgl
    AddType application/vnd.hp-hpid hpid
    AddType application/vnd.hp-hps hps
    AddType application/vnd.hp-jlyt jlt
    AddType application/vnd.hp-pcl pcl
    AddType application/vnd.hp-pclxl pclxl
    AddType application/vnd.hzn-3d-crossword x3d
    AddType application/vnd.ibm.minipay mpy
    AddType application/vnd.ibm.modcap afp
    AddType application/vnd.ibm.modcap list3820
    AddType application/vnd.ibm.modcap listafp
    AddType application/vnd.ibm.rights-management irm
    AddType application/vnd.ibm.secure-container sc
    AddType application/vnd.igloader igl
    AddType application/vnd.immervision-ivp ivp
    AddType application/vnd.immervision-ivu ivu
    AddType application/vnd.intercon.formnet xpw
    AddType application/vnd.intercon.formnet xpx
    AddType application/vnd.intu.qbo qbo
    AddType application/vnd.intu.qfx qfx
    AddType application/vnd.ipunplugged.rcprofile rcprofile
    AddType application/vnd.irepository.package+xml irp
    AddType application/vnd.is-xpr xpr
    AddType application/vnd.jam jam
    AddType application/vnd.jcp.javame.midlet-rms rms
    AddType application/vnd.jisp jisp
    AddType application/vnd.kahootz ktr
    AddType application/vnd.kahootz ktz
    AddType application/vnd.kde.karbon karbon
    AddType application/vnd.kde.kchart chrt
    AddType application/vnd.kde.kformula kfo
    AddType application/vnd.kde.kivio flw
    AddType application/vnd.kde.kontour kon
    AddType application/vnd.kde.kpresenter kpr
    AddType application/vnd.kde.kpresenter kpt
    AddType application/vnd.kde.kspread ksp
    AddType application/vnd.kde.kword kwd
    AddType application/vnd.kde.kword kwt
    AddType application/vnd.kenameaapp htke
    AddType application/vnd.kidspiration kia
    AddType application/vnd.kinar kne
    AddType application/vnd.kinar knp
    AddType application/vnd.koan skd
    AddType application/vnd.koan skm
    AddType application/vnd.koan skp
    AddType application/vnd.koan skt
    AddType application/vnd.llamagraphics.life-balance.desktop lbd
    AddType application/vnd.llamagraphics.life-balance.exchange+xml lbe
    AddType application/vnd.lotus-1-2-3 123
    AddType application/vnd.lotus-approach apr
    AddType application/vnd.lotus-freelance pre
    AddType application/vnd.lotus-notes nsf
    AddType application/vnd.lotus-organizer org
    AddType application/vnd.lotus-screencam scm
    AddType application/vnd.lotus-wordpro lwp
    AddType application/vnd.macports.portpkg portpkg
    AddType application/vnd.mcd mcd
    AddType application/vnd.medcalcdata mc1
    AddType application/vnd.mediastation.cdkey cdkey
    AddType application/vnd.mfer mwf
    AddType application/vnd.mfmp mfm
    AddType application/vnd.micrografx.flo flo
    AddType application/vnd.micrografx.igx igx
    AddType application/vnd.mif mif
    AddType application/vnd.mobius.daf daf
    AddType application/vnd.mobius.dis dis
    AddType application/vnd.mobius.mbk mbk
    AddType application/vnd.mobius.mqy mqy
    AddType application/vnd.mobius.msl msl
    AddType application/vnd.mobius.plc plc
    AddType application/vnd.mobius.txf txf
    AddType application/vnd.mophun.application mpn
    AddType application/vnd.mophun.certificate mpc
    AddType application/vnd.mozilla.xul+xml xul
    AddType application/vnd.ms-artgalry cil
    AddType application/vnd.ms-asf asf
    AddType application/vnd.ms-cab-compressed cab
    AddType application/vnd.ms-excel xla
    AddType application/vnd.ms-excel xlc
    AddType application/vnd.ms-excel xlm
    AddType application/vnd.ms-excel xls
    AddType application/vnd.ms-excel xlt
    AddType application/vnd.ms-excel xlw
    AddType application/vnd.ms-fontobject eot
    AddType application/vnd.ms-htmlhelp chm
    AddType application/vnd.ms-ims ims
    AddType application/vnd.ms-lrm lrm
    AddType application/vnd.ms-powerpoint pot
    AddType application/vnd.ms-powerpoint pps
    AddType application/vnd.ms-powerpoint ppt
    AddType application/vnd.ms-project mpp
    AddType application/vnd.ms-project mpt
    AddType application/vnd.ms-works wcm
    AddType application/vnd.ms-works wdb
    AddType application/vnd.ms-works wks
    AddType application/vnd.ms-works wps
    AddType application/vnd.ms-wpl wpl
    AddType application/vnd.ms-xpsdocument xps
    AddType application/vnd.mseq mseq
    AddType application/vnd.musician mus
    AddType application/vnd.neurolanguage.nlu nlu
    AddType application/vnd.noblenet-directory nnd
    AddType application/vnd.noblenet-sealer nns
    AddType application/vnd.noblenet-web nnw
    AddType application/vnd.nokia.n-gage.data ngdat
    AddType application/vnd.nokia.n-gage.symbian.install n-gage
    AddType application/vnd.nokia.radio-preset rpst
    AddType application/vnd.nokia.radio-presets rpss
    AddType application/vnd.novadigm.edm edm
    AddType application/vnd.novadigm.edx edx
    AddType application/vnd.novadigm.ext ext
    AddType application/vnd.oasis.opendocument.chart odc
    AddType application/vnd.oasis.opendocument.chart-template otc
    AddType application/vnd.oasis.opendocument.formula odf
    AddType application/vnd.oasis.opendocument.formula-template otf
    AddType application/vnd.oasis.opendocument.graphics odg
    AddType application/vnd.oasis.opendocument.graphics-template otg
    AddType application/vnd.oasis.opendocument.image odi
    AddType application/vnd.oasis.opendocument.image-template oti
    AddType application/vnd.oasis.opendocument.presentation odp
    AddType application/vnd.oasis.opendocument.presentation-template otp
    AddType application/vnd.oasis.opendocument.spreadsheet ods
    AddType application/vnd.oasis.opendocument.spreadsheet-template ots
    AddType application/vnd.oasis.opendocument.text odt
    AddType application/vnd.oasis.opendocument.text-master otm
    AddType application/vnd.oasis.opendocument.text-template ott
    AddType application/vnd.oasis.opendocument.text-web oth
    AddType application/vnd.olpc-sugar xo
    AddType application/vnd.oma.dd2+xml dd2
    AddType application/vnd.openofficeorg.extension oxt
    AddType application/vnd.osgi.dp dp
    AddType application/vnd.palm oprc
    AddType application/vnd.palm pdb
    AddType application/vnd.palm pqa
    AddType application/vnd.palm prc
    AddType application/vnd.pg.format str
    AddType application/vnd.pg.osasli ei6
    AddType application/vnd.picsel efif
    AddType application/vnd.pocketlearn plf
    AddType application/vnd.powerbuilder6 pbd
    AddType application/vnd.previewsystems.box box
    AddType application/vnd.proteus.magazine mgz
    AddType application/vnd.publishare-delta-tree qps
    AddType application/vnd.pvi.ptid1 ptid
    AddType application/vnd.quark.quarkxpress qwd
    AddType application/vnd.quark.quarkxpress qwt
    AddType application/vnd.quark.quarkxpress qxb
    AddType application/vnd.quark.quarkxpress qxd
    AddType application/vnd.quark.quarkxpress qxl
    AddType application/vnd.quark.quarkxpress qxt
    AddType application/vnd.recordare.musicxml mxl
    # AddType application/vnd.rn-realmedia rm
    AddType application/vnd.seemail see
    AddType application/vnd.sema sema
    AddType application/vnd.semd semd
    AddType application/vnd.semf semf
    AddType application/vnd.shana.informed.formdata ifm
    AddType application/vnd.shana.informed.formtemplate itp
    AddType application/vnd.shana.informed.interchange iif
    AddType application/vnd.shana.informed.package ipk
    AddType application/vnd.simtech-mindmapper twd
    AddType application/vnd.simtech-mindmapper twds
    AddType application/vnd.smaf mmf
    AddType application/vnd.solent.sdkm+xml sdkd
    AddType application/vnd.solent.sdkm+xml sdkm
    AddType application/vnd.spotfire.dxp dxp
    AddType application/vnd.spotfire.sfs sfs
    AddType application/vnd.sus-calendar sus
    AddType application/vnd.sus-calendar susp
    AddType application/vnd.svd svd
    AddType application/vnd.syncml+xml xsm
    AddType application/vnd.syncml.dm+wbxml bdm
    AddType application/vnd.syncml.dm+xml xdm
    AddType application/vnd.tao.intent-module-archive tao
    AddType application/vnd.tmobile-livetv tmo
    AddType application/vnd.trid.tpt tpt
    AddType application/vnd.triscape.mxs mxs
    AddType application/vnd.trueapp tra
    AddType application/vnd.ufdl ufd
    AddType application/vnd.ufdl ufdl
    AddType application/vnd.uiq.theme utz
    AddType application/vnd.umajin umj
    AddType application/vnd.unity unityweb
    AddType application/vnd.uoml+xml uoml
    AddType application/vnd.vcx vcx
    AddType application/vnd.visio vsd
    AddType application/vnd.visio vss
    AddType application/vnd.visio vst
    AddType application/vnd.visio vsw
    AddType application/vnd.visionary vis
    AddType application/vnd.vsf vsf
    AddType application/vnd.wap.wbxml wbxml
    AddType application/vnd.wap.wmlc wmlc
    AddType application/vnd.wap.wmlscriptc wmlsc
    AddType application/vnd.webturbo wtb
    AddType application/vnd.wordperfect wpd
    AddType application/vnd.wqd wqd
    AddType application/vnd.wt.stf stf
    AddType application/vnd.xara xar
    AddType application/vnd.xfdl xfdl
    AddType application/vnd.yamaha.hv-dic hvd
    AddType application/vnd.yamaha.hv-script hvs
    AddType application/vnd.yamaha.hv-voice hvp
    AddType application/vnd.yamaha.smaf-audio saf
    AddType application/vnd.yamaha.smaf-phrase spf
    AddType application/vnd.yellowriver-custom-menu cmp
    AddType application/vnd.zzazz.deck+xml zaz
    AddType application/voicexml+xml vxml
    AddType application/winhlp hlp
    AddType application/wsdl+xml wsdl
    AddType application/wspolicy+xml wspolicy
    AddType application/x-ace-compressed ace
    AddType application/x-bcpio bcpio
    AddType application/x-bittorrent torrent
    AddType application/x-bzip bz
    AddType application/x-bzip2 boz
    AddType application/x-bzip2 bz2
    AddType application/x-cdlink vcd
    AddType application/x-chat chat
    AddType application/x-chess-pgn pgn
    AddType application/x-cpio cpio
    AddType application/x-csh csh
    AddType application/x-director dcr
    AddType application/x-director dir
    AddType application/x-director dxr
    AddType application/x-director fgd
    AddType application/x-dvi dvi
    AddType application/x-futuresplash spl
    AddType application/x-gtar gtar
    AddType application/x-hdf hdf
    AddType application/x-httpd-php php
    AddType application/x-httpd-php-source phps
    AddType application/x-httpd-php3 php3
    AddType application/x-java-jnlp-file jnlp
    AddType application/x-latex latex
    AddType application/x-ms-wmd wmd
    AddType application/x-ms-wmz wmz
    AddType application/x-msaccess mdb
    AddType application/x-msbinder obd
    AddType application/x-mscardfile crd
    AddType application/x-msclip clp
    AddType application/x-msdownload bat
    AddType application/x-msdownload com
    AddType application/x-msdownload dll
    AddType application/x-msdownload exe
    AddType application/x-msdownload msi
    AddType application/x-msmediaview m13
    AddType application/x-msmediaview m14
    AddType application/x-msmediaview mvb
    AddType application/x-msmetafile wmf
    AddType application/x-msmoney mny
    AddType application/x-mspublisher pub
    AddType application/x-msschedule scd
    AddType application/x-msterminal trm
    AddType application/x-mswrite wri
    AddType application/x-netcdf cdf
    AddType application/x-netcdf nc
    AddType application/x-pkcs12 p12
    AddType application/x-pkcs12 pfx
    AddType application/x-pkcs7-certificates p7b
    AddType application/x-pkcs7-certificates spc
    AddType application/x-pkcs7-certreqresp p7r
    AddType application/x-quicktimeplayer qtl
    AddType application/x-rar-compressed rar
    AddType application/x-sh sh
    AddType application/x-shar shar
    AddType application/x-shockwave-flash swf
    AddType application/x-stuffit sit
    AddType application/x-stuffitx sitx
    AddType application/x-sv4cpio sv4cpio
    AddType application/x-sv4crc sv4crc
    AddType application/x-tar tar
    AddType application/x-tar tgz
    AddType application/x-tcl tcl
    AddType application/x-tex tex
    AddType application/x-texinfo texi
    AddType application/x-texinfo texinfo
    AddType application/x-ustar ustar
    AddType application/x-wais-source src
    AddType application/x-x509-ca-cert crt
    AddType application/x-x509-ca-cert der
    AddType application/xenc+xml xenc
    AddType application/xhtml+xml xht
    AddType application/xhtml+xml xhtm
    AddType application/xhtml+xml xhtml
    AddType application/xml xml
    AddType application/xml xsl
    AddType application/xml-dtd dtd
    AddType application/xop+xml xop
    AddType application/xslt+xml xslt
    AddType application/xspf+xml xspf
    AddType application/xv+xml mxml
    AddType application/xv+xml xhvml
    AddType application/xv+xml xvm
    AddType application/xv+xml xvml
    AddType application/zip zip
    AddType audio/basic au
    AddType audio/basic snd
    AddType audio/midi kar
    AddType audio/midi mid
    AddType audio/midi midi
    AddType audio/midi rmi
    AddType audio/mp4 mp4a
    AddType audio/mp4a-latm m4a
    AddType audio/mp4a-latm m4p
    AddType audio/mpeg m2a
    AddType audio/mpeg m3a
    AddType audio/mpeg mp2
    AddType audio/mpeg mp2a
    AddType audio/mpeg mp3
    AddType audio/mpeg mpga
    AddType audio/vnd.digital-winds eol
    AddType audio/vnd.lucent.voice lvp
    AddType audio/vnd.nuera.ecelp4800 ecelp4800
    AddType audio/vnd.nuera.ecelp7470 ecelp7470
    AddType audio/vnd.nuera.ecelp9600 ecelp9600
    AddType audio/wav wav
    AddType audio/x-aiff aif
    AddType audio/x-aiff aifc
    AddType audio/x-aiff aiff
    AddType audio/x-m4a m4a
    AddType audio/x-mpegurl m3u
    AddType audio/x-ms-wax wax
    AddType audio/x-ms-wma wma
    AddType audio/x-pn-realaudio ra
    AddType audio/x-pn-realaudio ram
    AddType audio/x-pn-realaudio rm
    AddType audio/x-pn-realaudio-plugin rmp
    AddType audio/x-scpls pls
    AddType audio/x-wav wav
    AddType chemical/x-cdx cdx
    AddType chemical/x-cif cif
    AddType chemical/x-cmdf cmdf
    AddType chemical/x-cml cml
    AddType chemical/x-csml csml
    AddType chemical/x-pdb pdb
    AddType chemical/x-xyz xyz
    AddType image/bmp bmp
    AddType image/cgm cgm
    AddType image/g3fax g3
    AddType image/gif gif
    AddType image/ief ief
    AddType image/jp2 jp2
    AddType image/jpeg jpe
    AddType image/jpeg jpeg
    AddType image/jpeg jpg
    AddType image/pict pct
    AddType image/pict pic
    AddType image/pict pict
    AddType image/png png
    AddType image/prs.btif btif
    AddType image/svg+xml svg
    AddType image/svg+xml svgz
    AddType image/tiff tif
    AddType image/tiff tiff
    AddType image/vnd.adobe.photoshop psd
    AddType image/vnd.djvu djv
    AddType image/vnd.djvu djvu
    AddType image/vnd.dwg dwg
    AddType image/vnd.dxf dxf
    AddType image/vnd.fastbidsheet fbs
    AddType image/vnd.fpx fpx
    AddType image/vnd.fst fst
    AddType image/vnd.fujixerox.edmics-mmr mmr
    AddType image/vnd.fujixerox.edmics-rlc rlc
    AddType image/vnd.microsoft.icon ico
    AddType image/vnd.ms-modi mdi
    AddType image/vnd.net-fpx npx
    AddType image/vnd.wap.wbmp wbmp
    AddType image/vnd.xiff xif
    AddType image/x-cmu-raster ras
    AddType image/x-cmx cmx
    AddType image/x-macpaint mac
    AddType image/x-macpaint pnt
    AddType image/x-macpaint pntg
    AddType image/x-pcx pcx
    AddType image/x-pict pct
    AddType image/x-pict pic
    AddType image/x-portable-anymap pnm
    AddType image/x-portable-bitmap pbm
    AddType image/x-portable-graymap pgm
    AddType image/x-portable-pixmap ppm
    AddType image/x-quicktime qti
    AddType image/x-quicktime qtif
    AddType image/x-rgb rgb
    AddType image/x-xbitmap xbm
    AddType image/x-xpixmap xpm
    AddType image/x-xwindowdump xwd
    AddType message/rfc822 eml
    AddType message/rfc822 mime
    AddType model/iges iges
    AddType model/iges igs
    AddType model/mesh mesh
    AddType model/mesh msh
    AddType model/mesh silo
    AddType model/vnd.dwf dwf
    AddType model/vnd.gdl gdl
    AddType model/vnd.gtw gtw
    AddType model/vnd.mts mts
    AddType model/vnd.vtu vtu
    AddType model/vrml vrml
    AddType model/vrml wrl
    AddType text/calendar ics
    AddType text/calendar ifb
    AddType text/css css
    AddType text/csv csv
    AddType text/html htm
    AddType text/html html
    AddType text/html shtml
    AddType text/plain asc
    AddType text/plain conf
    AddType text/plain def
    AddType text/plain in
    AddType text/plain list
    AddType text/plain log
    AddType text/plain text
    AddType text/plain txt
    AddType text/prs.lines.tag dsc
    AddType text/richtext rtx
    AddType text/rtf rtf
    AddType text/sgml sgm
    AddType text/sgml sgml
    AddType text/tab-separated-values tsv
    AddType text/troff man
    AddType text/troff me
    AddType text/troff ms
    AddType text/troff roff
    AddType text/troff t
    AddType text/troff tr
    AddType text/uri-list uri
    AddType text/uri-list uris
    AddType text/uri-list urls
    AddType text/vnd.fly fly
    AddType text/vnd.fmi.flexstor flx
    AddType text/vnd.in3d.3dml 3dml
    AddType text/vnd.in3d.spot spot
    AddType text/vnd.sun.j2me.app-descriptor jad
    AddType text/vnd.wap.wml wml
    AddType text/vnd.wap.wmlscript wmls
    AddType text/x-asm s
    AddType text/x-asm sm
    AddType text/x-c c
    AddType text/x-c cc
    AddType text/x-c cpp
    AddType text/x-c cxx
    AddType text/x-c dic
    AddType text/x-c h
    AddType text/x-c hh
    AddType text/x-fortran f
    AddType text/x-fortran f77
    AddType text/x-fortran f90
    AddType text/x-fortran for
    AddType text/x-java-source java
    AddType text/x-pascal p
    AddType text/x-pascal pas
    AddType text/x-setext etx
    AddType text/x-uuencode uu
    AddType text/x-vcalendar vcs
    AddType text/x-vcard vcf
    AddType video/3gp2 3gp2
    AddType video/3gpp 3gp
    AddType video/3gpp 3gpp
    AddType video/3gpp2 3g2
    AddType video/h261 h261
    AddType video/h263 h263
    AddType video/h264 h264
    AddType video/jpeg jpgv
    AddType video/jpm jpgm
    AddType video/jpm jpm
    AddType video/mj2 mj2
    AddType video/mj2 mjp2
    AddType video/mp4 m4v
    AddType video/mp4 mp4
    AddType video/mp4 mp4v
    AddType video/mp4 mpg4
    AddType video/mpeg m1v
    AddType video/mpeg m2v
    AddType video/mpeg mpe
    AddType video/mpeg mpeg
    AddType video/mpeg mpg
    AddType video/quicktime mov
    AddType video/quicktime qt
    AddType video/vnd.fvt fvt
    AddType video/vnd.mpegurl m4u
    AddType video/vnd.mpegurl mxu
    AddType video/vnd.vivo viv
    AddType video/x-dv dif
    AddType video/x-dv dv
    AddType video/x-fli fli
    AddType video/x-ms-asf asf
    AddType video/x-ms-asf asx
    AddType video/x-ms-wm wm
    AddType video/x-ms-wmv wmv
    AddType video/x-ms-wmx wmx
    AddType video/x-ms-wvx wvx
    AddType video/x-msvideo avi
    AddType video/x-sgi-movie movie
    AddType x-conference/x-cooltalk ice
    # Settings for hosting different languages.
    # Required modules: mod_mime, mod_negotiation
    # DefaultLanguage and AddLanguage allows you to specify the language of
    # a document. You can then use content negotiation to give a browser a
    # file in a language the user can understand.
    # Specify a default language. This means that all data
    # going out without a specific language tag (see below) will
    # be marked with this one. You probably do NOT want to set
    # this unless you are sure it is correct for all cases.
    # * It is generally better to not mark a page as
    # * being a certain language than marking it with the wrong
    # * language!
    # DefaultLanguage nl
    # Note 1: The suffix does not have to be the same as the language
    # keyword --- those with documents in Polish (whose net-standard
    # language code is pl) may wish to use "AddLanguage pl .po" to
    # avoid the ambiguity with the common suffix for perl scripts.
    # Note 2: The example entries below illustrate that in some cases
    # the two character 'Language' abbreviation is not identical to
    # the two character 'Country' code for its country,
    # E.g. 'Danmark/dk' versus 'Danish/da'.
    # Note 3: In the case of 'ltz' we violate the RFC by using a three char
    # specifier. There is 'work in progress' to fix this and get
    # the reference data for rfc1766 cleaned up.
    # Catalan (ca) - Croatian (hr) - Czech (cs) - Danish (da) - Dutch (nl)
    # English (en) - Esperanto (eo) - Estonian (et) - French (fr) - German (de)
    # Greek-Modern (el) - Hebrew (he) - Italian (it) - Japanese (ja)
    # Korean (ko) - Luxembourgeois* (ltz) - Norwegian Nynorsk (nn)
    # Norwegian (no) - Polish (pl) - Portugese (pt)
    # Brazilian Portuguese (pt-BR) - Russian (ru) - Swedish (sv)
    # Simplified Chinese (zh-CN) - Spanish (es) - Traditional Chinese (zh-TW)
    AddLanguage ca .ca
    AddLanguage cs .cz .cs
    AddLanguage da .dk
    AddLanguage de .de
    AddLanguage el .el
    AddLanguage en .en
    AddLanguage eo .eo
    AddLanguage es .es
    AddLanguage et .et
    AddLanguage fr .fr
    AddLanguage he .he
    AddLanguage hr .hr
    AddLanguage it .it
    AddLanguage ja .ja
    AddLanguage ko .ko
    AddLanguage ltz .ltz
    AddLanguage nl .nl
    AddLanguage nn .nn
    AddLanguage no .no
    AddLanguage pl .po
    AddLanguage pt .pt
    AddLanguage pt-BR .pt-br
    AddLanguage ru .ru
    AddLanguage sv .sv
    AddLanguage zh-CN .zh-cn
    AddLanguage zh-TW .zh-tw
    # LanguagePriority allows you to give precedence to some languages
    # in case of a tie during content negotiation.
    # Just list the languages in decreasing order of preference. We have
    # more or less alphabetized them here. You probably want to change this.
    LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW
    # ForceLanguagePriority allows you to serve a result page rather than
    # MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback)
    # [in case no accepted languages matched the available variants]
    ForceLanguagePriority Prefer Fallback
    # Commonly used filename extensions to character sets. You probably
    # want to avoid clashes with the language extensions, unless you
    # are good at carefully testing your setup after each change.
    # See http://www.iana.org/assignments/character-sets for the
    # official list of charset names and their respective RFCs.
    AddCharset us-ascii.ascii .us-ascii
    AddCharset ISO-8859-1 .iso8859-1 .latin1
    AddCharset ISO-8859-2 .iso8859-2 .latin2 .cen
    AddCharset ISO-8859-3 .iso8859-3 .latin3
    AddCharset ISO-8859-4 .iso8859-4 .latin4
    AddCharset ISO-8859-5 .iso8859-5 .cyr .iso-ru
    AddCharset ISO-8859-6 .iso8859-6 .arb .arabic
    AddCharset ISO-8859-7 .iso8859-7 .grk .greek
    AddCharset ISO-8859-8 .iso8859-8 .heb .hebrew
    AddCharset ISO-8859-9 .iso8859-9 .latin5 .trk
    AddCharset ISO-8859-10 .iso8859-10 .latin6
    AddCharset ISO-8859-13 .iso8859-13
    AddCharset ISO-8859-14 .iso8859-14 .latin8
    AddCharset ISO-8859-15 .iso8859-15 .latin9
    AddCharset ISO-8859-16 .iso8859-16 .latin10
    AddCharset ISO-2022-JP .iso2022-jp .jis
    AddCharset ISO-2022-KR .iso2022-kr .kis
    AddCharset ISO-2022-CN .iso2022-cn .cis
    AddCharset Big5.Big5 .big5 .b5
    AddCharset cn-Big5 .cn-big5
    # For russian, more than one charset is used (depends on client, mostly):
    AddCharset WINDOWS-1251 .cp-1251 .win-1251
    AddCharset CP866 .cp866
    AddCharset KOI8 .koi8
    AddCharset KOI8-E .koi8-e
    AddCharset KOI8-r .koi8-r .koi8-ru
    AddCharset KOI8-U .koi8-u
    AddCharset KOI8-ru .koi8-uk .ua
    AddCharset ISO-10646-UCS-2 .ucs2
    AddCharset ISO-10646-UCS-4 .ucs4
    AddCharset UTF-7 .utf7
    AddCharset UTF-8 .utf8
    AddCharset UTF-16 .utf16
    AddCharset UTF-16BE .utf16be
    AddCharset UTF-16LE .utf16le
    AddCharset UTF-32 .utf32
    AddCharset UTF-32BE .utf32be
    AddCharset UTF-32LE .utf32le
    AddCharset euc-cn .euc-cn
    AddCharset euc-gb .euc-gb
    AddCharset euc-jp .euc-jp
    AddCharset euc-kr .euc-kr
    #Not sure how euc-tw got in - IANA doesn't list it???
    AddCharset EUC-TW .euc-tw
    AddCharset gb2312 .gb2312 .gb
    AddCharset iso-10646-ucs-2 .ucs-2 .iso-10646-ucs-2
    AddCharset iso-10646-ucs-4 .ucs-4 .iso-10646-ucs-4
    AddCharset shift_jis .shift_jis .sjis
    </IfModule>
    ## The modmimemagic module allows the server to use various hints from the
    ## contents of the file itself to determine its type. The MIMEMagicFile
    ## directive tells the module where the hint definitions are located.
    <IfModule modmimemagic.c>
    MIMEMagicFile /etc/apache2/magic
    </IfModule>
    ## HostnameLookups: Log the names of clients or just their IP addresses
    ## e.g., www.apache.org (on) or 204.62.129.132 (off).
    ## The default is off because it'd be overall better for the net if people
    ## had to knowingly turn this feature on, since enabling it means that
    ## each client request will result in AT LEAST one lookup request to the
    ## nameserver.
    HostnameLookups Off
    ## LogLevel: Control the number of messages logged to the error_log.
    ## Possible values include: debug, info, notice, warn, error, crit,
    ## alert, emerg.
    LogLevel warn
    <IfModule modlogconfig.c>
    # The following directives define some format nicknames for use with
    # a CustomLog directive (see below).
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    LogFormat "%{Referer}i -> %U" referer
    LogFormat "%{User-agent}i" agent
    <IfModule mod_logio.c>
    # You need to enable mod_logio.c to use %I and %O
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>
    # The location and format of the access logfile (Common Logfile Format).
    # If you do not define any access logfiles within a <VirtualHost>
    # container, they will be logged here. Contrariwise, if you do
    # define per-<VirtualHost> access logfiles, transactions will be
    # logged therein and not in this file.
    #### For Mac OS X Server: Server Admin manages CustomLog directives
    #### on a virtual host basis.
    #CustomLog /var/log/apache2/access_log common
    # If you prefer a logfile with access, agent, and referer information
    # (Combined Logfile Format) you can use the following directive.
    #CustomLog /var/log/apache2/access_log combined
    </IfModule>
    ## Optionally add a line containing the server version and virtual host
    ## name to server-generated pages (error documents, FTP directory listings,
    ## mod_status and mod_info output etc., but not CGI generated documents).
    ## Set to "EMail" to also include a mailto: link to the ServerAdmin.
    ## Set to one of: On | Off | EMail
    ServerSignature On
    UseCanonicalName Off
    ## Aliases: Add here as many aliases as you need (with no limit). The format is
    ## Alias fakename realname
    <IfModule mod_alias.c>
    # Redirect: Allows you to tell clients about documents that used to
    # exist in your server's namespace, but do not anymore. The client
    # will make a new request for the document at its new location.
    # Example:
    # Redirect permanent /foo http://www.example.com/bar
    # Alias: Maps web paths into filesystem paths and is used to
    # access content that does not live under the DocumentRoot.
    # Example:
    # Alias /webpath /full/filesystem/path
    # If you include a trailing / on /webpath then the server will
    # require it to be present in the URL. You will also likely
    # need to provide a <Directory> section to allow access to
    # the filesystem path.
    # ScriptAlias: This controls which directories contain server scripts.
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the target directory are treated as applications and
    # run by the server when requested rather than as documents sent to the
    # client. The same rules about trailing "/" apply to ScriptAlias
    # directives as to Alias.
    ScriptAliasMatch ^/cgi-bin/((?!(?i:webobjects)).*$) "/Library/WebServer/CGI-Executables/$1"
    #### For Mac OS X Server: Uncomment this line to enable web-based
    #### configuration of mailman:
    #Include /etc/apache2/httpd_mailman.conf
    <IfModule mod_setenvif.c>
    <IfModule mod_negotiation.c>
    # Allow convenient access to Apache manual
    AliasMatch ^/manual(?:/(?:de|en|es|fr|ja|ko|pt-br|ru))?(/.*)?$ "/Library/WebServer/share/httpd/manual$1"
    <Directory "/Library/WebServer/share/httpd/manual">
    Options Indexes
    AllowOverride None
    Order allow,deny
    Allow from all
    <Files *.html>
    SetHandler type-map
    </Files>
    SetEnvIf Request_URI ^/manual/(de|en|es|fr|ja|ko|pt-br|ru)/ prefer-language=$1
    RedirectMatch 301 ^/manual(?:/(de|en|es|fr|ja|ko|pt-br|ru)){2,}(/.*)?$ /manual/$1$2
    LanguagePriority en de es fr ja ko pt-br ru ForceLanguagePriority Prefer Fallback
    </Directory>
    </IfModule>
    </IfModule>
    </IfModule>
    ## Directives controlling the display of server-generated directory listings.
    #### For Mac OS X Server: Note that indexing is further controlled
    #### by the Server Admin application, which adds "Options +/-Indexes
    #### in the virtual host scope.
    <IfModule mod_autoindex.c>
    ## FancyIndexing is whether you want fancy directory indexing or standard
    IndexOptions FancyIndexing
    ## AddIcon* directives tell the server which icon to show for different
    ## files or filename extensions. These are only displayed for
    ## FancyIndexed directories.
    AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
    AddIconByType (TXT,/icons/text.gif) text/*
    AddIconByType (IMG,/icons/image2.gif) image/*
    AddIconByType (SND,/icons/sound2.gif) audio/*
    AddIconByType (VID,/icons/movie.gif) video/*
    AddIcon /icons/binary.gif .bin .exe
    AddIcon /icons/binhex.gif .hqx
    AddIcon /icons/tar.gif .tar
    AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
    AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
    AddIcon /icons/a.gif .ps .ai .eps
    AddIcon /icons/layout.gif .html .shtml .htm .pdf
    AddIcon /icons/text.gif .txt
    AddIcon /icons/c.gif .c
    AddIcon /icons/p.gif .pl .py
    AddIcon /icons/f.gif .for
    AddIcon /icons/dvi.gif .dvi
    AddIcon /icons/uuencoded.gif .uu
    AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
    AddIcon /icons/tex.gif .tex
    AddIcon /icons/bomb.gif core
    AddIcon /icons/back.gif ..
    AddIcon /icons/hand.right.gif README
    AddIcon /icons/folder.gif ^^DIRECTORY^^
    AddIcon /icons/blank.gif ^^BLANKICON^^
    ## DefaultIcon is which icon to show for files which do not have an icon
    ## explicitly set.
    DefaultIcon /icons/unknown.gif
    ## AddDescription allows you to place a short description after a file in
    ## server-generated indexes. These are only displayed for FancyIndexed
    ## directories.
    ## Format: AddDescription "description" filename
    #AddDescription "GZIP compressed document" .gz
    #AddDescription "tar archive" .tar
    #AddDescription "GZIP compressed tar archive" .tgz
    #AddDescription "Mac OS Disk Image file" .dmg
    ## ReadmeName is the name of the README file the server will look for by
    ## default, and append to directory listings.
    ## HeaderName is the name of a file which should be prepended to
    ## directory indexes.
    ## If MultiViews are amongst the Options in effect, the server will
    ## first look for name.html and include it if found. If name.html
    ## doesn't exist, the server will then look for name.txt and include
    ## it as plaintext if found.
    ReadmeName README
    HeaderName HEADER
    ## IndexIgnore is a set of filenames which directory indexing should ignore
    ## and not include in the listing. Shell-style wildcarding is permitted.
    IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
    </IfModule>
    ## MetaDir: specifies the name of the directory in which Apache can find
    ## meta information files. These files contain additional HTTP headers
    ## to include when sending the document
    #MetaDir .web
    ## MetaSuffix: specifies the file name suffix for the file containing the
    ## meta information.
    #MetaSuffix .meta
    # Customizable error responses come in three flavors:
    # 1) plain text 2) local redirects 3) external redirects
    # Some examples:
    #ErrorDocument 500 "The server made a boo boo."
    #ErrorDocument 404 /missing.html
    #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
    #ErrorDocument 402 http://www.example.com/subscription_info.html
    # The configuration below implements multi-language error documents through
    # content-negotiation, and via the default Alias for /error in the vhost config file.
    <Directory "/usr/share/httpd/error">
    AllowOverride None
    Options IncludesNoExec
    AddOutputFilter Includes html
    AddHandler type-map var
    Order allow,deny
    Allow from all
    LanguagePriority en cs de es fr it ja ko nl pl pt-br ro sv tr
    ForceLanguagePriority Prefer Fallback
    </Directory>
    ErrorDocument 400 /error/HTTPBADREQUEST.html.var
    ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
    ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var
    ErrorDocument 404 /error/HTTPNOTFOUND.html.var
    ErrorDocument 405 /error/HTTPMETHOD_NOTALLOWED.html.var
    ErrorDocument 408 /error/HTTPREQUEST_TIMEOUT.html.var
    ErrorDocument 410 /error/HTTP_GONE.html.var
    ErrorDocument 411 /error/HTTPLENGTHREQUIRED.html.var
    ErrorDocument 412 /error/HTTPPRECONDITIONFAILED.html.var
    ErrorDocument 413 /error/HTTPREQUEST_ENTITY_TOOLARGE.html.var
    ErrorDocument 414 /error/HTTPREQUEST_URI_TOOLARGE.html.var
    ErrorDocument 415 /error/HTTPUNSUPPORTED_MEDIATYPE.html.var
    ErrorDocument 500 /error/HTTPINTERNAL_SERVERERROR.html.var
    ErrorDocument 501 /error/HTTPNOTIMPLEMENTED.html.var
    ErrorDocument 502 /error/HTTPBADGATEWAY.html.var
    ErrorDocument 503 /error/HTTPSERVICEUNAVAILABLE.html.var
    ErrorDocument 506 /error/HTTPVARIANT_ALSOVARIES.html.var
    # Allow server status reports generated by mod_status,
    # with the URL of http://servername/server-status
    <IfModule mod_status.c>
    <Location /server-status>
    SetHandler server-status
    Order deny,allow
    Deny from all
    Allow from 127.0.0.1
    </Location>
    # ExtendedStatus controls whether Apache will generate "full" status
    # information (ExtendedStatus On) or just basic information (ExtendedStatus
    # Off) when the "server-status" handler is called. The default is Off.
    ExtendedStatus On
    </IfModule>
    # Allow remote server configuration reports, with the URL of
    # http://servername/server-info (requires that mod_info.c be loaded).
    #<IfModule mod_info.c>
    # <Location /server-info>
    # SetHandler server-info
    # Order deny,allow
    # Deny from all
    # Allow from .your-domain.com
    # </Location>
    #</IfModule>
    ## Proxy Server directives.
    <IfModule mod_proxy.c>
    ProxyRequests Off
    <IfModule moddiskcache.c>
    CacheEnable disk /
    CacheRoot "/var/run/proxy"
    </IfModule>
    </IfModule>
    ## SSL stuff
    <IfModule mod_ssl.c>
    SetEnvIf User-Agent ".MSIE." nokeepalive ssl-unclean-shutdown
    SSLPassPhraseDialog exec:/etc/apache2/getsslpassphrase
    SSLSessionCache shmcb:/var/run/ssl_scache(512000)
    SSLSessionCacheTimeout 300
    SSLMutex file:/var/log/apache2/ssl_mutex
    SSLRandomSeed startup builtin
    SSLRandomSeed connect builtin
    AddType application/x-x509-ca-cert crt
    AddType application/x-pkcs7-crl crl
    </IfModule>
    <IfModule mod_jk.c>
    JkWorkersFile /etc/apache2/workers.properties
    JkLogFile /var/log/apache2/mod_jk.log
    JkLogLevel error
    JkMount /*.jsp JBoss1
    JkMount /servlet/* JBoss1
    JkMount /examples/* JBoss1
    </IfModule>
    ## The default server is used for status on a special port
    #ServerName www.example.com
    Listen 127.0.0.1:9010
    DocumentRoot "/var/empty"
    ErrorLog "/var/log/apache2/error_log"
    <Directory /var/empty>
    Order Deny,Allow
    Deny from All
    </Directory>
    <IfModule modspotlightapple2.c>
    Spotlight On
    </IfModule>
    <IfModule modauth_digestapple.c>
    BrowserMatch "MSIE" AuthDigestEnableQueryStringHack=On
    </IfModule>
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_METHOD} ^TRACE
    RewriteRule .* - [F]
    </IfModule>
    <IfModule mod_headers.c>
    Header add MS-Author-Via "DAV"
    RequestHeader set XFORWARDEDPROTO 'https' env=https
    </IfModule>
    <IfModule mod_encoding.c>
    EncodingEngine on
    NormalizeUsername on
    DefaultClientEncoding UTF-8
    # Windows XP?
    AddClientEncoding "Microsoft-WebDAV-MiniRedir/" MSUTF-8
    # Windows 2K SP2 with .NET
    AddClientEncoding "(Microsoft .* DAV\$)" MSUTF-8
    # Windows 2K SP2/Windows XP
    AddClientEncoding "(Microsoft .* DAV 1.1)" CP932
    # Windows XP?
    AddClientEncoding "Microsoft-WebDAV*" CP932
    # RealPlayer
    AddClientEncoding "RMA/*" CP932
    # MacOS X webdavfs
    AddClientEncoding "WebDAVFS" UTF-8
    # cadaver
    AddClientEncoding "cadaver/" EUC-JP
    </IfModule>
    RLimitNPROC max max
    ExtendedStatus On
    Timeout 300
    KeepAlive On
    MaxKeepAliveRequests 500
    KeepAliveTimeout 15
    # As of Mac OS X Server 10.5, the compiled-in server limit is 2048
    ServerLimit 2048
    # Server Admin manages ListenBackLog as a function of MaxClients: min(511, MaxClients/2)
    MaxClients 1024
    ListenBackLog 512
    # Including WebObjects Configs
    Include /System/Library/WebObjects/Adaptors/Apache2.2/apache.conf
    #### The following Include directive is essential for the virtual hosts to be usable.
    Include "/etc/apache2/sites/*.conf"
    ========HTTPD.CONF==========

    I am modifying the correct httpd.conf file on the server, it just doesn't seem to work. - If I put the rewrite rules in the <Directory /> the rewrite works but it adds /Library/WebServer/Documents to the URL.
    I also tried putting the rewrite rules in <IfModule mod_rewrite.c> but that did not work either.
    mod_rewrite is enabled and running on the server.
    I will post the rewrite rules again in the code brackets. Sorry for the long post. - If some one can try them out on their Leopard Server to see if they can get them to work, it would be much appreciated. Again, these work on my Leopard Client but I can't get them to work on Server.
    -- The httpd.conf file posted above is just the default conf file found in /private/etc/apache2/
    <code>
    RewriteEngine On
    Options +FollowSymLinks
    RewriteRule ^(.+)/$ http://%{HTTP_HOST}$1 [R=301, L]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.php(.*)\ HTTP
    RewriteRule (.+)\.php(.*)$ $1$2 [R, L]]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.asp(.*)\ HTTP
    RewriteRule (.+)\.asp(.*)$ $1$2 [R, L]]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.aspx(.*)\ HTTP
    RewriteRule (.+)\.aspx(.*)$ $1$2 [R, L]]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.htm.(.)\ HTTP
    RewriteRule (.+)\.htm.(.)$ $1$2 [R, L]]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.cfm(.*)\ HTTP
    RewriteRule (.+)\.cfm(.*)$ $1$2 [R, L]]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.bak(.*)\ HTTP
    RewriteRule (.+)\.bak(.*)$ $1$2 [R, L]]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.inc(.*)\ HTTP
    RewriteRule (.+)\.inc(.*)$ $1$2 [R, L]]
    RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\..(.)\ HTTP
    RewriteRule (.+)\..(.)$ $1$2 [R, L]]
    <code>

  • Won't load php_oci8.dll: PHP5.2.1-dev, apache2.2.3, oracle10express on XP

    PROBLEM
    Unable to load php_oci8.dll: PHP5.2.1-dev, apache2.2.3, oracle10express on XP Home Edition with SP2.
    STEPS TO REPRODUCE
    1)
    Follow the procedure here: http://www.oracle.com/technology/tech/php/htdocs/inst_php_apache_windows.html
    using PHP5.2.1-dev, apache2.2.3, and oracle 10g express (the latest versions as of 11-08-06).
    2)
    Rename the PHP directory to C:\PHP5 and rename any references to in in php.ini and httpd.conf accordingly
    3)
    Restart Apache
    4)
    Use the test code for phpinfo.php to see if OCI is loaded (it won't be)
    5)
    Check Apache's error log and it will confirm that it could not load php_oci8.dll
    ADDITIONAL INFORMATION
    PHP.INI
    [PHP]
    ; About php.ini ;
    ; This file controls many aspects of PHP's behavior. In order for PHP to
    ; read it, it must be named 'php.ini'. PHP looks for it in the current
    ; working directory, in the path designated by the environment variable
    ; PHPRC, and in the path that was defined in compile time (in that order).
    ; Under Windows, the compile-time path is the Windows directory. The
    ; path in which the php.ini file is looked for can be overridden using
    ; the -c argument in command line mode.
    ; The syntax of the file is extremely simple. Whitespace and Lines
    ; beginning with a semicolon are silently ignored (as you probably guessed).
    ; Section headers (e.g. [Foo]) are also silently ignored, even though
    ; they might mean something in the future.
    ; Directives are specified using the following syntax:
    ; directive = value
    ; Directive names are case sensitive - foo=bar is different from FOO=bar.
    ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
    ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
    ; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo").
    ; Expressions in the INI file are limited to bitwise operators and parentheses:
    ; | bitwise OR
    ; & bitwise AND
    ; ~ bitwise NOT
    ; ! boolean NOT
    ; Boolean flags can be turned on using the values 1, On, True or Yes.
    ; They can be turned off using the values 0, Off, False or No.
    ; An empty string can be denoted by simply not writing anything after the equal
    ; sign, or by using the None keyword:
    ; foo = ; sets foo to an empty string
    ; foo = none ; sets foo to an empty string
    ; foo = "none" ; sets foo to the string 'none'
    ; If you use constants in your value, and these constants belong to a
    ; dynamically loaded extension (either a PHP extension or a Zend extension),
    ; you may only use these constants after the line that loads the extension.
    ; About this file ;
    ; This is the recommended, PHP 5-style version of the php.ini-dist file. It
    ; sets some non standard settings, that make PHP more efficient, more secure,
    ; and encourage cleaner coding.
    ; The price is that with these settings, PHP may be incompatible with some
    ; applications, and sometimes, more difficult to develop with. Using this
    ; file is warmly recommended for production sites. As all of the changes from
    ; the standard settings are thoroughly documented, you can go over each one,
    ; and decide whether you want to use it or not.
    ; For general information about the php.ini file, please consult the php.ini-dist
    ; file, included in your PHP distribution.
    ; This file is different from the php.ini-dist file in the fact that it features
    ; different values for several directives, in order to improve performance, while
    ; possibly breaking compatibility with the standard out-of-the-box behavior of
    ; PHP. Please make sure you read what's different, and modify your scripts
    ; accordingly, if you decide to use this file instead.
    ; - register_long_arrays = Off [Performance]
    ; Disables registration of the older (and deprecated) long predefined array
    ; variables ($HTTP__VARS).  Instead, use the superglobals that were
    ; introduced in PHP 4.1.0
    ; - display_errors = Off [Security]
    ; With this directive set to off, errors that occur during the execution of
    ; scripts will no longer be displayed as a part of the script output, and thus,
    ; will no longer be exposed to remote users. With some errors, the error message
    ; content may expose information about your script, web server, or database
    ; server that may be exploitable for hacking. Production sites should have this
    ; directive set to off.
    ; - log_errors = On [Security]
    ; This directive complements the above one. Any errors that occur during the
    ; execution of your script will be logged (typically, to your server's error log,
    ; but can be configured in several ways). Along with setting display_errors to off,
    ; this setup gives you the ability to fully understand what may have gone wrong,
    ; without exposing any sensitive information to remote users.
    ; - output_buffering = 4096 [Performance]
    ; Set a 4KB output buffer. Enabling output buffering typically results in less
    ; writes, and sometimes less packets sent on the wire, which can often lead to
    ; better performance. The gain this directive actually yields greatly depends
    ; on which Web server you're working with, and what kind of scripts you're using.
    ; - register_argc_argv = Off [Performance]
    ; Disables registration of the somewhat redundant $argv and $argc global
    ; variables.
    ; - magic_quotes_gpc = Off [Performance]
    ; Input data is no longer escaped with slashes so that it can be sent into
    ; SQL databases without further manipulation. Instead, you should use the
    ; function addslashes() on each input element you wish to send to a database.
    ; - variables_order = "GPCS" [Performance]
    ; The environment variables are not hashed into the $_ENV. To access
    ; environment variables, you can use getenv() instead.
    ; - error_reporting = E_ALL [Code Cleanliness, Security(?)]
    ; By default, PHP suppresses errors of type E_NOTICE. These error messages
    ; are emitted for non-critical errors, but that could be a symptom of a bigger
    ; problem. Most notably, this will cause error messages about the use
    ; of uninitialized variables to be displayed.
    ; - allow_call_time_pass_reference = Off [Code cleanliness]
    ; It's not possible to decide to force a variable to be passed by reference
    ; when calling a function. The PHP 4 style to do this is by making the
    ; function require the relevant argument by reference.
    ; Language Options ;
    ; Enable the PHP scripting language engine under Apache.
    engine = On
    ; Enable compatibility mode with Zend Engine 1 (PHP 4.x)
    zend.ze1_compatibility_mode = Off
    ; Allow the <? tag. Otherwise, only <?php and <script> tags are recognized.
    ; NOTE: Using short tags should be avoided when developing applications or
    ; libraries that are meant for redistribution, or deployment on PHP
    ; servers which are not under your control, because short tags may not
    ; be supported on the target server. For portable, redistributable code,
    ; be sure not to use short tags.
    short_open_tag = Off
    ; Allow ASP-style <% %> tags.
    asp_tags = Off
    ; The number of significant digits displayed in floating point numbers.
    precision = 14
    ; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
    y2k_compliance = On
    ; Output buffering allows you to send header lines (including cookies) even
    ; after you send body content, at the price of slowing PHP's output layer a
    ; bit. You can enable output buffering during runtime by calling the output
    ; buffering functions. You can also enable output buffering for all files by
    ; setting this directive to On. If you wish to limit the size of the buffer
    ; to a certain size - you can use a maximum number of bytes instead of 'On', as
    ; a value for this directive (e.g., output_buffering=4096).
    output_buffering = 4096
    ; You can redirect all of the output of your scripts to a function. For
    ; example, if you set output_handler to "mb_output_handler", character
    ; encoding will be transparently converted to the specified encoding.
    ; Setting any output handler automatically turns on output buffering.
    ; Note: People who wrote portable scripts should not depend on this ini
    ; directive. Instead, explicitly set the output handler using ob_start().
    ; Using this ini directive may cause problems unless you know what script
    ; is doing.
    ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
    ; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
    ; Note: output_handler must be empty if this is set 'On' !!!!
    ; Instead you must use zlib.output_handler.
    ;output_handler =
    ; Transparent output compression using the zlib library
    ; Valid values for this option are 'off', 'on', or a specific buffer size
    ; to be used for compression (default is 4KB)
    ; Note: Resulting chunk size may vary due to nature of compression. PHP
    ; outputs chunks that are few hundreds bytes each as a result of
    ; compression. If you prefer a larger chunk size for better
    ; performance, enable output_buffering in addition.
    ; Note: You need to use zlib.output_handler instead of the standard
    ; output_handler, or otherwise the output will be corrupted.
    zlib.output_compression = Off
    ;zlib.output_compression_level = -1
    ; You cannot specify additional output handlers if zlib.output_compression
    ; is activated here. This setting does the same as output_handler but in
    ; a different order.
    ;zlib.output_handler =
    ; Implicit flush tells PHP to tell the output layer to flush itself
    ; automatically after every output block. This is equivalent to calling the
    ; PHP function flush() after each and every call to print() or echo() and each
    ; and every HTML block. Turning this option on has serious performance
    ; implications and is generally recommended for debugging purposes only.
    implicit_flush = Off
    ; The unserialize callback function will be called (with the undefined class'
    ; name as parameter), if the unserializer finds an undefined class
    ; which should be instantiated.
    ; A warning appears if the specified function is not defined, or if the
    ; function doesn't include/implement the missing class.
    ; So only set this entry, if you really want to implement such a
    ; callback-function.
    unserialize_callback_func=
    ; When floats & doubles are serialized store serialize_precision significant
    ; digits after the floating point. The default value ensures that when floats
    ; are decoded with unserialize, the data will remain the same.
    serialize_precision = 100
    ; Whether to enable the ability to force arguments to be passed by reference
    ; at function call time. This method is deprecated and is likely to be
    ; unsupported in future versions of PHP/Zend. The encouraged method of
    ; specifying which arguments should be passed by reference is in the function
    ; declaration. You're encouraged to try and turn this option Off and make
    ; sure your scripts work properly with it in order to ensure they will work
    ; with future versions of the language (you will receive a warning each time
    ; you use this feature, and the argument will be passed by value instead of by
    ; reference).
    allow_call_time_pass_reference = Off
    ; Safe Mode
    safe_mode = Off
    ; By default, Safe Mode does a UID compare check when
    ; opening files. If you want to relax this to a GID compare,
    ; then turn on safe_mode_gid.
    safe_mode_gid = Off
    ; When safe_mode is on, UID/GID checks are bypassed when
    ; including files from this directory and its subdirectories.
    ; (directory must also be in include_path or full path must
    ; be used when including)
    safe_mode_include_dir =
    ; When safe_mode is on, only executables located in the safe_mode_exec_dir
    ; will be allowed to be executed via the exec family of functions.
    safe_mode_exec_dir =
    ; Setting certain environment variables may be a potential security breach.
    ; This directive contains a comma-delimited list of prefixes. In Safe Mode,
    ; the user may only alter environment variables whose names begin with the
    ; prefixes supplied here. By default, users will only be able to set
    ; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
    ; Note: If this directive is empty, PHP will let the user modify ANY
    ; environment variable!
    safe_mode_allowed_env_vars = PHP_
    ; This directive contains a comma-delimited list of environment variables that
    ; the end user won't be able to change using putenv(). These variables will be
    ; protected even if safe_mode_allowed_env_vars is set to allow to change them.
    safe_mode_protected_env_vars = LD_LIBRARY_PATH
    ; open_basedir, if set, limits all file operations to the defined directory
    ; and below. This directive makes most sense if used in a per-directory
    ; or per-virtualhost web server configuration file. This directive is
    ; NOT affected by whether Safe Mode is turned On or Off.
    ;open_basedir =
    ; This directive allows you to disable certain functions for security reasons.
    ; It receives a comma-delimited list of function names. This directive is
    ; NOT affected by whether Safe Mode is turned On or Off.
    disable_functions =
    ; This directive allows you to disable certain classes for security reasons.
    ; It receives a comma-delimited list of class names. This directive is
    ; NOT affected by whether Safe Mode is turned On or Off.
    disable_classes =
    ; Colors for Syntax Highlighting mode. Anything that's acceptable in
    ; <span style="color: ???????"> would work.
    ;highlight.string = #DD0000
    ;highlight.comment = #FF9900
    ;highlight.keyword = #007700
    ;highlight.bg = #FFFFFF
    ;highlight.default = #0000BB
    ;highlight.html = #000000
    ; If enabled, the request will be allowed to complete even if the user aborts
    ; the request. Consider enabling it if executing long request, which may end up
    ; being interrupted by the user or a browser timing out.
    ; ignore_user_abort = On
    ; Determines the size of the realpath cache to be used by PHP. This value should
    ; be increased on systems where PHP opens many files to reflect the quantity of
    ; the file operations performed.
    ; realpath_cache_size=16k
    ; Duration of time, in seconds for which to cache realpath information for a given
    ; file or directory. For systems with rarely changing files, consider increasing this
    ; value.
    ; realpath_cache_ttl=120
    ; Misc
    ; Decides whether PHP may expose the fact that it is installed on the server
    ; (e.g. by adding its signature to the Web server header). It is no security
    ; threat in any way, but it makes it possible to determine whether you use PHP
    ; on your server or not.
    expose_php = On
    ; Resource Limits ;
    max_execution_time = 30 ; Maximum execution time of each script, in seconds
    max_input_time = 60     ; Maximum amount of time each script may spend parsing request data
    memory_limit = 16M ; Maximum amount of memory a script may consume (16MB)
    ; Error handling and logging ;
    ; error_reporting is a bit-field. Or each number up to get desired error
    ; reporting level
    ; E_ALL - All errors and warnings (doesn't include E_STRICT)
    ; E_ERROR - fatal run-time errors
    ; E_RECOVERABLE_ERROR - almost fatal run-time errors
    ; E_WARNING - run-time warnings (non-fatal errors)
    ; E_PARSE - compile-time parse errors
    ; E_NOTICE - run-time notices (these are warnings which often result
    ; from a bug in your code, but it's possible that it was
    ; intentional (e.g., using an uninitialized variable and
    ; relying on the fact it's automatically initialized to an
    ; empty string)
    ; E_STRICT - run-time notices, enable to have PHP suggest changes
    ; to your code which will ensure the best interoperability
    ; and forward compatibility of your code
    ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
    ; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
    ; initial startup
    ; E_COMPILE_ERROR - fatal compile-time errors
    ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
    ; E_USER_ERROR - user-generated error message
    ; E_USER_WARNING - user-generated warning message
    ; E_USER_NOTICE - user-generated notice message
    ; Examples:
    ; - Show all errors, except for notices and coding standards warnings
    ;error_reporting = E_ALL & ~E_NOTICE
    ; - Show all errors, except for notices
    ;error_reporting = E_ALL & ~E_NOTICE | E_STRICT
    ; - Show only errors
    ;error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR
    ; - Show all errors, except coding standards warnings
    error_reporting = E_ALL
    ; Print out errors (as a part of the output). For production web sites,
    ; you're strongly encouraged to turn this feature off, and use error logging
    ; instead (see below). Keeping display_errors enabled on a production web site
    ; may reveal security information to end users, such as file paths on your Web
    ; server, your database schema or other information.
    display_errors = On
    ; Even when display_errors is on, errors that occur during PHP's startup
    ; sequence are not displayed. It's strongly recommended to keep
    ; display_startup_errors off, except for when debugging.
    display_startup_errors = Off
    ; Log errors into a log file (server-specific log, stderr, or error_log (below))
    ; As stated above, you're strongly advised to use error logging in place of
    ; error displaying on production web sites.
    log_errors = On
    ; Set maximum length of log_errors. In error_log information about the source is
    ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
    log_errors_max_len = 1024
    ; Do not log repeated messages. Repeated errors must occur in same file on same
    ; line until ignore_repeated_source is set true.
    ignore_repeated_errors = Off
    ; Ignore source of message when ignoring repeated messages. When this setting
    ; is On you will not log errors with repeated messages from different files or
    ; source lines.
    ignore_repeated_source = Off
    ; If this parameter is set to Off, then memory leaks will not be shown (on
    ; stdout or in the log). This has only effect in a debug compile, and if
    ; error reporting includes E_WARNING in the allowed list
    report_memleaks = On
    ;report_zend_debug = 0
    ; Store the last error/warning message in $php_errormsg (boolean).
    track_errors = Off
    ; Disable the inclusion of HTML tags in error messages.
    ; Note: Never use this feature for production boxes.
    ;html_errors = Off
    ; If html_errors is set On PHP produces clickable error messages that direct
    ; to a page describing the error or function causing the error in detail.
    ; You can download a copy of the PHP manual from http://www.php.net/docs.php
    ; and change docref_root to the base URL of your local copy including the
    ; leading '/'. You must also specify the file extension being used including
    ; the dot.
    ; Note: Never use this feature for production boxes.
    ;docref_root = "/phpmanual/"
    ;docref_ext = .html
    ; String to output before an error message.
    ;error_prepend_string = "<font color=ff0000>"
    ; String to output after an error message.
    ;error_append_string = "</font>"
    ; Log errors to specified file.
    ;error_log = filename
    ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
    ;error_log = syslog
    ; Data Handling ;
    ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
    ; The separator used in PHP generated URLs to separate arguments.
    ; Default is "&".
    ;arg_separator.output = "&amp;"
    ; List of separator(s) used by PHP to parse input URLs into variables.
    ; Default is "&".
    ; NOTE: Every character in this directive is considered as separator!
    ;arg_separator.input = ";&"
    ; This directive describes the order in which PHP registers GET, POST, Cookie,
    ; Environment and Built-in variables (G, P, C, E & S respectively, often
    ; referred to as EGPCS or GPC). Registration is done from left to right, newer
    ; values override older values.
    variables_order = "GPCS"
    ; Whether or not to register the EGPCS variables as global variables. You may
    ; want to turn this off if you don't want to clutter your scripts' global scope
    ; with user data. This makes most sense when coupled with track_vars - in which
    ; case you can access all of the GPC variables through the $HTTP__VARS[],
    ; variables.
    ; You should do your best to write your scripts so that they do not require
    ; register_globals to be on; Using form variables as globals can easily lead
    ; to possible security problems, if the code is not very well thought of.
    register_globals = Off
    ; Whether or not to register the old-style input arrays, HTTP_GET_VARS
    ; and friends. If you're not using them, it's recommended to turn them off,
    ; for performance reasons.
    register_long_arrays = Off
    ; This directive tells PHP whether to declare the argv&argc variables (that
    ; would contain the GET information). If you don't use these variables, you
    ; should turn it off for increased performance.
    register_argc_argv = Off
    ; When enabled, the SERVER and ENV variables are created when they're first
    ; used (Just In Time) instead of when the script starts. If these variables
    ; are not used within a script, having this directive on will result in a
    ; performance gain. The PHP directives register_globals, register_long_arrays,
    ; and register_argc_argv must be disabled for this directive to have any affect.
    auto_globals_jit = On
    ; Maximum size of POST data that PHP will accept.
    post_max_size = 8M
    ; Magic quotes
    ; Magic quotes for incoming GET/POST/Cookie data.
    magic_quotes_gpc = Off
    ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
    magic_quotes_runtime = Off
    ; Use Sybase-style magic quotes (escape ' with '' instead of \').
    magic_quotes_sybase = Off
    ; Automatically add files before or after any PHP document.
    auto_prepend_file =
    auto_append_file =
    ; As of 4.0b4, PHP always outputs a character encoding by default in
    ; the Content-type: header. To disable sending of the charset, simply
    ; set it to be empty.
    ; PHP's built-in default is text/html
    default_mimetype = "text/html"
    ;default_charset = "iso-8859-1"
    ; Always populate the $HTTP_RAW_POST_DATA variable.
    ;always_populate_raw_post_data = On
    ; Paths and Directories ;
    ; UNIX: "/path1:/path2"
    ;include_path = ".:/php/includes"
    ; Windows: "\path1;\path2"
    ;include_path = ".;c:\php\includes"
    ; The root of the PHP pages, used only if nonempty.
    ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
    ; if you are running php as a CGI under any web server (other than IIS)
    ; see documentation for security issues. The alternate is to use the
    ; cgi.force_redirect configuration below
    doc_root =
    ; The directory under which PHP opens the script using /~username used only
    ; if nonempty.
    user_dir =
    ; Directory in which the loadable extensions (modules) reside.
    extension_dir = "C:\php5\ext"
    ; Whether or not to enable the dl() function. The dl() function does NOT work
    ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
    ; disabled on them.
    enable_dl = On
    ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
    ; most web servers. Left undefined, PHP turns this on by default. You can
    ; turn it off here AT YOUR OWN RISK
    ; **You CAN safely turn this off for IIS, in fact, you MUST.**
    ; cgi.force_redirect = 1
    ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
    ; every request.
    ; cgi.nph = 1
    ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
    ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
    ; will look for to know it is OK to continue execution. Setting this variable MAY
    ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
    ; cgi.redirect_status_env = ;
    ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
    ; security tokens of the calling client. This allows IIS to define the
    ; security context that the request runs under. mod_fastcgi under Apache
    ; does not currently support this feature (03/17/2002)
    ; Set to 1 if running under IIS. Default is zero.
    ; fastcgi.impersonate = 1;
    ; Disable logging through FastCGI connection
    ; fastcgi.log = 0
    ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
    ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
    ; is supported by Apache. When this option is set to 1 PHP will send
    ; RFC2616 compliant header.
    ; Default is zero.
    ;cgi.rfc2616_headers = 0
    ; File Uploads ;
    ; Whether to allow HTTP file uploads.
    file_uploads = On
    ; Temporary directory for HTTP uploaded files (will use system default if not
    ; specified).
    ;upload_tmp_dir =
    ; Maximum allowed size for uploaded files.
    upload_max_filesize = 2M
    ; Fopen wrappers ;
    ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
    allow_url_fopen = On
    ; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
    allow_url_include = Off
    ; Define the anonymous ftp password (your email address)
    ;from="[email protected]"
    ; Define the User-Agent string
    ; user_agent="PHP"
    ; Default timeout for socket based streams (seconds)
    default_socket_timeout = 60
    ; If your scripts have to deal with files from Macintosh systems,
    ; or you are running on a Mac and need to deal with files from
    ; unix or win32 systems, setting this flag will cause PHP to
    ; automatically detect the EOL character in those files so that
    ; fgets() and file() will work regardless of the source of the file.
    ; auto_detect_line_endings = Off
    ; Dynamic Extensions ;
    ; If you wish to have an extension loaded automatically, use the following
    ; syntax:
    ; extension=modulename.extension
    ; For example, on Windows:
    ; extension=msql.dll
    ; ... or under UNIX:
    ; extension=msql.so
    ; Note that it should be the name of the module only; no directory information
    ; needs to go here. Specify the location of the extension with the
    ; extension_dir directive above.
    ; Windows Extensions
    ; Note that ODBC support is built in, so no dll is needed for it.
    ; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5)
    ; extension folders as well as the separate PECL DLL download (PHP 5).
    ; Be sure to appropriately set the extension_dir directive.
    ;extension=php_mbstring.dll
    ;extension=php_bz2.dll
    ;extension=php_curl.dll
    ;extension=php_dba.dll
    ;extension=php_dbase.dll
    ;extension=php_exif.dll
    ;extension=php_fdf.dll
    ;extension=php_filepro.dll
    ;extension=php_gd2.dll
    ;extension=php_gettext.dll
    ;extension=php_ifx.dll
    ;extension=php_imap.dll
    ;extension=php_interbase.dll
    ;extension=php_ldap.dll
    ;extension=php_mcrypt.dll
    ;extension=php_mhash.dll
    ;extension=php_mime_magic.dll
    ;extension=php_ming.dll
    ;extension=php_mssql.dll
    ;extension=php_msql.dll
    ;extension=php_mysql.dll
    extension=php_oci8.dll
    ;extension=php_openssl.dll
    ;extension=php_oracle.dll
    ;extension=php_pgsql.dll
    ;extension=php_shmop.dll
    ;extension=php_snmp.dll
    ;extension=php_sockets.dll
    ;extension=php_sqlite.dll
    ;extension=php_sybase_ct.dll
    ;extension=php_tidy.dll
    ;extension=php_xmlrpc.dll
    ;extension=php_xsl.dll
    ; Module Settings ;
    [Date]
    ; Defines the default timezone used by the date functions
    ;date.timezone =
    ;date.default_latitude = 31.7667
    ;date.default_longitude = 35.2333
    ;date.sunrise_zenith = 90.583333
    ;date.sunset_zenith = 90.583333
    [filter]
    ;filter.default = unsafe_raw
    ;filter.default_flags =
    [iconv]
    ;iconv.input_encoding = ISO-8859-1
    ;iconv.internal_encoding = ISO-8859-1
    ;iconv.output_encoding = ISO-8859-1
    [sqlite]
    ;sqlite.assoc_case = 0
    [xmlrpc]
    ;xmlrpc_error_number = 0
    ;xmlrpc_errors = 0
    [Pcre]
    ;pcre.recursion_limit=100000
    ;pcre.backtrack_limit=100000
    [Syslog]
    ; Whether or not to define the various syslog variables (e.g. $LOG_PID,
    ; $LOG_CRON, etc.). Turning it off is a good idea performance-wise. In
    ; runtime, you can define these variables by calling define_syslog_variables().
    define_syslog_variables = Off
    [mail function]
    ; For Win32 only.
    SMTP = localhost
    smtp_port = 25
    ; For Win32 only.
    ;sendmail_from = [email protected]
    ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
    ;sendmail_path =
    ; Force the addition of the specified parameters to be passed as extra parameters
    ; to the sendmail binary. These parameters will always replace the value of
    ; the 5th parameter to mail(), even in safe mode.
    ;mail.force_extra_parameters =
    [SQL]
    sql.safe_mode = Off
    [ODBC]
    ;odbc.default_db = Not yet implemented
    ;odbc.default_user = Not yet implemented
    ;odbc.default_pw = Not yet implemented
    ; Allow or prevent persistent links.
    odbc.allow_persistent = On
    ; Check that a connection is still valid before reuse.
    odbc.check_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    odbc.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    odbc.max_links = -1
    ; Handling of LONG fields. Returns number of bytes to variables. 0 means
    ; passthru.
    odbc.defaultlrl = 4096
    ; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
    ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
    ; of uodbc.defaultlrl and uodbc.defaultbinmode
    odbc.defaultbinmode = 1
    [MySQL]
    ; Allow or prevent persistent links.
    mysql.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    mysql.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    mysql.max_links = -1
    ; Default port number for mysql_connect(). If unset, mysql_connect() will use
    ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
    ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
    ; at MYSQL_PORT.
    mysql.default_port =
    ; Default socket name for local MySQL connects. If empty, uses the built-in
    ; MySQL defaults.
    mysql.default_socket =
    ; Default host for mysql_connect() (doesn't apply in safe mode).
    mysql.default_host =
    ; Default user for mysql_connect() (doesn't apply in safe mode).
    mysql.default_user =
    ; Default password for mysql_connect() (doesn't apply in safe mode).
    ; Note that this is generally a bad idea to store passwords in this file.
    ; Any user with PHP access can run 'echo get_cfg_var("mysql.default_password")
    ; and reveal this password! And of course, any users with read access to this
    ; file will be able to reveal the password as well.
    mysql.default_password =
    ; Maximum time (in seconds) for connect timeout. -1 means no limit
    mysql.connect_timeout = 60
    ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
    ; SQL-Errors will be displayed.
    mysql.trace_mode = Off
    [MySQLi]
    ; Maximum number of links. -1 means no limit.
    mysqli.max_links = -1
    ; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
    ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
    ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
    ; at MYSQL_PORT.
    mysqli.default_port = 3306
    ; Default socket name for local MySQL connects. If empty, uses the built-in
    ; MySQL defaults.
    mysqli.default_socket =
    ; Default host for mysql_connect() (doesn't apply in safe mode).
    mysqli.default_host =
    ; Default user for mysql_connect() (doesn't apply in safe mode).
    mysqli.default_user =
    ; Default password for mysqli_connect() (doesn't apply in safe mode).
    ; Note that this is generally a bad idea to store passwords in this file.
    ; Any user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
    ; and reveal this password! And of course, any users with read access to this
    ; file will be able to reveal the password as well.
    mysqli.default_pw =
    ; Allow or prevent reconnect
    mysqli.reconnect = Off
    [mSQL]
    ; Allow or prevent persistent links.
    msql.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    msql.max_persistent = -1
    ; Maximum number of links (persistent+non persistent). -1 means no limit.
    msql.max_links = -1
    [PostgresSQL]
    ; Allow or prevent persistent links.
    pgsql.allow_persistent = On
    ; Detect broken persistent links always with pg_pconnect().
    ; Auto reset feature requires a little overheads.
    pgsql.auto_reset_persistent = Off
    ; Maximum number of persistent links. -1 means no limit.
    pgsql.max_persistent = -1
    ; Maximum number of links (persistent+non persistent). -1 means no limit.
    pgsql.max_links = -1
    ; Ignore PostgreSQL backends Notice message or not.
    ; Notice message logging require a little overheads.
    pgsql.ignore_notice = 0
    ; Log PostgreSQL backends Noitce message or not.
    ; Unless pgsql.ignore_notice=0, module cannot log notice message.
    pgsql.log_notice = 0
    [Sybase]
    ; Allow or prevent persistent links.
    sybase.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    sybase.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    sybase.max_links = -1
    ;sybase.interface_file = "/usr/sybase/interfaces"
    ; Minimum error severity to display.
    sybase.min_error_severity = 10
    ; Minimum message severity to display.
    sybase.min_message_severity = 10
    ; Compatibility mode with old versions of PHP 3.0.
    ; If on, this will cause PHP to automatically assign types to results according
    ; to their Sybase type, instead of treating them all as strings. This
    ; compatibility mode will probably not stay around forever, so try applying
    ; whatever necessary changes to your code, and turn it off.
    sybase.compatability_mode = Off
    [Sybase-CT]
    ; Allow or prevent persistent links.
    sybct.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    sybct.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    sybct.max_links = -1
    ; Minimum server message severity to display.
    sybct.min_server_severity = 10
    ; Minimum client message severity to display.
    sybct.min_client_severity = 10
    [bcmath]
    ; Number of decimal digits for all bcmath functions.
    bcmath.scale = 0
    [browscap]
    ;browscap = extra/browscap.ini
    [Informix]
    ; Default host for ifx_connect() (doesn't apply in safe mode).
    ifx.default_host =
    ; Default user for ifx_connect() (doesn't apply in safe mode).
    ifx.default_user =
    ; Default password for ifx_connect() (doesn't apply in safe mode).
    ifx.default_password =
    ; Allow or prevent persistent links.
    ifx.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    ifx.max_persistent = -1
    ; Maximum number of links (persistent + non-persistent). -1 means no limit.
    ifx.max_links = -1
    ; If on, select statements return the contents of a text blob instead of its id.
    ifx.textasvarchar = 0
    ; If on, select statements return the contents of a byte blob instead of its id.
    ifx.byteasvarchar = 0
    ; Trailing blanks are stripped from fixed-length char columns. May help the
    ; life of Informix SE users.
    ifx.charasvarchar = 0
    ; If on, the contents of text and byte blobs are dumped to a file instead of
    ; keeping them in memory.
    ifx.blobinfile = 0
    ; NULL's are returned as empty strings, unless this is set to 1. In that case,
    ; NULL's are returned as string 'NULL'.
    ifx.nullformat = 0
    [Session]
    ; Handler used to store/retrieve data.
    session.save_handler = files
    ; Argument passed to save_handler. In the case of files, this is the path
    ; where data files are stored. Note: Windows users have to change this
    ; variable in order to use PHP's session functions.
    ; As of PHP 4.0.1, you can define the path as:
    ; session.save_path = "N;/path"
    ; where N is an integer. Instead of storing all the session files in
    ; /path, what this will do is use subdirectories N-levels deep, and
    ; store the session data in those directories. This is useful if you
    ; or your OS have problems with lots of files in one directory, and is
    ; a more efficient layout for servers that handle lots of sessions.
    ; NOTE 1: PHP will not create this directory structure automatically.
    ; You can use the script in the ext/session dir for that purpose.
    ; NOTE 2: See the section on garbage collection below if you choose to
    ; use subdirectories for session storage
    ; The file storage module creates files using mode 600 by default.
    ; You can change that by using
    ; session.save_path = "N;MODE;/path"
    ; where MODE is the octal representation of the mode. Note that this
    ; does not overwrite the process's umask.
    ;session.save_path = "/tmp"
    ; Whether to use cookies.
    session.use_cookies = 1
    ;session.cookie_secure =
    ; This option enables administrators to make their users invulnerable to
    ; attacks which involve passing session ids in URLs; defaults to 0.
    ; session.use_only_cookies = 1
    ; Name of the session (used as cookie name).
    session.name = PHPSESSID
    ; Initialize session on request startup.
    session.auto_start = 0
    ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
    session.cookie_lifetime = 0
    ; The path for which the cookie is valid.
    session.cookie_path = /
    ; The domain for which the cookie is valid.
    session.cookie_domain =
    ; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
    session.cookie_httponly =
    ; Handler used to serialize data. php is the standard serializer of PHP.
    session.serialize_handler = php
    ; Define the probability that the 'garbage collection' process is started
    ; on every session initialization.
    ; The probability is calculated by using gc_probability/gc_divisor,
    ; e.g. 1/100 means there is a 1% chance that the GC process starts
    ; on each request.
    session.gc_probability = 1
    session.gc_divisor = 1000
    ; After this number of seconds, stored data will be seen as 'garbage' and
    ; cleaned up by the garbage collection process.
    session.gc_maxlifetime = 1440
    ; NOTE: If you are using the subdirectory option for storing session files
    ; (see session.save_path above), then garbage collection does not
    ; happen automatically. You will need to do your own garbage
    ; collection through a shell script, cron entry, or some other method.
    ; For example, the following script would is the equivalent of
    ; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
    ; cd /path/to/sessions; find -cmin +24 | xargs rm
    ; PHP 4.2 and less have an undocumented feature/bug that allows you to
    ; to initialize a session variable in the global scope, albeit register_globals
    ; is disabled. PHP 4.3 and later will warn you, if this feature is used.
    ; You can disable the feature and the warning separately. At this time,
    ; the warning is only displayed, if bug_compat_42 is enabled.
    session.bug_compat_42 = 0
    session.bug_compat_warn = 1
    ; Check HTTP Referer to invalidate externally stored URLs containing ids.
    ; HTTP_REFERER has to contain this substring for the session to be
    ; considered as valid.
    session.referer_check =
    ; How many bytes to read from the file.
    session.entropy_length = 0
    ; Specified here to create the session id.
    session.entropy_file =
    ;session.entropy_length = 16
    ;session.entropy_file = /dev/urandom
    ; Set to {nocache,private,public,} to determine HTTP caching aspects
    ; or leave this empty to avoid sending anti-caching headers.
    session.cache_limiter = nocache
    ; Document expires after n minutes.
    session.cache_expire = 180
    ; trans sid support is disabled by default.
    ; Use of trans sid may risk your users security.
    ; Use this option with caution.
    ; - User may send URL contains active session ID
    ; to other person via. email/irc/etc.
    ; - URL that contains active session ID may be stored
    ; in publically accessible computer.
    ; - User may access your site with the same session ID
    ; always using URL stored in browser's history or bookmarks.
    session.use_trans_sid = 0
    ; Select a hash function
    ; 0: MD5 (128 bits)
    ; 1: SHA-1 (160 bits)
    session.hash_function = 0
    ; Define how many bits are stored in each character when converting
    ; the binary hash data to something readable.
    ; 4 bits: 0-9, a-f
    ; 5 bits: 0-9, a-v
    ; 6 bits: 0-9, a-z, A-Z, "-", ","
    session.hash_bits_per_character = 5
    ; The URL rewriter will look for URLs in a defined set of HTML tags.
    ; form/fieldset are special; if you include them here, the rewriter will
    ; add a hidden <input> field with the info which is otherwise appended
    ; to URLs. If you want XHTML conformity, remove the form entry.
    ; Note that all valid entries require a "=", even if no value follows.
    url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
    [MSSQL]
    ; Allow or prevent persistent links.
    mssql.allow_persistent = On
    ; Maximum number of persistent links. -1 means no limit.
    mssql.max_persistent = -1
    ; Maximum number of links (persistent+non persistent). -1 means no limit.
    mssql.max_links = -1
    ; Minimum error severity to display.
    mssql.min_error_severity = 10
    ; Minimum message severity to display.
    mssql.min_message_severity = 10
    ; Compatibility mode with old versions of PHP 3.0.
    mssql.compatability_mode = Off
    ; Connect timeout
    ;mssql.connect_timeout = 5
    ; Query timeout
    ;mssql.timeout = 60
    ; Valid range 0 - 2147483647. Default = 4096.
    ;mssql.textlimit = 4096
    ; Valid range 0 - 2147483647. Default = 4096.
    ;mssql.textsize = 4096
    ; Limits the number of records in each batch. 0 = all records in one batch.
    ;mssql.batchsize = 0
    ; Specify how datetime and datetim4 columns are returned
    ; On => Returns data converted to SQL server settings
    ; Off => Returns values as YYYY-MM-DD hh:mm:ss
    ;mssql.datetimeconvert = On
    ; Use NT authentication when connecting to the server
    mssql.secure_connection = Off
    ; Specify max number of processes. -1 = library default
    ; msdlib defaults to 25
    ; FreeTDS defaults to 4096
    ;mssql.max_procs = -1
    ; Specify client character set.
    ; If empty or not set the client charset from freetds.comf is used
    ; This is only used when compiled with FreeTDS
    ;mssql.charset = "ISO-8859-1"
    [Assertion]
    ; Assert(expr); active by default.
    ;assert.active = On
    ; Issue a PHP warning for each failed assertion.
    ;assert.warning = On
    ; Don't bail out by default.
    ;assert.bail = Off
    ; User-function to be called if an assertion fails.
    ;assert.callback = 0
    ; Eval the expression with current error_reporting(). Set to true if you want
    ; error_reporting(0) around the eval().
    ;assert.quiet_eval = 0
    [COM]
    ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
    ;com.typelib_file =
    ; allow Distributed-COM calls
    ;com.allow_dcom = true
    ; autoregister constants of a components typlib on com_load()
    ;com.autoregister_typelib = true
    ; register constants casesensitive
    ;com.autoregister_casesensitive = false
    ; show warnings on duplicate constant registrations
    ;com.autoregister_verbose = true
    [mbstring]
    ; language for internal character representation.
    ;mbstring.language = Japanese
    ; internal/script encoding.
    ; Some encoding cannot work as internal encoding.
    ; (e.g. SJIS, BIG5, ISO-2022-*)
    ;mbstring.internal_encoding = EUC-JP
    ; http input encoding.
    ;mbstring.http_input = auto
    ; http output encoding. mb_output_handler must be
    ; registered as output buffer to function
    ;mbstring.http_output = SJIS
    ; enable automatic encoding translation according to
    ; mbstring.internal_encoding setting. Input chars are
    ; converted to internal encoding by setting this to On.
    ; Note: Do not use automatic encoding translation for
    ; portable libs/applications.
    ;mbstring.encoding_translation = Off
    ; automatic encoding detection order.
    ; auto means
    ;mbstring.detect_order = auto
    ; substitute_character used when character cannot be converted
    ; one from another
    ;mbstring.substitute_character = none;
    ; overload(replace) single byte functions by mbstring functions.
    ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
    ; etc. Possible values are 0,1,2,4 or combination of them.
    ; For example, 7 for overload everything.
    ; 0: No overload
    ; 1: Overload mail() function
    ; 2: Overload str*() functions
    ; 4: Overload ereg*() functions
    ;mbstring.func_overload = 0
    ; enable strict encoding detection.
    ;mbstring.strict_encoding = Off
    [FrontBase]
    ;fbsql.allow_persistent = On
    ;fbsql.autocommit = On
    ;fbsql.show_timestamp_decimals = Off
    ;fbsql.default_database =
    ;fbsql.default_database_password =
    ;fbsql.default_host =
    ;fbsql.default_password =
    ;fbsql.default_user = "_SYSTEM"
    ;fbsql.generate_warnings = Off
    ;fbsql.max_connections = 128
    ;fbsql.max_links = 128
    ;fbsql.max_persistent = -1
    ;fbsql.max_results = 128
    [gd]
    ; Tell the jpeg decode to libjpeg warnings and try to create
    ; a gd image. The warning will then be displayed as notices
    ; disabled by default
    ;gd.jpeg_ignore_warning = 0
    [exif]
    ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
    ; With mbstring support this will automatically be converted into the encoding
    ; given by corresponding encode setting. When empty mbstring.internal_encoding
    ; is used. For the decode settings you can distinguish between motorola and
    ; intel byte order. A decode setting cannot be empty.
    ;exif.encode_unicode = ISO-8859-15
    ;exif.decode_unicode_motorola = UCS-2BE
    ;exif.decode_unicode_intel = UCS-2LE
    ;exif.encode_jis =
    ;exif.decode_jis_motorola = JIS
    ;exif.decode_jis_intel = JIS
    [Tidy]
    ; The path to a default tidy configuration file to use when using tidy
    ;tidy.default_config = /usr/local/lib/php/default.tcfg
    ; Should tidy clean and repair output automatically?
    ; WARNING: Do not use this option if you are generating non-html content
    ; such as dynamic images
    tidy.clean_output = Off
    [soap]
    ; Enables or disables WSDL caching feature.
    soap.wsdl_cache_enabled=1
    ; Sets the directory name where SOAP extension will put cache files.
    soap.wsdl_cache_dir="/tmp"
    ; (time to live) Sets the number of second while cached file will be used
    ; instead of original one.
    soap.wsdl_cache_ttl=86400
    ; Local Variables:
    ; tab-width: 4
    ; End:
    HTTPD.CONF
    # This is the main Apache HTTP server configuration file. It contains the
    # configuration directives that give the server its instructions.
    # See <URL:http://httpd.apache.org/docs/2.2/> for detailed information.
    # In particular, see
    # <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
    # for a discussion of each configuration directive.
    # Do NOT simply read the instructions in here without understanding
    # what they do. They're here only as hints or reminders. If you are unsure
    # consult the online docs. You have been warned.
    # Configuration and logfile names: If the filenames you specify for many
    # of the server's control files begin with "/" (or "drive:/" for Win32), the
    # server will use that explicit path. If the filenames do not begin
    # with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
    # with ServerRoot set to "C:/Program Files/Apache Software Foundation/Apache2.2" will be interpreted by the
    # server as "C:/Program Files/Apache Software Foundation/Apache2.2/logs/foo.log".
    # NOTE: Where filenames are specified, you must use forward slashes
    # instead of backslashes (e.g., "c:/apache" instead of "c:\apache").
    # If a drive letter is omitted, the drive on which Apache.exe is located
    # will be used by default. It is recommended that you always supply
    # an explicit drive letter in absolute paths, however, to avoid
    # confusion.
    # ThreadsPerChild: constant number of worker threads in the server process
    # MaxRequestsPerChild: maximum number of requests a server process serves
    ThreadsPerChild 250
    MaxRequestsPerChild 0
    # ServerRoot: The top of the directory tree under which the server's
    # configuration, error, and log files are kept.
    # Do not add a slash at the end of the directory path. If you point
    # ServerRoot at a non-local disk, be sure to point the LockFile directive
    # at a local disk. If you wish to share the same ServerRoot for multiple
    # httpd daemons, you will need to change at least LockFile and PidFile.
    ServerRoot "C:/Program Files/Apache Software Foundation/Apache2.2"
    # Listen: Allows you to bind Apache to specific IP addresses and/or
    # ports, instead of the default. See also the <VirtualHost>
    # directive.
    # Change this to Listen on specific IP addresses as shown below to
    # prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
    #Listen 12.34.56.78:80
    Listen 80
    # Dynamic Shared Object (DSO) Support
    # To be able to use the functionality of a module which was built as a DSO you
    # have to place corresponding `LoadModule' lines at this location so the
    # directives contained in it are actually available before they are used.
    # Statically compiled modules (those listed by `httpd -l') do not need
    # to be loaded here.
    # Example:
    # LoadModule foo_module modules/mod_foo.so
    LoadModule actions_module modules/mod_actions.so
    LoadModule alias_module modules/mod_alias.so
    LoadModule asis_module modules/mod_asis.so
    LoadModule auth_basic_module modules/mod_auth_basic.so
    #LoadModule auth_digest_module modules/mod_auth_digest.so
    #LoadModule authn_anon_module modules/mod_authn_anon.so
    #LoadModule authn_dbm_module modules/mod_authn_dbm.so
    LoadModule authn_default_module modules/mod_authn_default.so
    LoadModule authn_file_module modules/mod_authn_file.so
    #LoadModule authz_dbm_module modules/mod_authz_dbm.so
    LoadModule authz_default_module modules/mod_authz_default.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 cern_meta_module modules/mod_cern_meta.so
    LoadModule cgi_module modules/mod_cgi.so
    #LoadModule dav_module modules/mod_dav.so
    #LoadModule dav_fs_module modules/mod_dav_fs.so
    #LoadModule deflate_module modules/mod_deflate.so
    LoadModule dir_module modules/mod_dir.so
    LoadModule env_module modules/mod_env.so
    #LoadModule expires_module modules/mod_expires.so
    #LoadModule file_cache_module modules/mod_file_cache.so
    #LoadModule headers_module modules/mod_headers.so
    LoadModule imagemap_module modules/mod_imagemap.so
    LoadModule include_module modules/mod_include.so
    #LoadModule info_module modules/mod_info.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 mime_magic_module modules/mod_mime_magic.so
    #LoadModule proxy_module modules/mod_proxy.so
    #LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
    #LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
    #LoadModule proxy_connect_module modules/mod_proxy_connect.so
    #LoadModule proxy_http_module modules/mod_proxy_http.so
    #LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
    LoadModule negotiation_module modules/mod_negotiation.so
    #LoadModule rewrite_module modules/mod_rewrite.so
    LoadModule setenvif_module modules/mod_setenvif.so
    #LoadModule speling_module modules/mod_speling.so
    #LoadModule status_module modules/mod_status.so
    #LoadModule unique_id_module modules/mod_unique_id.so
    LoadModule userdir_module modules/mod_userdir.so
    #LoadModule usertrack_module modules/mod_usertrack.so
    #LoadModule vhost_alias_module modules/mod_vhost_alias.so
    #LoadModule ssl_module modules/mod_ssl.so
    # 'Main' server configuration
    # The directives in this section set up the values used by the 'main'
    # server, which responds to any requests that aren't handled by a
    # <VirtualHost> definition. These values also provide defaults for
    # any <VirtualHost> containers you may define later in the file.
    # All of these directives may appear inside <VirtualHost> containers,
    # in which case these default settings will be overridden for the
    # virtual host being defined.
    # ServerAdmin: Your address, where problems with the server should be
    # e-mailed. This address appears on some server-generated pages, such
    # as error documents. e.g. [email protected]
    ServerAdmin admin@local
    # ServerName gives the name and port that the server uses to identify itself.
    # This can often be determined automatically, but we recommend you specify
    # it explicitly to prevent problems during startup.
    # If your host doesn't have a registered DNS name, enter its IP address here.
    ServerName mp-dev.local:80
    # DocumentRoot: The directory out of which you will serve your
    # documents. By default, all requests are taken from this directory, but
    # symbolic links and aliases may be used to point to other locations.
    DocumentRoot "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs"
    # Each directory to which Apache has access can be configured with respect
    # to which services and features are allowed and/or disabled in that
    # directory (and its subdirectories).
    # First, we configure the "default" to be a very restrictive set of
    # features.
    <Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
    Satisfy all
    </Directory>
    # Note that from this point forward you must specifically allow
    # particular features to be enabled - so if something's not working as
    # you might expect, make sure that you have specifically enabled it
    # below.
    # This should be changed to whatever you set DocumentRoot to.
    <Directory "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs">
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    # Note that "MultiViews" must be named explicitly --- "Options All"
    # doesn't give it to you.
    # The Options directive is both complicated and important. Please see
    # http://httpd.apache.org/docs/2.2/mod/core.html#options
    # for more information.
    Options Indexes FollowSymLinks
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    # Options FileInfo AuthConfig Limit
    AllowOverride None
    # Controls who can get stuff from this server.
    Order allow,deny
    Allow from all
    </Directory>
    # DirectoryIndex: sets the file that Apache will serve if a directory
    # is requested.
    <IfModule dir_module>
    DirectoryIndex index.html
    </IfModule>
    # The following lines prevent .htaccess and .htpasswd files from being
    # viewed by Web clients.
    <FilesMatch "^\.ht">
    Order allow,deny
    Deny from all
    </FilesMatch>
    # ErrorLog: The location of the error log file.
    # If you do not specify an ErrorLog directive within a <VirtualHost>
    # container, error messages relating to that virtual host will be
    # logged here. If you do define an error logfile for a <VirtualHost>
    # container, that host's errors will be logged there and not here.
    ErrorLog logs/error.log
    # LogLevel: Control the number of messages logged to the error_log.
    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn
    <IfModule log_config_module>
    # The following directives define some format nicknames for use with
    # a CustomLog directive (see below).
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    <IfModule logio_module>
    # You need to enable mod_logio.c to use %I and %O
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>
    # The location and format of the access logfile (Common Logfile Format).
    # If you do not define any access logfiles within a <VirtualHost>
    # container, they will be logged here. Contrariwise, if you do
    # define per-<VirtualHost> access logfiles, transactions will be
    # logged therein and not in this file.
    CustomLog logs/access.log common
    # If you prefer a logfile with access, agent, and referer information
    # (Combined Logfile Format) you can use the following directive.
    #CustomLog logs/access.log combined
    </IfModule>
    <IfModule alias_module>
    # Redirect: Allows you to tell clients about documents that used to
    # exist in your server's namespace, but do not anymore. The client
    # will make a new request for the document at its new location.
    # Example:
    # Redirect permanent /foo http://mp-dev.local/bar
    # Alias: Maps web paths into filesystem paths and is used to
    # access content that does not live under the DocumentRoot.
    # Example:
    # Alias /webpath /full/filesystem/path
    # If you include a trailing / on /webpath then the server will
    # require it to be present in the URL. You will also likely
    # need to provide a <Directory> section to allow access to
    # the filesystem path.
    # ScriptAlias: This controls which directories contain server scripts.
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the target directory are treated as applications and
    # run by the server when requested rather than as documents sent to the
    # client. The same rules about trailing "/" apply to ScriptAlias
    # directives as to Alias.
    ScriptAlias /cgi-bin/ "C:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin/"
    </IfModule>
    # "C:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin" should be changed to whatever your ScriptAliased
    # CGI directory exists, if you have that configured.
    <Directory "C:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
    </Directory>
    # Apache parses all CGI scripts for the shebang line by default.
    # This comment line, the first line of the script, consists of the symbols
    # pound (#) and exclamation (!) followed by the path of the program that
    # can execute this specific script. For a perl script, with perl.exe in
    # the C:\Program Files\Perl directory, the shebang line should be:
    #!c:/program files/perl/perl
    # Note you mustnot_ indent the actual shebang line, and it must be the
    # first line of the file. Of course, CGI processing must be enabled by
    # the appropriate ScriptAlias or Options ExecCGI directives for the files
    # or directory in question.
    # However, Apache on Windows allows either the Unix behavior above, or can
    # use the Registry to match files by extention. The command to execute
    # a file of this type is retrieved from the registry by the same method as
    # the Windows Explorer would use to handle double-clicking on a file.
    # These script actions can be configured from the Windows Explorer View menu,
    # 'Folder Options', and reviewing the 'File Types' tab. Clicking the Edit
    # button allows you to modify the Actions, of which Apache 1.3 attempts to
    # perform the 'Open' Action, and failing that it will try the shebang line.
    # This behavior is subject to change in Apache release 2.0.
    # Each mechanism has it's own specific security weaknesses, from the means
    # to run a program you didn't intend the website owner to invoke, and the
    # best method is a matter of great debate.
    # To enable the this Windows specific behavior (and therefore -disable-

    Does the ext directory have the php_oci8.dll? In the original steps the PHP dir is renamed. In the given php.in the extension_dir looks like it has been updated correctly. Since PHP distributes php_oci8.dll by default I reckon there would be a very good chance that the problem was somewhere else. Since this is an old thread I don't think we'll get much value from speculation.
    -- cj

  • Problem:Accessing the file system with servlets ???

    Hi...
    I have a strange problem with my servlets that run on Win2000 with Apache and 2 Tomcat instances.
    I cannot open files through servlets whereas exactly the same code lines work in local standalone java programm.
    It seems to be somehting like a rights problem...but I dont know what to do.
    thanks for any help
    here are my configuration files for Apache and Tomcat:
    Apache: *******************************************************
    ### Section 1: Global Environment
    ServerRoot "D:/Webserver_and_Applications/Apache2"
    PidFile logs/httpd.pid
    Timeout 300
    KeepAlive On
    MaxKeepAliveRequests 100
    KeepAliveTimeout 15
    <IfModule mpm_winnt.c>
    ThreadsPerChild 250
    MaxRequestsPerChild 0
    </IfModule>
    Listen 80
    LoadModule jk_module modules/mod_jk.dll
    JkWorkersFile conf/workers.properties
    JkLogFile logs/mod_jk.log
    JkLogLevel info
    LoadModule access_module modules/mod_access.so
    LoadModule actions_module modules/mod_actions.so
    LoadModule alias_module modules/mod_alias.so
    LoadModule asis_module modules/mod_asis.so
    LoadModule auth_module modules/mod_auth.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 imap_module modules/mod_imap.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 userdir_module modules/mod_userdir.so
    ### Section 2: 'Main' server configuration
    ServerAdmin [email protected]
    ServerName www.testnet.com:80
    UseCanonicalName Off
    DocumentRoot "D:/Webserver_and_Applications/root"
    JkMount /*.jsp loadbalancer
    JkMount /servlet/* loadbalancer
    <Directory />
    Options FollowSymLinks
    AllowOverride None
    </Directory>
    <Directory "D:/Webserver_and_Applications/root">
    Order allow,deny
    Allow from all
    </Directory>
    UserDir "My Documents/My Website"
    DirectoryIndex index.html index.html.var
    AccessFileName .htaccess
    <Files ~ "^\.ht">
    Order allow,deny
    Deny from all
    </Files>
    TypesConfig conf/mime.types
    DefaultType text/plain
    <IfModule mod_mime_magic.c>
    MIMEMagicFile conf/magic
    </IfModule>
    HostnameLookups Off
    ErrorLog logs/error.log
    LogLevel warn
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    LogFormat "%{Referer}i -> %U" referer
    LogFormat "%{User-agent}i" agent
    CustomLog logs/access.log common
    ServerTokens Full
    ServerSignature On
    Alias /icons/ "D:/Webserver_and_Applications/Apache2/icons/"
    <Directory "D:/Webserver_and_Applications/Apache2/icons">
    Options Indexes MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
    </Directory>
    Alias /manual "D:/Webserver_and_Applications/Apache2/manual"
    <Directory "D:/Webserver_and_Applications/Apache2/manual">
    Options Indexes FollowSymLinks MultiViews IncludesNoExec
    AddOutputFilter Includes html
    AllowOverride None
    Order allow,deny
    Allow from all
    </Directory>
    ScriptAlias /cgi-bin/ "d:/webserver_and_applications/root/cgi-bin/"
    <Directory "D:/Webserver_and_Applications/root/cgi-bin/">
    AllowOverride None
    Options Indexes FollowSymLinks MultiViews
    Order allow,deny
    Allow from all
    </Directory>
    IndexOptions FancyIndexing VersionSort
    AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
    AddIconByType (TXT,/icons/text.gif) text/*
    AddIconByType (IMG,/icons/image2.gif) image/*
    AddIconByType (SND,/icons/sound2.gif) audio/*
    AddIconByType (VID,/icons/movie.gif) video/*
    AddIcon /icons/binary.gif .bin .exe
    AddIcon /icons/binhex.gif .hqx
    AddIcon /icons/tar.gif .tar
    AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
    AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
    AddIcon /icons/a.gif .ps .ai .eps
    AddIcon /icons/layout.gif .html .shtml .htm .pdf
    AddIcon /icons/text.gif .txt
    AddIcon /icons/c.gif .c
    AddIcon /icons/p.gif .pl .py
    AddIcon /icons/f.gif .for
    AddIcon /icons/dvi.gif .dvi
    AddIcon /icons/uuencoded.gif .uu
    AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
    AddIcon /icons/tex.gif .tex
    AddIcon /icons/bomb.gif core
    AddIcon /icons/back.gif ..
    AddIcon /icons/hand.right.gif README
    AddIcon /icons/folder.gif ^^DIRECTORY^^
    AddIcon /icons/blank.gif ^^BLANKICON^^
    DefaultIcon /icons/unknown.gif
    IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
    AddEncoding x-compress Z
    AddEncoding x-gzip gz tgz
    AddLanguage da .dk
    AddLanguage nl .nl
    AddLanguage en .en
    AddLanguage et .et
    AddLanguage fr .fr
    AddLanguage de .de
    AddLanguage he .he
    AddLanguage el .el
    AddLanguage it .it
    AddLanguage ja .ja
    AddLanguage pl .po
    AddLanguage ko .ko
    AddLanguage pt .pt
    AddLanguage nn .nn
    AddLanguage no .no
    AddLanguage pt-br .pt-br
    AddLanguage ltz .ltz
    AddLanguage ca .ca
    AddLanguage es .es
    AddLanguage sv .se
    AddLanguage cz .cz
    AddLanguage ru .ru
    AddLanguage tw .tw
    AddLanguage zh-tw .tw
    AddLanguage hr .hr
    LanguagePriority en da nl et fr de el it ja ko no pl pt pt-br ltz ca es sv tw
    ForceLanguagePriority Prefer Fallback
    AddDefaultCharset ISO-8859-1
    AddCharset ISO-8859-1 .iso8859-1 .latin1
    AddCharset ISO-8859-2 .iso8859-2 .latin2 .cen
    AddCharset ISO-8859-3 .iso8859-3 .latin3
    AddCharset ISO-8859-4 .iso8859-4 .latin4
    AddCharset ISO-8859-5 .iso8859-5 .latin5 .cyr .iso-ru
    AddCharset ISO-8859-6 .iso8859-6 .latin6 .arb
    AddCharset ISO-8859-7 .iso8859-7 .latin7 .grk
    AddCharset ISO-8859-8 .iso8859-8 .latin8 .heb
    AddCharset ISO-8859-9 .iso8859-9 .latin9 .trk
    AddCharset ISO-2022-JP .iso2022-jp .jis
    AddCharset ISO-2022-KR .iso2022-kr .kis
    AddCharset ISO-2022-CN .iso2022-cn .cis
    AddCharset Big5 .Big5 .big5
    AddCharset WINDOWS-1251 .cp-1251 .win-1251
    AddCharset CP866 .cp866
    AddCharset KOI8-r .koi8-r .koi8-ru
    AddCharset KOI8-ru .koi8-uk .ua
    AddCharset ISO-10646-UCS-2 .ucs2
    AddCharset ISO-10646-UCS-4 .ucs4
    AddCharset UTF-8 .utf8
    AddCharset GB2312 .gb2312 .gb
    AddCharset utf-7 .utf7
    AddCharset utf-8 .utf8
    AddCharset big5 .big5 .b5
    AddCharset EUC-TW .euc-tw
    AddCharset EUC-JP .euc-jp
    AddCharset EUC-KR .euc-kr
    AddCharset shift_jis .sjis
    AddType application/x-tar .tgz
    AddType image/x-icon .ico
    AddHandler type-map var
    BrowserMatch "Mozilla/2" nokeepalive
    BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
    BrowserMatch "RealPlayer 4\.0" force-response-1.0
    BrowserMatch "Java/1\.0" force-response-1.0
    BrowserMatch "JDK/1\.0" force-response-1.0
    BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
    BrowserMatch "^WebDrive" redirect-carefully
    BrowserMatch "^WebDAVFS/1.[012]" redirect-carefully
    <IfModule mod_ssl.c>
    Include conf/ssl.conf
    </IfModule>
    ScriptAlias /php/ "d:/webserver_and_applications/php/"
    AddType application/x-httpd-php .php
    Action application/x-httpd-php "/php/php.exe"
    Tomcat:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
    <Server port="11005" shutdown="SHUTDOWN" debug="0">
    <!-- Define the Tomcat Stand-Alone Service -->
    <Service name="Tomcat-Standalone">
    <!-- Define an AJP 1.3 Connector on port 11009 -->
    <Connector className="org.apache.ajp.tomcat4.Ajp13Connector"
    port="11009" minProcessors="5" maxProcessors="75"
    acceptCount="10" debug="0"/>
    <!-- Define the top level container in our container hierarchy -->
    <Engine jvmRoute="tomcat1" name="Standalone" defaultHost="localhost" debug="0">
    <!-- Global logger unless overridden at lower levels -->
    <Logger className="org.apache.catalina.logger.FileLogger"
    prefix="catalina_log." suffix=".txt"
    timestamp="true"/>
    <!-- Because this Realm is here, an instance will be shared globally -->
    <Realm className="org.apache.catalina.realm.MemoryRealm" />
    <!-- Define the default virtual host -->
    <Host name="localhost" debug="0" appBase="webapps" unpackWARs="true">
    <Valve className="org.apache.catalina.valves.AccessLogValve"
    directory="logs" prefix="localhost_access_log." suffix=".txt"
    pattern="common"/>
    <Logger className="org.apache.catalina.logger.FileLogger"
    directory="logs" prefix="localhost_log." suffix=".txt"
         timestamp="true"/>
    <!-- Tomcat Root Context -->
    <Context path="" docBase="d:/webserver_and_applications/root" debug="0"/>
    <!-- Tomcat Manager Context -->
    <Context path="/manager" docBase="manager"
    debug="0" privileged="true"/>
    <Context path="/examples" docBase="examples" debug="0"
    reloadable="true" crossContext="true">
    <Logger className="org.apache.catalina.logger.FileLogger"
    prefix="localhost_examples_log." suffix=".txt"
         timestamp="true"/>
    <Ejb name="ejb/EmplRecord" type="Entity"
    home="com.wombat.empl.EmployeeRecordHome"
    remote="com.wombat.empl.EmployeeRecord"/>
    <Environment name="maxExemptions" type="java.lang.Integer"
    value="15"/>
    <Parameter name="context.param.name" value="context.param.value"
    override="false"/>
    <Resource name="jdbc/EmployeeAppDb" auth="SERVLET"
    type="javax.sql.DataSource"/>
    <ResourceParams name="jdbc/EmployeeAppDb">
    <parameter><name>user</name><value>sa</value></parameter>
    <parameter><name>password</name><value></value></parameter>
    <parameter><name>driverClassName</name>
    <value>org.hsql.jdbcDriver</value></parameter>
    <parameter><name>driverName</name>
    <value>jdbc:HypersonicSQL:database</value></parameter>
    </ResourceParams>
    <Resource name="mail/Session" auth="Container"
    type="javax.mail.Session"/>
    <ResourceParams name="mail/Session">
    <parameter>
    <name>mail.smtp.host</name>
    <value>localhost</value>
    </parameter>
    </ResourceParams>
    </Context>
    </Host>
    </Engine>
    </Service>
    <!-- Define an Apache-Connector Service -->
    <Service name="Tomcat-Apache">
    <Engine className="org.apache.catalina.connector.warp.WarpEngine"
    name="Apache" debug="0">
    <Logger className="org.apache.catalina.logger.FileLogger"
    prefix="apache_log." suffix=".txt"
    timestamp="true"/>
    </Engine>
    </Service>
    </Server>
    *** and here is my workers.properties : *******************************
    # workers.properties
    # In Unix, we use forward slashes:
    ps=/
    # list the workers by name
    worker.list=tomcat1, tomcat2, loadbalancer
    # First tomcat server
    worker.tomcat1.port=11009
    worker.tomcat1.host=localhost
    worker.tomcat1.type=ajp13
    # Specify the size of the open connection cache.
    #worker.tomcat1.cachesize
    # Specifies the load balance factor when used with
    # a load balancing worker.
    # Note:
    # ----> lbfactor must be > 0
    # ----> Low lbfactor means less work done by the worker.
    worker.tomcat1.lbfactor=100
    # Second tomcat server
    worker.tomcat2.port=12009
    worker.tomcat2.host=localhost
    worker.tomcat2.type=ajp13
    # Specify the size of the open connection cache.
    #worker.tomcat2.cachesize
    # Specifies the load balance factor when used with
    # a load balancing worker.
    # Note:
    # ----> lbfactor must be > 0
    # ----> Low lbfactor means less work done by the worker.
    worker.tomcat2.lbfactor=100
    # Load Balancer worker
    # The loadbalancer (type lb) worker performs weighted round-robin
    # load balancing with sticky sessions.
    # Note:
    # ----> If a worker dies, the load balancer will check its state
    # once in a while. Until then all work is redirected to peer
    # worker.
    worker.loadbalancer.type=lb
    worker.loadbalancer.balanced_workers=tomcat1, tomcat2
    # END workers.properties
    thanks again

    Hi joshman,
    no I didn't get error messages as the relevant lines for reading/writing where between try statements, but you were where right it was/is just a simple path problem.
    I expected the refering directory without using a path to be the directory where the servlet is in, but it is not !!??
    Do you know if I set this in the setclasspath.bat of tomcat ?
    *** set JAVA_ENDORSED_DIRS=%BASEDIR%\bin;%BASEDIR%\common\lib ***
    thanks again
    Huma

  • Php5.2.5 not working with apache2.2.8 on solaris 9

    <html
    <body lang=EN-US style='tab-interval:.5in'>
    <div class=Section1>
    <p class=MsoNormal><span class=GramE>hi !</span><o:p></o:p></p>
    <p class=MsoNormal>I have compiled (without any problems) PHP5.2.5 AND
    apache2.2.8 with oci8 support, and apache shows the php5 module loaded but for
    some reason my <span class=SpellE>php</span> pages are not showing up , can you
    see what I am missing ? <o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><span class=GramE>thanks</span><o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><span class=GramE>all</span> below is done as root<o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal>1) <span class=GramE>compile</span> apache2<o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><span class=SpellE><span class=GramE>cd</span></span> /opt/<span
    class=SpellE>staging_apache</span><o:p></o:p></p>
    <p class=MsoNormal><span class=SpellE><span class=GramE>untar</span></span>
    http_2.2.80.tar<o:p></o:p></p>
    <p class=MsoNormal><span class=SpellE><span class=GramE>cd</span></span>
    /opt/staging_apache/http_2.2.80<o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><span class=GramE>./</span>configure --prefix=/<span
    class=SpellE>usr</span>/local/apache --enable-module=so<span
    style='mso-spacerun:yes'>    </span>&lt;&lt;&lt; no errors<span
    style='mso-spacerun:yes'>  </span>here <o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><span class=GramE>make</span> <o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><span class=GramE>make</span> install<o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal>2) <span class=GramE>compile</span> php5<o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><span class=SpellE><span class=GramE>cd</span></span> /opt/<span
    class=SpellE>staging_php</span><o:p></o:p></p>
    <p class=MsoNormal><span class=SpellE><span class=GramE>untar</span></span>
    php-5.2.5.tar<o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><span class=SpellE><span class=GramE>cd</span></span>
    /opt/staging_php/php-5.2.5<o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal>-- define the following <span class=SpellE>logicals</span>. <o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'>       </span><o:p></o:p></p>
    <p class=MsoNormal>ORACLE_HOME=/u03/oracle/10203<o:p></o:p></p>
    <p class=MsoNormal><span class=GramE>export</span> ORACLE_HOME<o:p></o:p></p>
    <p class=MsoNormal>LIBPATH=$LIBPATH<span class=GramE>:$</span>ORACLE_HOME/lib<o:p></o:p></p>
    <p class=MsoNormal><span class=GramE>export</span> LIBPATH<o:p></o:p></p>
    <p class=MsoNormal>LD_LIBRARY_PATH=$ORACLE_HOME/<span class=SpellE>lib<span
    class=GramE>:$</span>ORACLE_HOME/rdbms/lib</span><o:p></o:p></p>
    <p class=MsoNormal><span class=GramE>export</span> LD_LIBRARY_PATH<o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal>Invoking <span class=GramE>configure</span>:<o:p></o:p></p>
    <p class=MsoNormal>-------------------<o:p></o:p></p>
    <p class=MsoNormal>CFLAGS=&quot;$CFLAGS -DHAVE_LONG_LONG&quot;<o:p></o:p></p>
    <p class=MsoNormal><span class=GramE>export</span> CFLAGS<o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><span class=GramE>./</span>configure<span
    style='mso-spacerun:yes'>  </span>\<o:p></o:p></p>
    <p class=MsoNormal>--with-apxs2=/<span class=SpellE>usr/local/apache/bin/apxs</span>
    \<o:p></o:p></p>
    <p class=MsoNormal>--with-<span class=SpellE>ldap</span> \<o:p></o:p></p>
    <p class=MsoNormal>--with-oracle=/u03/oracle/10203 \<o:p></o:p></p>
    <p class=MsoNormal>--with-oci8=/u03/oracle/10203 \<o:p></o:p></p>
    <p class=MsoNormal>--with-<span class=SpellE>config</span>-file-path=/<span
    class=SpellE>usr/local/apache/php</span> \<o:p></o:p></p>
    <p class=MsoNormal>--prefix=/<span class=SpellE>usr/local/apache/php</span> \<o:p></o:p></p>
    <p class=MsoNormal>--without-<span class=SpellE>mysql</span><o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal>Thank you for using PHP.<span style='mso-spacerun:yes'>    
    </span>&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt; <span
    class=SpellE><span class=GramE>php</span></span> compiled fine <o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal>Notice: Following unknown configure options were used:<o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal>--with-oracle=/u03/oracle/10203<o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal>Check '<span class=GramE>./</span>configure --help' for available
    options<o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><span class=GramE>make</span><o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><span class=GramE>make</span> install<o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><span class=GramE># ./</span><span class=SpellE>httpd</span>
    -l<o:p></o:p></p>
    <p class=MsoNormal>Compiled in modules:<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'>  </span><span class=SpellE>core.c</span><o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'>  </span><span class=SpellE>prefork.c</span><o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'>  </span><span class=SpellE>http_core.c</span><o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'>  </span><span class=SpellE>mod_so.c</span><o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal>-- <span class=GramE>in</span> case of error otherwise not
    needed.<o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal># <span class=SpellE><span class=GramE>httpd</span></span>
    -M<o:p></o:p></p>
    <p class=MsoNormal>Loaded Modules:<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>core_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>authn_file_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>authn_default_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>authz_host_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>authz_groupfile_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>authz_user_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>authz_default_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>auth_basic_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>include_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>filter_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>log_config_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>env_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>setenvif_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>mpm_prefork_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>http_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>mime_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>status_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>autoindex_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>asis_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>cgi_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>negotiation_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>dir_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>actions_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>userdir_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>alias_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span><span class=SpellE>so_module</span>
    (static)<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-spacerun:yes'> </span>php5_module
    (shared)<span style='mso-spacerun:yes'>  
    </span>&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;
    php5 module is loaded<o:p></o:p></p>
    <p class=MsoNormal>Syntax OK<o:p></o:p></p>
    <p class=MsoNormal># <span class=GramE>which</span> <span class=SpellE>httpd</span><o:p></o:p></p>
    <p class=MsoNormal>/<span class=SpellE>usr/local/apache/bin/httpd</span><o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal>&lt;<span class=GramE>html</span>&gt;<o:p></o:p></p>
    <p class=MsoNormal>&lt;<span class=GramE>head</span>&gt;<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-tab-count:1'>            </span>&lt;<span
    class=GramE>title&gt;</span>PHP Test&lt;/title&gt;<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-tab-count:1'>            </span>&lt;<span
    class=GramE>meta</span> http-equiv=&quot;Content-Type&quot;
    content=&quot;text/html; <span class=SpellE>charset</span>=ISO-8859-1&quot;&gt;<o:p></o:p></p>
    <p class=MsoNormal>&lt;/head&gt;<o:p></o:p></p>
    <p class=MsoNormal>&lt;<span class=GramE>body</span>&gt;<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-tab-count:1'>            </span>&lt;h1&gt;PHP
    Test&lt;/h1&gt;<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-tab-count:1'>            </span>&lt;p&gt;<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-tab-count:1'>            </span>&lt;b&gt;An
    Example of PHP in Action&lt;/b&gt;&lt;<span class=SpellE>br</span> /&gt;<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-tab-count:2'>                        </span><span
    class=GramE>&lt;?<span class=SpellE>php</span></span> echo &quot;The Current
    Date and Time is: &lt;<span class=SpellE>br</span>&gt;&quot;;<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-tab-count:3'>                                    </span><span
    class=GramE>echo</span> date(&quot;<span class=SpellE>g:i</span> A l, F j
    Y.&quot;);?&gt;<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-tab-count:1'>            </span>&lt;/p&gt;<o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><span style='mso-tab-count:1'>            </span>&lt;h2&gt;PHP
    Information&lt;/h2&gt;<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-tab-count:1'>            </span>&lt;p&gt;<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-tab-count:2'>                        </span><span
    class=GramE>&lt;?<span class=SpellE>php</span></span> <span class=SpellE>phpinfo</span>();
    ?&gt;<o:p></o:p></p>
    <p class=MsoNormal><span style='mso-tab-count:1'>            </span>&lt;/p&gt;<o:p></o:p></p>
    <p class=MsoNormal>&lt;/body&gt;<o:p></o:p></p>
    <p class=MsoNormal>&lt;/html&gt;<o:p></o:p></p>
    <p class=MsoNormal><o:p> </o:p></p>
    <p class=MsoNormal><span class=GramE>does</span> not give the <span
    class=SpellE>phpinfo</span> page.</p>
    </div>
    </body>
    </html>

    hi I got the php working and now can see the php pages, after i put the extensions=oci8.so .
    but the oci8 is not enabled still cause phpinfo is not showing it and i cant use oci8 calls and get an error.
    so iam trying to recompile apache with openssl and other options but its failing .
    its looking for files in /opt/apache2 directory where as I am installing it in /usr/local/apache .
    Making all in prefork
    find: cannot open /opt/apache2/httpd-2.2.8/include/ap_compat.h: No such file or
    directory
    find: cannot open /opt/apache2/httpd-2.2.8/include/ap_config_auto.h: No such fil
    e or directory
    find: cannot open /opt/apache2/httpd-2.2.8/include/ap_config.h: No such file or
    directory
    find: cannot open /opt/apache2/httpd-2.2.8/include/ap_config_layout.h: No such f
    ile or directory
    find: cannot open /opt/apache2/httpd-2.2.8/include/ap_listen.h: No such file or
    directory
    find: cannot open /opt/apache2/httpd-2.2.8/include/ap_mmn.h: No such file or dir
    ectory
    find: cannot open /opt/apache2/httpd-2.2.8/include/ap_mpm.h: No such file or dir
    ectory
    find: cannot open /opt/apache2/httpd-2.2.8/include/ap_provider.h: No such file o
    r directory
    find: cannot open /opt/apache2/httpd-2.2.8/include/ap_regex.h: No such file or d
    irectory
    find: cannot open /opt/apache2/httpd-2.2.8/include/ap_regkey.h: No such file or
    directory
    find: cannot open /opt/apache2/httpd-2.2.8/include/ap_release.h: No such file or
    directory
    find: cannot open /opt/apache2/httpd-2.2.8/include/http_config.h: No such file o
    r directory
    find: cannot open /opt/apache2/httpd-2.2.8/include/http_connection.h: No such fi
    le or directory
    find: cannot open /opt/apache2/httpd-2.2.8/include/http_core.h: No such file or
    directory

  • My MacBook Pro be ballin' - beachballin' that is. Big freeze problems.

    Hi,
    My MacBook Pro has decided to start freezing up and beachballing whenever I use Skype, Mail, Plex and sometimes when I use Launchbar. Usually my MacBook locks up for anything from several seconds to a few minutes, making it nearly impossible to get even basic things done. Typically, whenever I load up or type something into the above apps is when it locks up. Mail just locks up whenever I do anything when it's in the foreground. If I leave these apps open, the freezing spreads to other apps I regularly use, such as Safari, or even Activity Monitor or the Force Quit Window when I'm trying to diagnose the problem and quit the problem apps.
    It's happened to me a couple of times before over the past year, and I thought I'd fixed it by deleting then reinstalling Skype and Growl (which was also slowing things down a lot) using AppZapper. But that hasn't helped much this time.
    It was getting so bad that I tried deleting all my plist files in ~/Library/Preferences, in the hope it was a corrupt plist file. But the same apps cause the same slowdown after having done that, too. Actually, Skype and Launchbar seem a little bit better now. Skype hangs now after I press enter to send a message in Skype. Actually typing is (sometimes, but not always) OK. Launchbar only hangs for a few seconds, and not all the time now. Mail is still awful.
    Looking in Console, which I'm not very familiar with, brings up some recurring messages that don't look good:
    (I'm not sure if this one is relevant, but it keeps appearing every few seconds)
    18/09/2010 14:20:44 com.apple.launchd[1] (com.jft.PdaNetMac[13262]) posix_spawnp("/Applications/PdaNetMac.app/Contents/MacOS/PdaNetMac", ...): No such file or directory
    18/09/2010 14:20:44 com.apple.launchd[1] (com.jft.PdaNetMac[13262]) Exited with exit code: 1
    18/09/2010 14:20:44 com.apple.launchd[1] (com.jft.PdaNetMac) Throttling respawn: Will start in 10 seconds
    18/09/2010 14:20:50 org.apache.httpd[13263] (2)No such file or directory: httpd: could not open error log file /private/var/log/apache2/error_log.
    18/09/2010 14:20:50 org.apache.httpd[13263] Unable to open logs
    The weird thing is I deleted pdanet ages ago. And searching in Launchbar, Spotlight and Houdahspot shows no relevant pdanet files other than my web receipt for buying it. The above error message keeps repeating ad infinitum.
    I suspect these errors have more to do with the problem:
    18/09/2010 15:17:27 Skype[14047] Error loading /Library/QuickTime/DigitalVoodoo.component/Contents/MacOS/VoodooSDDV10: dlopen(/Library/QuickTime/DigitalVoodoo.component/Contents/MacOS/VoodooSDDV10, 262): Library not loaded: /Library/Frameworks/DigitalVoodooLib.framework/Versions/A/DigitalVoodooLib
    Referenced from: /Library/QuickTime/DigitalVoodoo.component/Contents/MacOS/VoodooSDDV10
    Reason: image not found
    18/09/2010 15:17:31 Skype[14047] AppDelegate::checkAppFirstRun: error on NSPropertyListSerialization of old_plist: stream had too few bytes
    18/09/2010 15:17:51 Skype[14047] Failure with ATSFontGetUnicodeCharacterCoverage(). Disabling font fallback optimization for characters not renderable.
    These errors keep repeating as long as I have Skype open.
    This message kept repeating when I opened Mail just now:
    18/09/2010 15:50:30 Mail[14568] Failure with ATSFontGetUnicodeCharacterCoverage(). Disabling font fallback optimization for characters not renderable.
    So perhaps this is a font problem? Does anyone know how to fix this? Any help appreciated. I rely a lot on my MacBook for my work, so the faster I can fix this without having to erase and install, the better. But I'll suck it up and reinstall if that's the only solution.
    Thanks in advance! (^_^)

    Thanks for the reply. (^_^)
    I had a look at the links and found I'd attempted much of what was there already.
    Step 2 (clearing the font cache) in the font article looked useful, but I've found it's not helped, unfortunately. In fact, these new error messages have popped up in Console since I cleared the font cache and restarted:
    19/09/2010 00:48:18 com.apple.ATSServer[1166] FODBError: FODBReconcileWithAuxFile called: kAuxFileHeadersDontMatchErr
    19/09/2010 00:48:18 com.apple.ATSServer[1166] FODBCheck: FODBReconcileWithAuxFile - counts for entries and sizes do not match
    19/09/2010 00:48:20 com.apple.ATSServer[1166] ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    19/09/2010 00:48:20 com.apple.ATSServer[1166] 2010.09.19 00:48:20.32
    19/09/2010 00:48:20 com.apple.ATSServer[1166] ATSServer got a fatal error (status: -4) while processing a message (id: 20) from pid=1006.
    19/09/2010 00:48:27 org.apache.httpd[1168] (2)No such file or directory: httpd: could not open error log file /private/var/log/apache2/error_log.
    19/09/2010 00:48:27 org.apache.httpd[1168] Unable to open logs
    19/09/2010 00:48:29 com.apple.ATSServer[1169] FODBError: FODBReconcileWithAuxFile called: kAuxFileHeadersDontMatchErr
    19/09/2010 00:48:29 com.apple.ATSServer[1169] FODBCheck: FODBReconcileWithAuxFile - counts for entries and sizes do not match
    19/09/2010 00:48:30 Skype[1006] Failure with ATSFontGetUnicodeCharacterCoverage(). Disabling font fallback optimization for characters not renderable.
    19/09/2010 00:48:32 Skype[1006] MacContact wrapper could not GetContact with identity:
    19/09/2010 00:48:32 Skype[1006] MacContact wrapper could not GetContact with identity:
    19/09/2010 00:48:32 Skype[1006] avatarFromLibForIdentity unable to locate contact object
    19/09/2010 00:48:32 Skype[1006] avatar96 was not found when trying to cache avatar24
    19/09/2010 00:48:32 Skype[1006] MacContact wrapper could not GetContact with identity:
    19/09/2010 00:48:32 Skype[1006] MacContact wrapper could not GetContact with identity:
    19/09/2010 00:48:32 Skype[1006] avatarFromLibForIdentity unable to locate contact object
    19/09/2010 00:48:32 Skype[1006] avatar96 was not found when trying to cache avatar24
    19/09/2010 00:48:32 Skype[1006] MacContact wrapper could not GetContact with identity:
    19/09/2010 00:48:32 Skype[1006] MacContact wrapper could not GetContact with identity:
    19/09/2010 00:48:32 Skype[1006] avatarFromLibForIdentity unable to locate contact object
    19/09/2010 00:48:32 Skype[1006] avatar96 was not found when trying to cache avatar24
    19/09/2010 00:48:32 Skype[1006] MacContact wrapper could not GetContact with identity:
    19/09/2010 00:48:32 Skype[1006] MacContact wrapper could not GetContact with identity:
    19/09/2010 00:48:32 Skype[1006] avatarFromLibForIdentity unable to locate contact object
    19/09/2010 00:48:32 Skype[1006] avatar96 was not found when trying to cache avatar24
    19/09/2010 00:48:32 Skype[1006] avatar96 was not found when trying to cache avatar24
    Launchbar also produces similar results as the top half of that pile of errors, as well as the previously mentioned Quicktime Voodoo component errors. Perhaps that problem is significant, too, I don't know... Right now, I'm about ready to just give up and erase and reinstall. But that doesn't prevent the problem from happening again, nor knowing what I can restore from backups without resurrecting the same problems... Any takers?

  • After upgrading Apache to 2.2.23 there is a problem

    I (perhaps foolishly) upgraded Apache from 2.2.22 to 2.2.23 on OS X Mountain Lion Server. Following the upgrade, remote clients on the LAN cannot access the Web server's default.html.en web page. The DNS entries still look okay on OS X Mountain Lion Server.
    Any ideas as to what might have got broken/overwritten by Apache by doing the upgrade that I need to fix or could something be blocking things?
    Also, while probably not related, when, directly from the (updated) web server machine, I access 127.0.0.1 from within the web browser I can see the start up web page for Apache on OS X Server (so Apache is running, just can't be accessed remotely). However, when I try to access the same web page, again directly from the local web server machine, but this time using localhost instead of the IP address in the URL then the web page doesn't appear.
    The hosts file on the web server has the following entries:
    127.0.0.1     localhost
    255.255.255.255     broadcasthost
    ::1             localhost
    fe80::1%lo0     localhost

    Yes, I should have backed up httpd.conf but unfortunately I didn't (it was a very long day). On the upside I am learning way more about httpd.conf than I ever thought I would.
    After some soul searching I have since discovered that the ./configure string should also have had --disable-version in it. This is because it is a built-in module.
    So a recompile of Apache and Apache is running and remote client machines can see 'html' based web pages. However, there remains a problem in that accessing php pages results in the php code being viewed instead of the web page. So something is still broken somewhere just not sure what. Any ideas? Please advise.
    Below is a snippet of my httpd.conf RE the PHP side of things:
    Snippet----------------------------
    LoadModule php5_module        libexec/apache2/libphp5.so
    #I have checked the libexec/apache2/libphp5.so exists. Still scratching head!
    PHPIniDir “/etc/php.ini”
    <IfModule php5_module>
        AddType application/x-httpd-php .php
        AddType application/x-httpd-php-source .phps
        <IfModule dir_module>
            DirectoryIndex index.html index.php
        </IfModule>
    </IfModule>
    Include /private/etc/apache2/other/*.conf
    End snippet----------------------------
    By the way, doing a 'php -v' gives me the following result in Terminal which I presume means that PHP is okay but for some reason Apache or the Server is missing something but I don't know what that might be
    PHP 5.4.10 (cli) (built: Jan  9 2013 09:33:16)
    Copyright © 1997-2012 The PHP Group
    Zend Engine v2.4.0, Copyright © 1998-2012 Zend Technologies

  • Apache/2.2.4 (Win32) + Weblogic 8.1 Problem with Module

    Hey together,
    i'm pretty new to this whole weblogic thing.
    I wanted to install the apache plugin for weblogic. I am using weblogic 8.1 and apache 2.2.4 on win xp sp2.
    I followed the instructions given in the tutorial at bea.com.
    When i try to test the conf-file via httpd.exe -t i get
    httpd.exe: Syntax error on line 116 of C:/Programme/Apache Software Foundation/Apache2.2/conf/httpd.conf: Cannot load C:
    /Programme/Apache Software Foundation/Apache2.2/modules/mod_wl_20.so into server: Das angegebene Modul wurde nicht gefun
    den.
    But the mod_wl_20.so file is definitley in this directory as all the other modules.
    This is the important part of my httpd.conf:
    <IfModule mod_weblogic.c>
    <Location /weblogic>
    SetHandler weblogic-handler
    WebLogicHost localhost
    WebLogicPort 7101
    MatchExpression *
    </Location>
    </IfModule>
    I even downloaded the latest version of this plugin without sucess. It's all 32 bit, so there should be no problems with that.
    I read through several topics/threads dealing with same problems but without success.
    Could any1 help please?
    Thanks in advance.

    Hi,
    What do you have on line 116 ? I have it setup on Win2k and it works fine with the following statements. Only difference is that I have Apache 2.0.54 (not 2.2.x)
    LoadModule weblogic_module modules/mod_wl_20.so
    <Location /wlPortal >
    SetHandler weblogic-handler
    WebLogicHost localhost
    WebLogicPort 7001
    </Location>
    Kevin.

  • Apache 2.2.3 recompilation problem with updated openssl

    I am trying to recompile an apache 2.2.3 with an updated openssl and stumble on httpd-2.2.3 make. I did compile this setup in the last year successfully, only difference is updated openssl.
    First, I installed openssl-0.9.6m from source. Test install:
    /usr/local/ssl/bin/openssl version
    OpenSSL 0.9.6m 17 Mar 2004
    Using following gcc version:
    gcc -v
    Reading specs from /usr/local/lib/gcc/sparc-sun-solaris2.10/3.4.6/specs
    Configured with: ../configure with-as=/usr/ccs/bin/as with-ld=/usr/ccs/bin/ld enable-shared enable-languages=c,c++,f77
    Thread model: posix
    gcc version 3.4.6
    PATH output:
    echo $PATH
    /usr/sbin:/usr/bin:/usr/local:/usr/local/bin:/usr/ccs/bin:/usr/openwin/bin:/usr /dt/bin:/usr/platform/SUNW,Sun-Fire-V240/sbin:/opt/sun/bin:/opt/SUNWvts/bin
    This is my apache config options:
    ./configure enable-so enable-ssl enable-rewrite enable-proxy enable-proxy-balancer with-ssl=/usr/local/ssl
    make output:
    Making all in srclib
    Making all in pcre
    Making all in os
    Making all in unix
    Making all in server
    Making all in mpm
    Making all in prefork
    Making all in modules
    Making all in aaa
    Making all in filters
    Making all in loggers
    Making all in metadata
    Making all in proxy
    Making all in ssl
    In file included from /usr/local/ssl/include/openssl/ecdh.h:79,
    from /usr/local/ssl/include/openssl/engine.h:85,
    from ssl_toolkit_compat.h:45,
    from ssl_private.h:59,
    from mod_ssl.c:27:
    /usr/local/ssl/include/openssl/ossl_typ.h:79: error: redefinition of typedef 'ASN1_INTEGER'
    /usr/local/ssl/include/openssl/asn1.h:241: error: previous declaration of 'ASN1_INTEGER' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:80: error: redefinition of typedef 'ASN1_ENUMERATED'
    /usr/local/ssl/include/openssl/asn1.h:242: error: previous declaration of 'ASN1_ENUMERATED' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:81: error: redefinition of typedef 'ASN1_BIT_STRING'
    /usr/local/ssl/include/openssl/asn1.h:243: error: previous declaration of 'ASN1_BIT_STRING' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:82: error: redefinition of typedef 'ASN1_OCTET_STRING'
    /usr/local/ssl/include/openssl/asn1.h:244: error: previous declaration of 'ASN1_OCTET_STRING' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:83: error: redefinition of typedef 'ASN1_PRINTABLESTRING'
    /usr/local/ssl/include/openssl/asn1.h:245: error: previous declaration of 'ASN1_PRINTABLESTRING' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:84: error: redefinition of typedef 'ASN1_T61STRING'
    /usr/local/ssl/include/openssl/asn1.h:246: error: previous declaration of 'ASN1_T61STRING' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:85: error: redefinition of typedef 'ASN1_IA5STRING'
    /usr/local/ssl/include/openssl/asn1.h:247: error: previous declaration of 'ASN1_IA5STRING' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:86: error: redefinition of typedef 'ASN1_GENERALSTRING'
    /usr/local/ssl/include/openssl/asn1.h:248: error: previous declaration of 'ASN1_GENERALSTRING' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:87: error: redefinition of typedef 'ASN1_UNIVERSALSTRING'
    /usr/local/ssl/include/openssl/asn1.h:249: error: previous declaration of 'ASN1_UNIVERSALSTRING' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:88: error: redefinition of typedef 'ASN1_BMPSTRING'
    /usr/local/ssl/include/openssl/asn1.h:250: error: previous declaration of 'ASN1_BMPSTRING' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:89: error: redefinition of typedef 'ASN1_UTCTIME'
    /usr/local/ssl/include/openssl/asn1.h:251: error: previous declaration of 'ASN1_UTCTIME' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:90: error: redefinition of typedef 'ASN1_TIME'
    /usr/local/ssl/include/openssl/asn1.h:252: error: previous declaration of 'ASN1_TIME' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:91: error: redefinition of typedef 'ASN1_GENERALIZEDTIME'
    /usr/local/ssl/include/openssl/asn1.h:253: error: previous declaration of 'ASN1_GENERALIZEDTIME' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:92: error: redefinition of typedef 'ASN1_VISIBLESTRING'
    /usr/local/ssl/include/openssl/asn1.h:254: error: previous declaration of 'ASN1_VISIBLESTRING' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:93: error: redefinition of typedef 'ASN1_UTF8STRING'
    /usr/local/ssl/include/openssl/asn1.h:255: error: previous declaration of 'ASN1_UTF8STRING' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:94: error: redefinition of typedef 'ASN1_BOOLEAN'
    /usr/local/ssl/include/openssl/asn1.h:256: error: previous declaration of 'ASN1_BOOLEAN' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:95: error: redefinition of typedef 'ASN1_NULL'
    /usr/local/ssl/include/openssl/asn1.h:259: error: previous declaration of 'ASN1_NULL' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:107: error: redefinition of typedef 'BIGNUM'
    /usr/local/ssl/include/openssl/bn.h:241: error: previous declaration of 'BIGNUM' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:108: error: redefinition of typedef 'BN_CTX'
    /usr/local/ssl/include/openssl/bn.h:254: error: previous declaration of 'BN_CTX' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:109: error: redefinition of typedef 'BN_BLINDING'
    /usr/local/ssl/include/openssl/bn.h:264: error: previous declaration of 'BN_BLINDING' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:110: error: redefinition of typedef 'BN_MONT_CTX'
    /usr/local/ssl/include/openssl/bn.h:276: error: previous declaration of 'BN_MONT_CTX' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:111: error: redefinition of typedef 'BN_RECP_CTX'
    /usr/local/ssl/include/openssl/bn.h:288: error: previous declaration of 'BN_RECP_CTX' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:114: error: redefinition of typedef 'BUF_MEM'
    /usr/local/ssl/include/openssl/buffer.h:71: error: previous declaration of 'BUF_MEM' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:116: error: redefinition of typedef 'EVP_CIPHER'
    /usr/local/ssl/include/openssl/evp.h:330: error: previous declaration of 'EVP_CIPHER' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:117: error: redefinition of typedef 'EVP_CIPHER_CTX'
    /usr/local/ssl/include/openssl/evp.h:331: error: previous declaration of 'EVP_CIPHER_CTX' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:118: error: redefinition of typedef 'EVP_MD'
    /usr/local/ssl/include/openssl/evp.h:276: error: previous declaration of 'EVP_MD' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:119: error: redefinition of typedef 'EVP_MD_CTX'
    /usr/local/ssl/include/openssl/evp.h:328: error: previous declaration of 'EVP_MD_CTX' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:120: error: redefinition of typedef 'EVP_PKEY'
    /usr/local/ssl/include/openssl/evp.h:186: error: previous declaration of 'EVP_PKEY' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:122: error: redefinition of typedef 'DH'
    /usr/local/ssl/include/openssl/dh.h:78: error: previous declaration of 'DH' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:123: error: redefinition of typedef 'DH_METHOD'
    /usr/local/ssl/include/openssl/dh.h:93: error: previous declaration of 'DH_METHOD' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:125: error: redefinition of typedef 'DSA'
    /usr/local/ssl/include/openssl/dsa.h:87: error: previous declaration of 'DSA' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:126: error: redefinition of typedef 'DSA_METHOD'
    /usr/local/ssl/include/openssl/dsa.h:112: error: previous declaration of 'DSA_METHOD' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:128: error: redefinition of typedef 'RSA'
    /usr/local/ssl/include/openssl/rsa.h:76: error: previous declaration of 'RSA' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:129: error: redefinition of typedef 'RSA_METHOD'
    /usr/local/ssl/include/openssl/rsa.h:114: error: previous declaration of 'RSA_METHOD' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:131: error: redefinition of typedef 'RAND_METHOD'
    /usr/local/ssl/include/openssl/rand.h:76: error: previous declaration of 'RAND_METHOD' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:136: error: redefinition of typedef 'X509'
    /usr/local/ssl/include/openssl/x509.h:280: error: previous declaration of 'X509' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:137: error: redefinition of typedef 'X509_ALGOR'
    /usr/local/ssl/include/openssl/x509.h:130: error: previous declaration of 'X509_ALGOR' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:138: error: redefinition of typedef 'X509_CRL'
    /usr/local/ssl/include/openssl/x509.h:407: error: previous declaration of 'X509_CRL' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:139: error: redefinition of typedef 'X509_NAME'
    /usr/local/ssl/include/openssl/x509.h:176: error: previous declaration of 'X509_NAME' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:140: error: redefinition of typedef 'X509_STORE'
    /usr/local/ssl/include/openssl/x509_vfy.h:176: error: previous declaration of 'X509_STORE' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:141: error: redefinition of typedef 'X509_STORE_CTX'
    /usr/local/ssl/include/openssl/x509_vfy.h:157: error: previous declaration of 'X509_STORE_CTX' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:143: error: redefinition of typedef 'X509V3_CTX'
    /usr/local/ssl/include/openssl/x509v3.h:132: error: previous declaration of 'X509V3_CTX' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:144: error: redefinition of typedef 'CONF'
    /usr/local/ssl/include/openssl/conf.h:81: error: previous declaration of 'CONF' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:165: error: redefinition of typedef 'CRYPTO_EX_DATA'
    /usr/local/ssl/include/openssl/crypto.h:194: error: previous declaration of 'CRYPTO_EX_DATA' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:168: error: redefinition of typedef 'CRYPTO_EX_new'
    /usr/local/ssl/include/openssl/crypto.h:198: error: previous declaration of 'CRYPTO_EX_new' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:170: error: redefinition of typedef 'CRYPTO_EX_free'
    /usr/local/ssl/include/openssl/crypto.h:201: error: previous declaration of 'CRYPTO_EX_free' was here
    /usr/local/ssl/include/openssl/ossl_typ.h:172: error: redefinition of typedef 'CRYPTO_EX_dup'
    /usr/local/ssl/include/openssl/crypto.h:204: error: previous declaration of 'CRYPTO_EX_dup' was here
    In file included from /usr/local/ssl/include/openssl/engine.h:91,
    from ssl_toolkit_compat.h:45,
    from ssl_private.h:59,
    from mod_ssl.c:27:
    /usr/local/ssl/include/openssl/store.h:230: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:232: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:234: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:237: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:239: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:241: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:246: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:248: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:251: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:252: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:255: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:257: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:259: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:264: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:266: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:268: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:271: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:273: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:275: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:280: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:282: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:284: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:286: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:289: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:291: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:296: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:298: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:301: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:303: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:305: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:307: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:310: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:312: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:323: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:324: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:325: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:328: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:329: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:330: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:331: error: syntax error before "OPENSSL_ITEM"
    /usr/local/ssl/include/openssl/store.h:377: error: syntax error before '*' token
    In file included from ssl_toolkit_compat.h:45,
    from ssl_private.h:59,
    from mod_ssl.c:27:
    /usr/local/ssl/include/openssl/engine.h:624: warning: no semicolon at end of struct or union
    /usr/local/ssl/include/openssl/engine.h:624: error: syntax error before '*' token
    /usr/local/ssl/include/openssl/engine.h:627: error: syntax error before '}' token
    /usr/local/ssl/include/openssl/engine.h:627: warning: data definition has no type or storage class
    /usr/local/ssl/include/openssl/engine.h:660: error: syntax error before '*' token
    *** Error code 1
    The following command caused the error:
    /usr/local/apache2/build/libtool silent mode=compile gcc -g -O2 -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOU
    RCE -I/tmp/httpd-2.2.3/srclib/pcre -I. -I/tmp/httpd-2.2.3/os/unix -I/tmp/httpd-2.2.3/server/mpm/prefork -I/tmp/httpd-2.2.3/modules/http -I/t
    mp/httpd-2.2.3/modules/filters -I/tmp/httpd-2.2.3/modules/proxy -I/tmp/httpd-2.2.3/include -I/tmp/httpd-2.2.3/modules/generators -I/tmp/httpd-2
    .2.3/modules/mappers -I/tmp/httpd-2.2.3/modules/database -I/usr/local/apache2/include -I/tmp/httpd-2.2.3/modules/proxy/../generators -I/usr/loc
    al/ssl/include -I/usr/sfw/include -I/tmp/httpd-2.2.3/modules/ssl -I/tmp/httpd-2.2.3/modules/dav/main -prefer-non-pic -static -c mod_ssl.c && to
    uch mod_ssl.lo
    make: Fatal error: Command failed for target `mod_ssl.lo'
    Current working directory /tmp/httpd-2.2.3/modules/ssl
    *** Error code 1
    The following command caused the error:
    otarget=`echo all-recursive|sed s/-recursive//`; \
    list=' '; \
    for i in $list; do \
    if test -d "$i"; then \
    target="$otarget"; \
    echo "Making $target in $i"; \
    if test "$i" = "."; then \
    made_local=yes; \
    target="local-$target"; \
    fi; \
    (cd $i && make $target) || exit 1; \
    fi; \
    done; \
    if test "$otarget" = "all" && test -z 'libmod_ssl.la'; then \
    made_local=yes; \
    fi; \
    if test "$made_local" != "yes"; then \
    make "local-$otarget" || exit 1; \
    fi
    make: Fatal error: Command failed for target `all-recursive'
    Current working directory /tmp/httpd-2.2.3/modules/ssl
    *** Error code 1
    The following command caused the error:
    otarget=`echo all-recursive|sed s/-recursive//`; \
    list=' aaa filters loggers metadata proxy ssl http generators mappers'; \
    for i in $list; do \
    if test -d "$i"; then \
    target="$otarget"; \
    echo "Making $target in $i"; \
    if test "$i" = "."; then \
    made_local=yes; \
    target="local-$target"; \
    fi; \
    (cd $i && make $target) || exit 1; \
    fi; \
    done; \
    if test "$otarget" = "all" && test -z ''; then \
    made_local=yes; \
    fi; \
    if test "$made_local" != "yes"; then \
    make "local-$otarget" || exit 1; \
    fi
    make: Fatal error: Command failed for target `all-recursive'
    Current working directory /tmp/httpd-2.2.3/modules
    *** Error code 1
    The following command caused the error:
    otarget=`echo all-recursive|sed s/-recursive//`; \
    list=' srclib os server modules support'; \
    for i in $list; do \
    if test -d "$i"; then \
    target="$otarget"; \
    echo "Making $target in $i"; \
    if test "$i" = "."; then \
    made_local=yes; \
    target="local-$target"; \
    fi; \
    (cd $i && make $target) || exit 1; \
    fi; \
    done; \
    if test "$otarget" = "all" && test -z 'httpd '; then \
    made_local=yes; \
    fi; \
    if test "$made_local" != "yes"; then \
    make "local-$otarget" || exit 1; \
    fi
    make: Fatal error: Command failed for target `all-recursive'
    Any help appreciated

    I'm experiencing the same problem with the current DirecTV remote not being able to learn more than the first button prompted to enter (arrow-down). The error message "appletv has already learned this button" appears when attempting to enter the second button prompted (arrow-up). Furthermore, I have attempted configuration on two separate DirecTV HR21 remotes in both AV1 and AV2 modes.
    Come on Apple -- don't tease us! Testing wasn't done to make sure AppleTV can learn to respond to a current DirecTV remote? Yikes. I wonder what 3rd-party remotes were tested and confirmed to work.

Maybe you are looking for

  • How can I restore data from iCloud

    My iPad locked up last night and I had to restore to factory settings to make it operable.  During the process it asked me if I wanted to restore my data and it told me that the latest and only backup was from a few minutes before that time which was

  • Call Webgui from WD application with only one log on

    Hi In my first application using WD ABAP, requirement is to call WEBGUI from the application. Calling WEBGUI is working fine but while calling WEBGUI the system asks for another log-on which is not required. When the application first executes it ask

  • Converting aac files to aiff format in iTunes 8.0

    I've always been able to convert files by using the preferences, advanced, import tab on iTunes. With 8.0, I can convert to mp3 format without having to go through preferences, but there is no place to convert an aac (mp4) to an aiff, which is what I

  • How to schedule procedure in DBMS_JOBS?

    Hi, i have one stored procedure .. i want to schedule that procedure to run every 15 of the month at 2AM... plz help

  • Gnome-power-management: /etc/group question

    gnome-power-management suspending works great for me as root , but not as unprivileged user: # groups root bin daemon sys adm disk wheel log # su print $ groups wheel video audio power noah thinkpad Wondering why this is?  (pm-suspend works as unpriv