Running Vhosts on 10.4.11

Hi all ive now moved from my linux server to running a tiger server and want to setup vhosts
Ive set my sites up in the web services admin and added the www aliases in so that my server now points to the relevant folders for each vhost
I am wandering where can i get tiger to add a default html page to each vhost folder once he site is created, also do i then need to add each site to workgoup manager in order to make it accessible by ftp and set up the relevant users
I used ispconfig on my linux box to handle all of this does anyone know if there is a simular management tool for tiger server
thanks

I am wandering where can i get tiger to add a default html page to each vhost folder once he site is created.
There's nothing in the Server Admin GUI that will create any content automatically when the site is created. This means that there's no automatic way to create a file when you add a new site.
Off hand I can think of a couple of solutions, though.
One would be a launchd script that watches your /etc/httpd/sites directory. Any time a new site is created it fires off your script to populate the site's DocumentRoot. It shouldn't be too hard to do.
Another option would be to not create files at all - rather configure apache to serve some other content in place of a missing index.html document. You could do this via a RewriteRule, for example, where Apache silently substitutes a different file than that requested, e.g.:
RewriteCond %{DOCUMENTROOT}%{REQUESTFILENAME} !-f
RewriteRule ^/index.html /path/to/generic/index.html
The first check determines whether the requested file actually exists or not. If that's true (the file is missing) it then checks to see if the request is for '/index.html' and if so it silently substitutes the /path/to/generic/index.html file instead.
I don't know the hosting company you used before but I'd guess they're using the second model.

Similar Messages

  • Vhost configuration for Adobe Media Server running under linux.

    Please help me with Vhost configuration for Adobe Media Server running under linux.
    I was running a media sharing website for which I wanted to use Adobe Media Server.
    To use, AMS, I disabled the already installed Apache server and installed AMS along with the built in Apache server. I could successfully install AMS and could login to AMS Admin Console through my IP number.
    My existing website, www.mydomain.com is having its contents located at:
    /home/mydomain/public_html
    (Directory created under the old version of Apache not bundled with AMS)
    Users will be uploading their videos, which will get transcoded and will be delivered to the website visitors in the existing scenario.
    To use this website with AMS, this is what I did:
    I created a folder for my domain, www.mydomain.com as below
    /opt/adobe/ams/conf/_defaultRoot_/www.mydomain.com
    Copied Application.xml and Vhost.xml from /opt/adobe/ams/conf/_defaultRoot_/   and pasted them in /opt/adobe/ams/conf/_defaultRoot_/www.mydomain.com
    In the Application.xml file there are 2 entries:
    <Alias name="mydomain.com"></Alias>
    <AppsDir>${/home/mydomain/public_html}</AppsDir>
    Please help me with further steps to be completed:
    Do I need to create a separate VirtualHost entry in the Apache installed with AMS?
    If yes, can I specify already existing document root for my website (/home/mydomain/public_html) or do I need to create a separate folder under webroot/Apache ?
    If yes to point 2 above, then do I need to copy all the existing contents from /home/mydomain/public_html to the newly created folder ?
    I hope, I can serve all my static contents like html pages and php and media like video/audio. In that case do I need create alias to my Media/Alias folder or AMS will automatically start streaming when a video/audio is requested ?
    What other steps do i need to complete?
    Any help in this regard would be highly appreciated.
    Thanks and Regards

    Dear sir or madam,
    Here is Letswin Technology, which specializes in global servers, web hosting, VPS, VPNj. If anything I can do for you, pls contact us!
    Have a nice day!

  • Running JSPs through Apache Jserv in OC4J

    hello there -
    I'm hoping someone can help me.
    I want index.jsp, our first page, to ACT like a JSP, rather than the current HTML. It seems that httpd.conf wont access OC4J, so i've attempted to access Jserv. Still, things wont work.
    If someone could please take a look at what i have so far in httpd.conf, more specifically, near the bottom where i've opened up Jserv, and let me know what i'm doing wrong, i'd greatly appreciate it!
    ## httpd.conf -- Apache HTTP server configuration file
    # Based upon the NCSA server configuration files originally by Rob McCool.
    # This is the main Apache server configuration file. It contains the
    # configuration directives that give the server its instructions.
    # See <URL:http://www.apache.org/docs/> for detailed information about
    # the directives.
    # 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.
    # After this file is processed, the server will look for and process
    # /devl/ics3/devl/apache/srm.conf and then /devl/ics3/devl/apache/access.conf
    # unless you have overridden these with ResourceConfig and/or
    # AccessConfig directives here.
    # The configuration directives are grouped into three basic sections:
    # 1. Directives that control the operation of the Apache server process as a
    # whole (the 'global environment').
    # 2. Directives that define the parameters of the 'main' or 'default' server,
    # which responds to requests that aren't handled by a virtual host.
    # These directives also provide default values for the settings
    # of all virtual hosts.
    # 3. Settings for virtual hosts, which allow Web requests to be sent to
    # different IP addresses or hostnames and have them handled by the
    # same Apache server process.
    # 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 "/usr/local/apache" will be interpreted by the
    # server as "/usr/local/apache/logs/foo.log".
    ### Section 1: Global Environment
    # The directives in this section affect the overall operation of Apache,
    # such as the number of concurrent requests it can handle or where it
    # can find its configuration files.
    # ServerType is either inetd, or standalone. Inetd mode is only supported on
    # Unix platforms.
    ServerType standalone
    # 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: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 "/oraapp/9iAS10220/home/Apache/Apache"
    # The LockFile directive sets the path to the lockfile used when Apache
    # is compiled with either USE_FCNTL_SERIALIZED_ACCEPT or
    # USE_FLOCK_SERIALIZED_ACCEPT. This directive should normally be left at
    # its default value. The main reason for changing it is if the logs
    # directory is NFS mounted, since the lockfile MUST BE STORED ON A LOCAL
    # DISK. The PID of the main server process is automatically appended to
    # the filename.
    #LockFile /devl/ics3/devl/apache/logs/httpd.lock
    # PidFile: The file in which the server should record its process
    # identification number when it starts.
    PidFile /devl/ics3/devl/apache/logs/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 /devl/ics3/devl/apache/logs/httpd.scoreboard
    # In the standard configuration, the server will process httpd.conf (this
    # file, specified by the -f command line option), srm.conf, and access.conf
    # in that order. The latter two files are now distributed empty, as it is
    # recommended that all directives be kept in a single file for simplicity.
    # The commented-out values below are the built-in defaults. You can have the
    # server ignore these files altogether by using "/dev/null" (for Unix) or
    # "nul" (for Win32) for the arguments to the directives.
    #ResourceConfig conf/srm.conf
    #AccessConfig conf/access.conf
    # Timeout: The number of seconds before receives and sends time out.
    Timeout 300
    # KeepAlive: Whether or not to allow persistent connections (more than
    # one request per connection). Set to "Off" to deactivate.
    KeepAlive On
    # MaxKeepAliveRequests: The maximum number of requests to allow
    # during a persistent connection. Set to 0 to allow an unlimited amount.
    # We recommend you leave this number high, for maximum performance.
    MaxKeepAliveRequests 100
    # KeepAliveTimeout: Number of seconds to wait for the next request from the
    # same client on the same connection.
    KeepAliveTimeout 15
    # 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 2
    # Number of servers to start initially --- should be a reasonable ballpark
    # figure.
    StartServers 1
    # Limit on total number of servers running, i.e., limit on the number
    # of clients who can simultaneously connect --- if this limit is ever
    # reached, clients will be LOCKED OUT, so it should NOT BE SET TOO LOW.
    # It is intended mainly as a brake to keep a runaway server from taking
    # the system with it as it spirals down...
    MaxClients 150
    # 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 0
    # Listen: Allows you to bind Apache to specific IP addresses and/or
    # ports, in addition to the default. See also the <VirtualHost>
    # directive.
    #Listen 3000
    #Listen 172.18.4.13:80
    # BindAddress: You can support virtual hosts with this option. This directive
    # is used to tell the server which IP address to listen to. It can either
    # contain "*", an IP address, or a fully qualified Internet domain name.
    # See also the <VirtualHost> and Listen directives.
    #BindAddress 172.18.4.13
    # 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 README.DSO in the Apache 1.3 distribution 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
    LoadModule mmap_static_module libexec/mod_mmap_static.so
    LoadModule vhost_alias_module libexec/mod_vhost_alias.so
    LoadModule env_module libexec/mod_env.so
    LoadModule config_log_module libexec/mod_log_config.so
    LoadModule agent_log_module libexec/mod_log_agent.so
    LoadModule referer_log_module libexec/mod_log_referer.so
    LoadModule mime_magic_module libexec/mod_mime_magic.so
    LoadModule mime_module libexec/mod_mime.so
    LoadModule negotiation_module libexec/mod_negotiation.so
    LoadModule status_module libexec/mod_status.so
    LoadModule info_module libexec/mod_info.so
    LoadModule includes_module libexec/mod_include.so
    LoadModule autoindex_module libexec/mod_autoindex.so
    LoadModule dir_module libexec/mod_dir.so
    LoadModule cgi_module libexec/mod_cgi.so
    LoadModule asis_module libexec/mod_asis.so
    LoadModule imap_module libexec/mod_imap.so
    LoadModule action_module libexec/mod_actions.so
    LoadModule speling_module libexec/mod_speling.so
    LoadModule userdir_module libexec/mod_userdir.so
    LoadModule alias_module libexec/mod_alias.so
    LoadModule rewrite_module libexec/mod_rewrite.so
    LoadModule access_module libexec/mod_access.so
    LoadModule auth_module libexec/mod_auth.so
    LoadModule anon_auth_module libexec/mod_auth_anon.so
    LoadModule dbm_auth_module libexec/mod_auth_dbm.so
    LoadModule digest_module libexec/mod_digest.so
    LoadModule proxy_module libexec/libproxy.so
    LoadModule cern_meta_module libexec/mod_cern_meta.so
    LoadModule expires_module libexec/mod_expires.so
    LoadModule headers_module libexec/mod_headers.so
    LoadModule usertrack_module libexec/mod_usertrack.so
    LoadModule example_module libexec/mod_example.so
    LoadModule unique_id_module libexec/mod_unique_id.so
    LoadModule setenvif_module libexec/mod_setenvif.so
    LoadModule oprocmgr_module libexec/liboprocmgr.so
    LoadModule define_module libexec/mod_define.so
    LoadModule dms_module libexec/mod_dms.so
    LoadModule perl_module libexec/libperl.so
    LoadModule fastcgi_module libexec/mod_fastcgi.so
    <IfDefine SSL>
    LoadModule ssl_module libexec/mod_ssl.so
    </IfDefine>
    # 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
    ### Section 2: '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.
    # If your ServerType directive (set earlier in the 'Global Environment'
    # section) is set to "inetd", the next few directives don't have any
    # effect since their settings are defined by the inetd configuration.
    # Skip ahead to the ServerAdmin directive.
    # Port: The port to which the standalone server listens. For
    # ports < 1023, you will need httpd to be run as root initially.
    #Port 7777
    #Listen 7777
    #Port 80
    #Listen 80
    ## SSL Support
    ## When we also provide SSL we have to listen to the
    ## standard HTTP port (see above) and to the HTTPS port
    <IfDefine SSL>
    # Port 80
    Listen 172.18.4.13:80
    Listen 172.18.4.13:443
    </IfDefine>
    # 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.
    # . On SCO (ODT 3) use "User nouser" and "Group nogroup".
    # . On HPUX you may not be able to use shared memory as nobody, and the
    # suggested workaround is to create a user www and use that user.
    # NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET)
    # when the value of (unsigned)Group is above 60000;
    # don't use Group nobody on these systems!
    User ics3devl
    Group ics3devl
    # ServerAdmin: Your address, where problems with the server should be
    # e-mailed. This address appears on some server-generated pages, such
    # as error documents.
    ServerAdmin [email protected]
    # ServerName allows you to set a host name which is sent back to clients for
    # your server if it's different than the one the program would get (i.e., use
    # "www" instead of the host's real name).
    # Note: You cannot just invent host names and hope they work. The name you
    # define here must be a valid DNS name for your host. If you don't understand
    # this, ask your network administrator.
    # If your host doesn't have a registered DNS name, enter its IP address here.
    # You will have to access it by its address (e.g., http://123.45.67.89/)
    # anyway, and this will make redirections work in a sensible way.
    # 127.0.0.1 is the TCP/IP local loop-back address, often named localhost. Your
    # machine always knows itself by this address. If you use Apache strictly for
    # local testing and development, you may use 127.0.0.1 as the server name.
    ServerName 172.18.4.13
    # 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 "/devl/ics3/devl/webroot/apache"
    # 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
    # permissions.
    <Directory />
    Options FollowSymLinks
    AllowOverride None
    </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 "/devl/ics3/devl/webroot/apache">
    # This may also be "None", "All", or any combination of "Indexes",
    # "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
    # Note that "MultiViews" must be named explicitly --- "Options All"
    # doesn't give it to you.
    Options Indexes FollowSymLinks MultiViews
    # This controls which options the .htaccess files in directories can
    # override. Can also be "All", or any combination of "Options", "FileInfo",
    # "AuthConfig", and "Limit"
    AllowOverride None
    # Controls who can get stuff from this server.
    Order allow,deny
    Allow from all
    </Directory>
    # UserDir: The name of the directory which is appended onto a user's home
    # directory if a ~user request is received.
    <IfModule mod_userdir.c>
    UserDir public_html
    </IfModule>
    # Control access to UserDir directories. The following is an example
    # for a site where these directories are restricted to read-only.
    #<Directory /home/*/public_html>
    # AllowOverride FileInfo AuthConfig Limit
    # Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
    # <Limit GET POST OPTIONS PROPFIND>
    # Order allow,deny
    # Allow from all
    # </Limit>
    # <LimitExcept GET POST OPTIONS PROPFIND>
    # Order deny,allow
    # Deny from all
    # </LimitExcept>
    #</Directory>
    # DirectoryIndex: Name of the file or files to use as a pre-written HTML
    # directory index. Separate multiple entries with spaces.
    <IfModule mod_dir.c>
    DirectoryIndex index.html index.jsp
    </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. Since .htaccess files often contain authorization
    # information, access is disallowed for security reasons. Comment
    # these lines out if you want Web visitors to see the contents of
    # .htaccess files. If you change the AccessFileName directive above,
    # be sure to make the corresponding changes here.
    # Also, folks tend to use names such as .htpasswd for password
    # files, so this will protect those as well.
    <Files ~ "^\.ht">
    Order allow,deny
    Deny from all
    </Files>
    # CacheNegotiatedDocs: By default, Apache sends "Pragma: no-cache" with each
    # document that was negotiated on the basis of content. This asks proxy
    # servers not to cache the document. Uncommenting the following line disables
    # this behavior, and proxies will be allowed to cache the documents.
    #CacheNegotiatedDocs
    # UseCanonicalName: (new for 1.3) With this setting turned on, whenever
    # Apache needs to construct a self-referencing URL (a URL that refers back
    # to the server the response is coming from) it will use ServerName and
    # Port to form a "canonical" name. With this setting off, Apache will
    # use the hostname:port that the client supplied, when possible. This
    # also affects SERVER_NAME and SERVER_PORT in CGI scripts.
    UseCanonicalName off
    # Add 2003/1/3 test for dynamic virtyal host
    # VirtualDocumentRoot /devl/ics3/moff/webroot/oc4j/ct/web/store/%1
    # TypesConfig describes where the mime.types file (or equivalent) is
    # to be found.
    <IfModule mod_mime.c>
    TypesConfig /devl/ics3/moff/apache/mime.types
    </IfModule>
    # 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
    # The mod_mime_magic 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.
    # mod_mime_magic is not part of the default server (you have to add
    # it yourself with a LoadModule [see the DSO paragraph in the 'Global
    # Environment' section], or recompile the server and include mod_mime_magic
    # as part of the configuration), so it's enclosed in an <IfModule> container.
    # This means that the MIMEMagicFile directive will only be processed if the
    # module is part of the server.
    <IfModule mod_mime_magic.c>
    MIMEMagicFile /devl/ics3/devl/apache/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
    # 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 /devl/ics3/devl/apache/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
    # 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
    # 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 /devl/ics3/devl/apache/logs/access_log common
    # If you would like to have agent and referer logfiles, uncomment the
    # following directives.
    #CustomLog /devl/ics3/devl/apache/logs/referer_log referer
    #CustomLog /devl/ics3/devl/apache/logs/agent_log agent
    # If you prefer a single logfile with access, agent, and referer information
    # (Combined Logfile Format) you can use the following directive.
    #CustomLog /devl/ics3/devl/apache/logs/access_log combined
    # 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
    # Aliases: Add here as many aliases as you need (with no limit). The format is
    # Alias fakename realname
    <IfModule mod_alias.c>
    # Note that if you include a trailing / on fakename then the server will
    # require it to be present in the URL. So "/icons" isn't aliased in this
    # example, only "/icons/"..
    Alias /icons/ "/oraapp/9iAS10220/home/Apache/Apache/icons/"
    <Directory "/oraapp/9iAS10220/home/Apache/Apache/icons">
    Options Indexes MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
    </Directory>
    Alias /jservdocs/ "/oraapp/9iAS10220/home/Apache/Jserv/docs/"
    Alias /soapdocs/ "/oraapp/9iAS10220/home/soap/"
    Alias /perl/ "/oraapp/9iAS10220/home/Apache/Apache/cgi-bin/"
    Alias /images/ "/devl/ics3/devl/webroot/apache/images/"
    Alias /Fc/ "/devl/ics3/devl/webroot/apache/Fc/"
    Alias /html/ "/devl/ics3/devl/webroot/apache/html/"
    Alias /gftlist/ "/devl/ics3/devl/webroot/apache/gftlist/"
    Alias /articles/ "/devl/ics3/devl/webroot/apache/articles/"
    Alias /js/ "/devl/ics3/devl/webroot/apache/js/"
    Alias /css/ "/devl/ics3/devl/webroot/apache/css/"
    Alias /coremetrics/ "/devl/ics3/devl/webroot/apache/coremetrics/"
    # ScriptAlias: This controls which directories contain server scripts.
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the realname 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/ "/devl/ics3/devl/webroot/apache/cgi-bin/"
    ScriptAlias /cyber/ "/usr/cybercash/webroot/collectiblestodaytestsight-16/mck-cgi/"
    # "/oraapp/9iAS10220/home/Apache/Apache/cgi-bin" should be changed to whatever your ScriptAliased
    # CGI directory exists, if you have that configured.
    <Directory "/devl/ics3/devl/webroot/apache/cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
    </Directory>
    <Directory "/usr/cybercash/webroot/collectiblestodaytestsight-16/mck-cgi">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
    </Directory>
    </IfModule>
    # End of aliases.
    # Redirect allows you to tell clients about documents which used to exist in
    # your server's namespace, but do not anymore. This allows you to tell the
    # clients where to look for the relocated document.
    # Format: Redirect old-URI new-URL
    # Directives controlling the display of server-generated directory listings.
    <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
    # 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>
    # End of indexing directives.
    # Document types.
    <IfModule mod_mime.c>
    # AddEncoding allows you to have certain browsers (Mosaic/X 2.1+) uncompress
    # information on the fly. Note: Not all browsers support this.
    # Despite the name similarity, the following Add* directives have nothing
    # to do with the FancyIndexing customization directives above.
    AddEncoding x-compress Z
    AddEncoding x-gzip gz tgz
    # 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
    # it can understand.
    # 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 quite
    # some cases the two character 'Language' abbriviation 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. But there is 'work in progress' to fix this and get
    # the reference data for rfc1766 cleaned up.
    # Danish (da) - Dutch (nl) - English (en) - Estonian (ee)
    # French (fr) - German (de) - Greek-Modern (el)
    # Italian (it) - Korean (kr) - Norwegian (no)
    # Portugese (pt) - Luxembourgeois* (ltz)
    # Spanish (es) - Swedish (sv) - Catalan (ca) - Czech(cz)
    # Polish (pl) - Brazilian Portuguese (pt-br) - Japanese (ja)
    # Russian (ru)
    AddLanguage da .da
    AddLanguage nl .nl
    AddLanguage en .en
    AddLanguage et .ee
    AddLanguage fr .fr
    AddLanguage de .de
    AddLanguage el .el
    AddLanguage he .he
    AddCharset ISO-8859-8 .iso8859-8
    AddLanguage it .it
    AddLanguage ja .ja
    AddCharset ISO-2022-JP .jis
    AddLanguage kr .kr
    AddCharset ISO-2022-KR .iso-kr
    AddLanguage no .no
    AddLanguage pl .po
    AddCharset ISO-8859-2 .iso-pl
    AddLanguage pt .pt
    AddLanguage pt-br .pt-br
    AddLanguage ltz .lu
    AddLanguage ca .ca
    AddLanguage es .es
    AddLanguage sv .se
    AddLanguage cz .cz
    AddLanguage ru .ru
    AddLanguage tw .tw
    AddCharset Big5 .Big5 .big5
    AddCharset WINDOWS-1251 .cp-1251
    AddCharset CP866 .cp866
    AddCharset ISO-8859-5 .iso-ru
    AddCharset KOI8-R .koi8-r
    AddCharset UCS-2 .ucs2
    AddCharset UCS-4 .ucs4
    AddCharset UTF-8 .utf8
    # 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.
    <IfModule mod_negotiation.c>
    LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru ltz ca es sv tw
    </IfModule>
    # AddType allows you to tweak mime.types without actually editing it, or to
    # make certain files to be certain types.
    # For example, the PHP 3.x module (not part of the Apache distribution - see
    # http://www.php.net) will typically use:
    #AddType application/x-httpd-php3 .php3
    #AddType application/x-httpd-php3-source .phps
    # And for PHP 4.x, use:
    #AddType application/x-httpd-php .php
    #AddType application/x-httpd-php-source .phps
    AddType application/x-tar .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 command (see below)
    # If you want to use server side includes, or CGI outside
    # ScriptAliased directories, uncomment the following lines.
    # To use CGI scripts:
    #AddHandler cgi-script .cgi
    # To use server-parsed HTML files
    #AddType text/html .shtml
    #AddHandler server-parsed .shtml
    # Uncomment the following line to enable Apache's send-asis HTTP file
    # feature
    #AddHandler send-as-is asis
    # If you wish to use server-parsed imagemap files, use
    #AddHandler imap-file map
    # To enable type maps, you might want to use
    #AddHandler type-map var
    </IfModule>
    # End of document types.
    # Action lets you define media types that will execute a script whenever
    # a matching file is called. This eliminates the need for repeated URL
    # pathnames for oft-used CGI file processors.
    # Format: Action media/type /cgi-script/location
    # Format: Action handler-name /cgi-script/location
    # 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 response (Apache style)
    # these come in three flavors
    # 1) plain text
    #ErrorDocument 500 "The server made a boo boo.
    # n.b. the single leading (") marks it as text, it does not get output
    # 2) local redirects
    ErrorDocument 404 /404error.htm
    ErrorDocument 500 /500error.htm
    # to redirect to local URL /missing.html
    #ErrorDocument 404 /cgi-bin/missing_handler.pl
    # N.B.: You can redirect to a script or a document using server-side-includes.
    # 3) external redirects
    #ErrorDocument 402 http://some.other_server.com/subscription_info.html
    # N.B.: Many of the environment variables associated with the original
    # request will not be available to such a script.
    # Customize behaviour based on the browser
    <IfModule mod_setenvif.c>
    # The following directives modify normal HTTP response behavior.
    # The first directive disables keepalive for Netscape 2.x and browsers that
    # spoof it. There are known problems with these browser implementations.
    # The second directive is for Microsoft Internet Explorer 4.0b2
    # which has a broken HTTP/1.1 implementation and does not properly
    # support keepalive when it is used on 301 or 302 (redirect) responses.
    BrowserMatch "Mozilla/2" nokeepalive
    BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
    # The following directive disables HTTP/1.1 responses to browsers which
    # are in violation of the HTTP/1.0 spec by not being able to grok a
    # basic 1.1 response.
    BrowserMatch "RealPlayer 4\.0" force-response-1.0
    BrowserMatch "Java/1\.0" force-response-1.0
    BrowserMatch "JDK/1\.0" force-response-1.0
    </IfModule>
    # End of browser customization directives
    # Allow server status reports, with the URL of http://servername/server-status
    # Change the ".your_domain.com" to match your domain to enable.
    <Location /server-status>
    SetHandler server-status
    Order deny,allow
    Deny from all
    Allow from localhost web1-v3
    </Location>
    # Allow remote server configuration reports, with the URL of
    # http://servername/server-info (requires that mod_info.c be loaded).
    # Change the ".your_domain.com" to match your domain to enable.
    #<Location /server-info>
    # SetHandler server-info
    # Order deny,allow
    # Deny from all
    # Allow from localhost web1-v3
    #</Location>
    # There have been reports of people trying to abuse an old bug from pre-1.1
    # days. This bug involved a CGI script distributed as a part of Apache.
    # By uncommenting these lines you can redirect these attacks to a logging
    # script on phf.apache.org. Or, you can record them yourself, using the script
    # support/phf_abuse_log.cgi.
    #<Location /cgi-bin/phf*>
    # Deny from all
    # ErrorDocument 403 http://phf.apache.org/phf_abuse_log.cgi
    #</Location>
    # Proxy Server directives. Uncomment the following lines to
    # enable the proxy server:
    #<IfModule mod_proxy.c>
    # ProxyRequests On
    # <Directory proxy:*>
    # Order deny,allow
    # Deny from all
    # Allow from .your_domain.com
    # </Directory>
    # Enable/disable the handling of HTTP/1.1 "Via:" headers.
    # ("Full" adds the server version; "Block" removes all outgoing Via: headers)
    # Set to one of: Off | On | Full | Block
    # ProxyVia On
    # To enable the cache as well, edit and uncomment the following lines:
    # (no cacheing without CacheRoot)
    # CacheRoot "/oraapp/9iAS10220/home/Apache/Apache/proxy"
    # CacheSize 5
    # CacheGcInterval 4
    # CacheMaxExpire 24
    # CacheLastModifiedFactor 0.1
    # CacheDefaultExpire 1
    # NoCache a_domain.com another_domain.edu joes.garage_sale.com
    #</IfModule>
    # End of proxy directives.
    ### Section 3: Virtual Hosts
    # VirtualHost: If you want to maintain multiple domains/hostnames on your
    # machine you can setup VirtualHost containers for them. Most configurations
    # use only name-based virtual hosts so the server doesn't need to worry about
    # IP addresses. This is indicated by the asterisks in the directives below.
    # Please see the documentation at <URL:http://www.apache.org/docs/vhosts/>
    # for further details before you try to setup virtual hosts.
    # You may use the command line option '-S' to verify your virtual host
    # configuration.
    # If you want to use name-based virtual hosts you need to define at
    # least one IP address (and port number) for them.
    # Use name-based virtual hosting.
    #NameVirtualHost 12.34.56.78:80
    #NameVirtualHost 12.34.56.78
    #NameVirtualHost *
    # VirtualHost example:
    # Almost any Apache directive may go into a VirtualHost container.
    # The first VirtualHost section is used for requests without a known
    # server name.
    #<VirtualHost *>
    # ServerAdmin [email protected]_domain.com
    # DocumentRoot /www/docs/host.some_domain.com
    # ServerName host.some_domain.com
    # ErrorLog logs/host.some_domain.com-error_log
    # CustomLog logs/host.some_domain.com-access_log common
    #</VirtualHost>
    #<VirtualHost default:*>
    #</VirtualHost>
    ## SSL Global Context
    ## All SSL configuration in this context applies both to
    ## the main server and all SSL-enabled virtual hosts.
    # Some MIME-types for downloading Certificates and CRLs
    <IfDefine SSL>
    AddType application/x-x509-ca-cert .crt
    AddType application/x-pkcs7-crl .crl
    </IfDefine>
    <IfModule mod_ssl.c>
    # Pass Phrase Dialog:
    # Configure the pass phrase gathering process.
    # The filtering dialog program (`builtin' is a internal
    # terminal dialog) has to provide the pass phrase on stdout.
    SSLPassPhraseDialog builtin
    # Inter-Process Session Cache:
    # Configure the SSL Session Cache: First either `none'
    # or `dbm:/path/to/file' for the mechanism to use and
    # second the expiring timeout (in seconds).
    #SSLSessionCache none
    #SSLSessionCache shm:/devl/ics3/devl/apache/logs/ssl_scache(512000)
    SSLSessionCache dbm:/devl/ics3/devl/apache/logs/ssl_scache
    SSLSessionCacheTimeout 300
    # Semaphore:
    # Configure the path to the mutual explusion semaphore the
    # SSL engine uses internally for inter-process synchronization.
    SSLMutex file:/devl/ics3/devl/apache/logs/ssl_mutex
    # Pseudo Random Number Generator (PRNG):
    # Configure one or more sources to seed the PRNG of the
    # SSL library. The seed data should be of good random quality.
    # WARNING! On some platforms /dev/random blocks if not enough entropy
    # is available. This means you then cannot use the /dev/random device
    # because it would lead to very long connection times (as long as
    # it requires to make more entropy available). But usually those
    # platforms additionally provide a /dev/urandom device which doesn't
    # block. So, if available, use this one instead. Read the mod_ssl User
    # Manual for more details.
    SSLRandomSeed startup builtin
    SSLRandomSeed connect builtin
    #SSLRandomSeed startup file:/dev/random 512
    #SSLRandomSeed startup file:/dev/urandom 512
    #SSLRandomSeed connect file:/dev/random 512
    #SSLRandomSeed connect file:/dev/urandom 512
    # Logging:
    # The home of the dedicated SSL protocol logfile. Errors are
    # additionally duplicated in the general error log file. Put
    # this somewhere where it cannot be used for symlink attacks on
    # a real server (i.e. somewhere where only root can write).
    # Log levels are (ascending order: higher ones include lower ones):
    # none, error, warn, info, trace, debug.
    SSLLog /devl/ics3/devl/apache/logs/ssl_engine_log
    SSLLogLevel warn
    </IfModule>
    <IfDefine SSL>
    ## SSL Virtual Host Context
    <VirtualHost default:443>
    # General setup for the virtual host
    DocumentRoot "/devl/ics3/devl/webroot/apache"
    ServerName 172.18.4.13
    ServerAdmin [email protected]
    ErrorLog /devl/ics3/devl/apache/logs/error_log
    TransferLog /devl/ics3/devl/apache/logs/access_log
    # SSL Engine Switch:
    # Enable/Disable SSL for this virtual host.
    SSLEngine on
    # SSL Cipher Suite:
    # List the ciphers that the client is permitted to negotiate.
    # See the mod_ssl documentation for a complete list.
    #SSLCipherSuite ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
    # Server Certificate:
    # Point SSLCertificateFile at a PEM encoded certificate. If
    # the certificate is encrypted, then you will be prompted for a
    # pass phrase. Note that a kill -HUP will prompt again. A test
    # certificate can be generated with `make certificate' under
    # built time. Keep in mind that if you've both a RSA and a DSA
    # certificate you can configure both in parallel (to also allow
    # the use of DSA ciphers, etc.)
    SSLCertificateFile /devl/ics3/devl/apache/ssl.crt/server.crt
    #SSLCertificateFile /devl/ics3/devl/apache/ssl.crt/server-dsa.crt
    # Server Private Key:
    # If the key is not combined with the certificate, use this
    # directive to point at the key file. Keep in mind that if
    # you've both a RSA and a DSA private key you can configure
    # both in parallel (to also allow the use of DSA ciphers, etc.)
    SSLCertificateKeyFile /devl/ics3/devl/apache/ssl.key/server.key
    #SSLCertificateKeyFile /devl/ics3/devl/apache/ssl.key/server-dsa.key
    # Server Certificate Chain:
    # Point SSLCertificateChainFile at a file containing the
    # concatenation of PEM encoded CA certificates which form the
    # certificate chain for the server certificate. Alternatively
    # the referenced file can be the same as SSLCertificateFile
    # when the CA certificates are directly appended to the server
    # certificate for convinience.
    #SSLCertificateChainFile /devl/ics3/devl/apache/ssl.crt/ca.crt
    # Certificate Authority (CA):
    # Set the CA certificate verification path where to find CA
    # certificates for client authentication or alternatively one
    # huge file containing all of them (file must be PEM encoded)
    # Note: Inside SSLCACertificatePath you need hash symlinks
    # to point to the certificate files. Use the provided
    # Makefile to update the hash symlinks after changes.
    #SSLCACertificatePath /devl/ics3/devl/apache/ssl.crt
    #SSLCACertificateFile /devl/ics3/devl/apache/ssl.crt/ca-bundle.crt
    # Certificate Revocation Lists (CRL):
    # Set the CA revocation path where to find CA CRLs for client
    # authentication or alternatively one huge file containing all
    # of them (file must be PEM encoded)
    # Note: Inside SSLCARevocationPath you need hash symlinks
    # to point to the certificate files. Use the provided
    # Makefile to update the hash symlinks after changes.
    #SSLCARevocationPath /devl/ics3/devl/apache/ssl.crl
    #SSLCARevocationFile /devl/ics3/devl/apache/ssl.crl/ca-bundle.crl
    # Client Authentication (Type):
    # Client certificate verification type and depth. Types are
    # none, optional, require and optional_no_ca. Depth is a
    # number which specifies how deeply to verify the certificate
    # issuer chain before deciding the certificate is not valid.
    #SSLVerifyClient require
    #SSLVerifyDepth 10
    # Access Control:
    # With SSLRequire you can do per-directory access control based
    # on arbitrary complex boolean expressions containing server
    # variable checks and other lookup directives. The syntax is a
    # mixture between C and Perl. See the mod_ssl documentation
    # for more details.
    #<Location />
    #SSLRequire ( %{SSL_CIPHER} !~ m/^(EXP|NULL)-/ \
    # and %{SSL_CLIENT_S_DN_O} eq "Snake Oil, Ltd." \
    # and %{SSL_CLIENT_S_DN_OU} in {"Staff", "CA", "Dev"} \
    # and %{TIME_WDAY} >= 1 and %{TIME_WDAY} <= 5 \
    # and %{TIME_HOUR} >= 8 and %{TIME_HOUR} <= 20 ) \
    # or %{REMOTE_ADDR} =~ m/^192\.76\.162\.[0-9]+$/
    #</Location>
    # SSL Engine Options:
    # Set various options for the SSL engine.
    # o FakeBasicAuth:
    # Translate the client X.509 into a Basic Authorisation. This means that
    # the standard Auth/DBMAuth methods can be used for access control. The
    # user name is the `one line' version of the client's X.509 certificate.
    # Note that no password is obtained from the user. Every entry in the user
    # file needs this password: `xxj31ZMTZzkVA'.
    # o ExportCertData:
    # This exports two additional environment variables: SSL_CLIENT_CERT and
    # SSL_SERVER_CERT. These contain the PEM-encoded certificates of the
    # server (always existing) and the client (only existing when client
    # authentication is used). This can be used to import the certificates
    # into CGI scripts.
    # o StdEnvVars:
    # This exports the standard SSL/TLS related `SSL_*' environment variables.
    # Per default this exportation is switched off for performance reasons,
    # because the extraction step is an expensive operation and is usually
    # useless for serving static content. So one usually enables the
    # exportation for CGI and SSI requests only.
    # o CompatEnvVars:
    # This exports obsolete environment variables for backward compatibility
    # to Apache-SSL 1.x, mod_ssl 2.0.x, Sioux 1.0 and Stronghold 2.x. Use this
    # to provide compatibility to existing CGI scripts.
    # o StrictRequire:
    # This denies access when "SSLRequireSSL" or "SSLRequire" applied even
    # under a "Satisfy any" situation, i.e. when it applies access is denied
    # and no other module can change it.
    # o OptRenegotiate:
    # This enables optimized SSL connection renegotiation handling when SSL
    # directives are used in per-directory context.
    #SSLOptions FakeBasicAuth ExportCertData CompatEnvVars StrictRequire
    <Files ~ "\.(cgi|shtml)$">
    SSLOptions +StdEnvVars
    </Files>
    #<Directory "/oraapp/9iAS10220/home/Apache/Apache/cgi-bin">
    <Directory "/devl/ics3/devl/webroot/apache/cgi-bin">
    SSLOptions +StdEnvVars
    </Directory>
    # SSL Protocol Adjustments:
    # The safe and default but still SSL/TLS standard compliant shutdown
    # approach is that mod_ssl sends the close notify alert but doesn't wait for
    # the close notify alert from client. When you need a different shutdown
    # approach you can use one of the following variables:
    # o ssl-unclean-shutdown:
    # This forces an unclean shutdown when the connection is closed, i.e. no
    # SSL close notify alert is send or allowed to received. This violates
    # the SSL/TLS standard but is needed for some brain-dead browsers. Use
    # this when you receive I/O errors because of the standard approach where
    # mod_ssl sends the close notify alert.
    # o ssl-accurate-shutdown:
    # This forces an accurate shutdown when the connection is closed, i.e. a
    # SSL close notify alert is send and mod_ssl waits for the close notify
    # alert of the client. This is 100% SSL/TLS standard compliant, but in
    # practice often causes hanging connections with brain-dead browsers. Use
    # this only for browsers where you know that their SSL implementation
    # works correctly.
    # Notice: Most problems of broken clients are also related to the HTTP
    # keep-alive facility, so you usually additionally want to disable
    # keep-alive for those clients, too. Use variable "nokeepalive" for this.
    SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
    # Per-Server Logging:
    # The home of a custom SSL log file. Use this when you want a
    # compact non-error SSL logfile on a virtual host basis.
    CustomLog /devl/ics3/devl/apache/logs/ssl_request_log \
    "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
    </VirtualHost>
    </IfDefine>
    <IfModule mod_dms.c>
    <Location /dms0>
    SetHandler dms-handler
    </Location>
    </IfModule>
    # Perl Directives
    #PerlWarn On
    #PerlFreshRestart On
    #PerlSetEnv PERL5OPT Tw
    #PerlSetEnv PERL5LIB "/oraapp/9iAS10220/home/Apache/perl/lib/5.00503:/oraapp/9iAS10220/home/Apache/perl/lib/site_perl/5.005"
    SetEnv PERL5LIB "/oraapp/9iAS10220/home/Apache/perl/lib/5.00503:/oraapp/9iAS10220/home/Apache/perl/lib/site_perl/5.005"
    PerlModule Apache
    #PerlModule Apache::Status
    PerlModule Apache::Registry
    #PerlModule Apache::CGI
    #PerlModule Apache::DBI
    #PerlRequire
    <Location /perl>
    SetHandler perl-script
    PerlHandler Apache::Registry
    AddHandler perl-script .pl
    Options +ExecCGI
    PerlSendHeader On
    </Location>
    #<Location /perl-status>
    # SetHandler perl-script
    # PerlHandler Apache::Status
    # order deny,allow
    # deny from all
    # allow from .your_domain.com
    #</Location>
    # Setup of oprocmgr module.
    # This directive identifies each remote apache instance that will be
    # sending requests to processes (e.g., JServs), managed by local Apache
    # instances. This directive is used by the local process manager to share
    # routing information with remote apache instances via non-SSL HTTP messages.
    # The directive is repeated for each remote apache instance that will be
    # sending requests. The ProcNode directive that refers to the local apache
    # instance will be ignored, but may be supplied to facilitate uniformity
    # in configuration across apache instances. Arguments to the ProcNode must
    # be sufficient to reach the remote instance of apache via non-SSL HTTP
    # messages. It is not considered an error if the remote apache instance is
    # unreachable, as no assumption is made about the starting order or
    # availability of apache instances.
    # Syntax: ProcNode <hostname> <port>
    # Example: ProcNode abc.com 7777
    <IfModule mod_oprocmgr.c>
    ProcNode web1-v3 7777
    <IfDefine SSL>
    ProcNode web1-v3 80
    </IfDefine>
    <Location /oprocmgr-service>
    SetHandler oprocmgr-service
    </Location>
    <Location /oprocmgr-status>
    SetHandler oprocmgr-status
    </Location>
    </IfModule>
    # Setup of FastCGI module
    <IfModule mod_fastcgi.c>
    Alias /fastcgi/ "/devl/ics3/devl/webroot/apache/fastcgi/"
    ScriptAlias /fcgi-bin/ "/devl/ics3/devl/webroot/apache/fcgi-bin/"
    <Directory "/devl/ics3/devl/webroot/apache/fcgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
    SetHandler fastcgi-script
         <IfDefine SSL>
    SSLOptions +StdEnvVars
         </IfDefine>
    </Directory>
    </IfModule>
    <IfModule mod_proxy.c>
    proxyRequests off
    proxyPass /cust http://172.18.4.13:7778/cust
    proxyPassReverse /cust http://172.18.4.13:7778/cust
    proxyPass /ct http://172.18.4.13:7778/ct
    proxyPassReverse /ct http://172.18.4.13:7778/ct
    </IfModule>
    #<IfModule mod_proxy.c>
    # proxyRequests on
    # proxyPass /ct http://172.18.4.13:7778/ct
    # proxyPassReverse /ct http://172.18.4.13:7778/ct
    #</IfModule>
    # Include the configuration files needed for jserv
    include "/oraapp/9iAS10220/home/Apache/Jserv/etc/jserv.conf"
    ApJServMount / /ct
    AddType text/jsp .jsp
    AddHandler jserv-servlet .jsp
    # Include the Oracle configuration file for custom settings
    #include "/devl/ics3/devl/apache/oracle_apache.conf"
    <VirtualHost 172.18.4.13:80>
    ServerName ics3dv1ws1.hq.bradgroup
    DocumentRoot /devl/ics3/devl/webroot/apache
    ServerAlias www.ics3dv1ws1.hq.bradgroup
    </VirtualHost>
    # <VirtualHost     172.18.4.13:80>
    ServerName %1.collectiblestoday.com
    VirtualDocumentRoot /devl/ics3/devl/webroot/oc4j/ct/web
    # </VirtualHost>

    Weird ... that works.
    So, I created the dummy account which was also failing as follows:
    create user newuser identified by oracle;
    grant developer_role to newuser;This fails, but only from a Form running under OC4J, until I run:
    ALTER SYSTEM SET sec_case_sensitive_logon = FALSE scope = MEMORY;While I've made this change in our development database, I don't really want to do the same eventually in PROD. I'd rather figure out what's changed about how OC4J connects, find a rememdy there, and set this back to TRUE.
    Since I didn't create the username or password as a string literal (to ensure lowercasing), I'm confused as to what's happening. When the init parm is set to TRUE, when the dialog box pops up for the form after the invalid username/password error, I tried entering the password in all lowercase, and then in all uppercase, to no effect. Both fail.
    --=Chuck

  • After upgrade to 10.6 Apache is running but port 80 is not open

    Hello,
    I just upgraded from 10.5 to 10.6. The server is a simple set up that is only used for web hosting. Everything appears to work fine except the browser can't connect. Server Admin and Activity Monitor shows Apache running. Port scan from another machine does not show 80 or 8080 as open ports. However it does show ftp 21, ssh 22 and others open. I double-checked firewall settings and even turn of the firewall software and it still does not work. The 10.5 setup was a clean install and manual migration from 10.4 so I don't that has anything to do with it. I'm not sure what to try next.
    Below is the Setup.log created during the upgrade process:
    10:34:56.152 local KDC set up
    10:34:56.292 Beginning setup migration extras
    10:34:57.828 Starting migration extras with arguments:
    --sourceRoot /Previous System --targetRoot / --purge 1 --language en --sourceVersion 10.5.8 --sourceType System
    10:34:58.656 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/1_SystemKeychainReady.sh
    RESULT CODE: 0
    STDOUT: certs = emptydictionary
    accounts:error = <62706c69 73743030 d4010203 04050626 27582476 65727369 6f6e5824 6f626a65 63747359 24617263 68697665 72542474 6f701200 0186a0a8 07081112 1a1b1c22 55246e75 6c6cd409 0a0b0c0d 0e0f1058 4e53446f 6d61696e 5a4e5355 73657249 6e666f56 4e53436f 64655624 636c6173 73800280 031103e8 80075f10 1c636f6d 2e617070 6c652e73 65727665 726d6772 5f616363 6f756e74 73d30c13 14151618 574e532e 6b657973 5a4e532e 6f626a65 63747380 06a11780 04a11980 055f1016 4e534c6f 63616c69 7a656444 65736372 69707469 6f6e5f10 164e6f20 4c444150 206d6173 74657220 70726573 656e74d2 1d1e1f20 5a24636c 6173736e 616d6558 24636c61 73736573 5c4e5344 69637469 6f6e6172 79a21f21 584e534f 626a6563 74d21d1e 2324574e 53457272 6f72a225 21574e53 4572726f 725f100f 4e534b65 79656441 72636869 766572d1 28295472 6f6f7480 01000800 11001a00 23002d00 32003700 40004600 4f005800 63006a00 71007300 75007800 7a009900 a000a800 b300b500 b700b900 bb00bd00 d600ef00 f400ff01 08011501 18012101 26012e01 31013901 4b014e01 53000000 00000002 01000000 00000000 2a000000 00000000 00000000 00000001 55>
    accounts:errorDescription = "No LDAP master present"
    accounts:errorCode = 1000
    STDERR: 2009-10-15 10:34:58.407 serveradmin[607:903] -[CertsRequestHandler(KeychainOpenSSLExport) existingPassphraseInKeychainForSha1DigestString:]: SecKeychainFindGenericPassword(5151426A4CB1E7F5E1D9817914F586474E2A0241) status: -25300
    2009-10-15 10:34:58.547 serveradmin[607:903] --Module NSBundle </usr/share/servermgrd/bundles/servermgr_certs.bundle> (loaded)'s response has retain count of 3.
    2009-10-15 10:34:58.620 serveradmin[609:903] -[AccountsRequestHandler(AccountsOpenDirectoryHelpers) openLocalLDAPNodeIfNeeded]: dsLocalLDAP = (null), error = Error Domain=com.apple.OpenDirectory Code=2000 UserInfo=0x10050cc80 "Unable to open Directory node with name /LDAPv3/127.0.0.1."
    2009-10-15 10:34:58.632 serveradmin[609:903] -[AccountsRequestHandler(AccountsOpenDirectoryHelpers) openLocalLDAPNodeIfNeeded]: dsLocalLDAP = (null), error = Error Domain=com.apple.OpenDirectory Code=2000 UserInfo=0x100217b70 "Unable to open Directory node with name /LDAPv3/127.0.0.1."
    10:34:58.945 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/10_dnsconfigmigrator.sh
    RESULT CODE: 0
    STDOUT: /System/Library/ServerSetup/MigrationExtras/10_dnsconfigmigrator.sh: Migrating DNS config files...
    /System/Library/ServerSetup/MigrationExtras/10_dnsconfigmigrator.sh: Ensuring DNS configuration files are the correct version...
    dns:configuration:acls:array_index:0:addressMatchList:_arrayindex:0 = "localnets"
    dns:configuration:acls:arrayindex:0:name = "com.apple.ServerAdmin.DNS.public"
    dns:configuration:views:arrayid:BD7790B8-2EEC-4FDD-A1D3-D8BAF698CA69:secondaryZones = emptyarray
    dns:configuration:views:arrayid:BD7790B8-2EEC-4FDD-A1D3-D8BAF698CA69:reverseZones = emptyarray
    dns:configuration:views:arrayid:BD7790B8-2EEC-4FDD-A1D3-D8BAF698CA69:primaryZones = emptyarray
    dns:configuration:views:arrayid:BD7790B8-2EEC-4FDD-A1D3-D8BAF698CA69:allow-recursion = ""com.apple.ServerAdmin.DNS.public";"
    dns:configuration:views:arrayid:BD7790B8-2EEC-4FDD-A1D3-D8BAF698CA69:name = "com.apple.ServerAdmin.DNS.public"
    dns:configuration:isBonjourClientBrowsingEnabled = no
    dns:configuration:loggingLevel = "info"
    dns:upgradeSuccess = yes
    dns:readStatus = 0
    dns:dnsConfigurationFileVersion = 2
    /System/Library/ServerSetup/MigrationExtras/10_dnsconfigmigrator.sh: Migrating the launchd plist state...
    /System/Library/ServerSetup/MigrationExtras/10_dnsconfigmigrator.sh: /Previous System/private/var/db/launchd.db/com.apple.launchd/overrides.plist not found
    /System/Library/ServerSetup/MigrationExtras/10_dnsconfigmigrator.sh: no launchd overrides file: /Previous System/private/var/db/launchd.db/com.apple.launchd/overrides.plist; checking state in launchd plist
    /System/Library/ServerSetup/MigrationExtras/10_dnsconfigmigrator.sh: named disabled in /Previous System/System/Library/LaunchDaemons/org.isc.named.plist; not starting
    STDERR:
    purge: 1
    sourceRoot: /Previous System
    sourceType: System
    sourceVersion: 10.5.8
    targetRoot: /
    language: en
    10:34:59.411 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/30-afctlmigrator.pl
    RESULT CODE: 0
    STDOUT: AFCTL_DISABLED = true AFCTL_ENABLED = disabled AFCTL_STATE =
    state = false
    STDERR: Print: Entry, ":Disabled", Does Not Exist
    mv: rename //private/var/db/af/whitelist to //private/var/db/af/whitelist.previous: No such file or directory
    mv: rename //private/var/db/af/blacklist to //private/var/db/af/blacklist.previous: No such file or directory
    mv: rename /Previous System/private/var/db/af/whitelist to //private/var/db/af/whitelist: No such file or directory
    mv: rename /Previous System/private/var/db/af/blacklist to //private/var/db/af/blacklist: No such file or directory
    purge: 1
    sourceRoot: /Previous System
    sourceType: System
    sourceVersion: 10.5.8
    targetRoot: /
    language: en
    10:34:59.727 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/30-dsmconfigmigrator.pl
    RESULT CODE: 0
    STDOUT:
    STDERR: Print: Entry, ":Disabled", Does Not Exist
    purge: 1
    sourceRoot: /Previous System
    sourceType:
    sourceVersion:
    targetRoot: /
    language:
    10:35:00.664 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/30-ftpconfigmigrator.pl
    RESULT CODE: 0
    STDOUT:
    STDERR: Print: Entry, ":Disabled", Does Not Exist
    purge: 1
    sourceRoot: /Previous System
    sourceType: System
    sourceVersion: 10.5.8
    targetRoot: /
    language: en
    10:35:01.463 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/30-ipfilterconfigmigrator.pl
    RESULT CODE: 0
    STDOUT:
    STDERR:
    purge: 1
    sourceRoot: /Previous System
    sourceType: System
    sourceVersion: 10.5.8
    targetRoot: /
    language: en
    10:35:01.778 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/30-natconfigmigrator.pl
    RESULT CODE: 0
    STDOUT:
    STDERR:
    purge: 1
    sourceRoot: /Previous System
    sourceType: System
    sourceVersion: 10.5.8
    targetRoot: /
    language: en
    10:35:02.456 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/30-snmpconfigmigrator.pl
    RESULT CODE: 0
    STDOUT:
    STDERR: launchctl: Error unloading: org.net-snmp.snmpd
    10:35:04.637 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/42_odconfigmigrator
    RESULT CODE: 0
    STDOUT: /usr/sbin/slapconfig -migrateldapserver 1 /Previous System / 10.5.8 System en
    STDERR: sso_util command failed with status 2
    purge: 1
    sourceRoot: /Previous System
    sourceType: System
    sourceVersion: 10.5.8
    targetRoot: /
    language: en
    Not an ldapmaster so there is no local node users to copy.
    10:35:04.829 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/45-restoreUsersFolder.pl
    RESULT CODE: 0
    STDOUT:
    STDERR:
    purge: 1
    sourceRoot: /Previous System
    sourceType: System
    sourceVersion: 10.5.8
    targetRoot: /
    language: en
    10:35:05.614 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/50-vpnconfigmigrator.pl
    RESULT CODE: 0
    STDOUT:
    STDERR: launchctl: Error unloading: com.apple.ppp.l2tp
    launchctl: Error unloading: com.apple.ppp.pptp
    10:35:05.695 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/51_afpconfigmigrator
    RESULT CODE: 0
    STDOUT:
    STDERR: No old afp settings record to update
    purge: 1
    sourceRoot: /Previous System
    sourceType: System
    sourceVersion: 10.5.8
    targetRoot: /
    language: en
    10:35:08.617 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/58_jabbermigrator.pl
    RESULT CODE: 0
    STDOUT: Warning, /usr/libexec/jabberconfigmigrator.pl returned error status: 256:
    STDERR: Print: Entry, ":org.jabber.jabberd:Disabled", Does Not Exist
    Print: Entry, ":org.jabber.jabberd:Disabled", Does Not Exist
    10:35:10.501 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/59_calendarmigrator.py
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:35:15.088 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/60_mysqlconfigmigrator
    RESULT CODE: 0
    STDOUT: mysql:upgradeStatus = 0
    STDERR:
    10:35:15.508 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/60_printconfigmigrator
    RESULT CODE: 0
    STDOUT: print:status = 0
    STDERR:
    10:35:16.672 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/60_swupdateconfigmigrator
    RESULT CODE: 0
    STDOUT: swupdate:upgradeStatus = 0
    STDERR:
    10:35:16.830 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/61migrate_cyrusdb
    RESULT CODE: 0
    STDOUT: Nothing to migrate
    STDERR: grep: /etc/imapd.conf: No such file or directory
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: * Web Service SnowLeopard migration start *
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: /System/Library/ServerSetup/MigrationExtras/61_webconfigmigrator.rb --purge 1 --sourceRoot /Previous System --targetRoot / --sourceType System --sourceVersion 10.5.8 --language en
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Processing: /etc/apache2/httpd.conf.saved-Pre-SnowLeopard-unmodified
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Checksum indicates customized Apache 2.2 Leopard main config file. Updating for SnowLeopard.
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Added userdir module directives, disabled
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Removed spotlight module
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Adjusted the set of LoadModule directives
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Changed user from www to _www
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Changed group from www to _www
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Removed spotlight-search handler
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Added dmgpart mime type
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Added mobileconfig mime type
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Added m3u8 mime type
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Added ts mime type
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Removed <IfModule> block for Spotlight
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: De-activated reference to WO Adaptor
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Processing: /etc/apache2/sites/0000any_80.conf.saved-Pre-SnowLeopard-unmodified
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: ...Creating: /etc/apache2/sites/0000any_80.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Checksum indicates customized Apache 2.2 Leopard vhost config file. Updating for SnowLeopard.
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Replaced SSL directives with more secure protocol and cipher suite
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Deleted Include for httpd_directory.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Deleted Include for httpd_directory.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Processing: /etc/apache2/sites/000169.7.39.129_80rolandsystemsgroup.com.conf.saved-Pre-SnowLeopard-unmodified
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: ...Creating: /etc/apache2/sites/000169.7.39.129_80rolandsystemsgroup.com.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Checksum indicates customized Apache 2.2 Leopard vhost config file. Updating for SnowLeopard.
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Appended port number to host in ServerName directive
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Replaced SSL directives with more secure protocol and cipher suite
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Deleted Include for httpd_directory.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Processing: /etc/apache2/sites/000269.7.39.129_443admin.rolandsystemsgroup.com.conf.saved-Pre-SnowLeopard-unmodified
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: ...Creating: /etc/apache2/sites/000269.7.39.129_443admin.rolandsystemsgroup.com.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Checksum indicates customized Apache 2.2 Leopard vhost config file. Updating for SnowLeopard.
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Appended port number to host in ServerName directive
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Replaced SSL directives with more secure protocol and cipher suite
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Deleted Include for httpd_directory.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Processing: /etc/apache2/sites/000369.7.39.129_80edirol.com.conf.saved-Pre-SnowLeopard-unmodified
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: ...Creating: /etc/apache2/sites/000369.7.39.129_80edirol.com.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Checksum indicates customized Apache 2.2 Leopard vhost config file. Updating for SnowLeopard.
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Appended port number to host in ServerName directive
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Replaced SSL directives with more secure protocol and cipher suite
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Deleted Include for httpd_directory.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Processing: /etc/apache2/sites/000469.7.39.129_80rssamerica.com.conf.saved-Pre-SnowLeopard-unmodified
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: ...Creating: /etc/apache2/sites/000469.7.39.129_80rssamerica.com.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Checksum indicates customized Apache 2.2 Leopard vhost config file. Updating for SnowLeopard.
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Appended port number to host in ServerName directive
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Replaced SSL directives with more secure protocol and cipher suite
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Deleted Include for httpd_directory.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Processing: /etc/apache2/sites/000569.7.39.129_80rolandsystemsgroup.ca.conf.saved-Pre-SnowLeopard-unmodified
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: ...Creating: /etc/apache2/sites/000569.7.39.129_80rolandsystemsgroup.ca.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Checksum indicates customized Apache 2.2 Leopard vhost config file. Updating for SnowLeopard.
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Appended port number to host in ServerName directive
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Replaced SSL directives with more secure protocol and cipher suite
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Deleted Include for httpd_directory.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Processing: /etc/apache2/sites/000669.7.39.129_80v-mixingsystem.com.conf.saved-Pre-SnowLeopard-unmodified
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: ...Creating: /etc/apache2/sites/000669.7.39.129_80v-mixingsystem.com.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Checksum indicates customized Apache 2.2 Leopard vhost config file. Updating for SnowLeopard.
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Appended port number to host in ServerName directive
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Replaced SSL directives with more secure protocol and cipher suite
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Deleted Include for httpd_directory.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Processing: /etc/apache2/sites/000769.7.39.129_80personalmixing.com.conf.saved-Pre-SnowLeopard-unmodified
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: ...Creating: /etc/apache2/sites/000769.7.39.129_80personalmixing.com.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Checksum indicates customized Apache 2.2 Leopard vhost config file. Updating for SnowLeopard.
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Appended port number to host in ServerName directive
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Replaced SSL directives with more secure protocol and cipher suite
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Deleted Include for httpd_directory.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Designating wild card vhost as collaboration site
    Thu Oct 15 10:35:21 2009: 61_webconfigmigrator.rb: Updated Apache configuration is valid
    Thu Oct 15 10:35:22 2009: 61_webconfigmigrator.rb: Migrated default wiki theme, set to com.apple.block.green.banner
    Thu Oct 15 10:35:22 2009: 61_webconfigmigrator.rb: Migrated max wiki attachment size, set to 52428800
    Thu Oct 15 10:35:22 2009: 61_webconfigmigrator.rb: The launchd plist for org.apache.tomcat has been unloaded based on pre-upgrade status
    Thu Oct 15 10:35:24 2009: 61_webconfigmigrator.rb: The launchd plist for org.apache.httpd has been loaded based on pre-upgrade status
    Thu Oct 15 10:35:24 2009: 61_webconfigmigrator.rb: The launchd plist for org.apache.htcacheclean has been unloaded based on pre-upgrade status
    Thu Oct 15 10:35:26 2009: 61_webconfigmigrator.rb: The launchd plist for com.apple.wikid has been loaded based on pre-upgrade status
    Thu Oct 15 10:35:26 2009: 61_webconfigmigrator.rb: * Web Service SnowLeopard migration end *
    10:35:26.388 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/61_webconfigmigrator.rb
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:35:26.774 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/62upgrade_cyrusopts
    RESULT CODE: 0
    STDOUT:
    STDERR:
    2009-10-15 10:35:26 -0700: 62_wikiCreatorMigrator: * Starting migration of wiki creators
    2009-10-15 10:35:26 -0700: 62_wikiCreatorMigrator: Migrating from sourceVersion = "10.5.8" sourceRoot="/Previous System" to targetRoot="/"
    2009-10-15 10:35:27 -0700: 62_wikiCreatorMigrator: Wiki Creators have not been migrated from the previous system. You must use Server Admin Web to add them. Specific problem:WhitePages framework cannot find vhost for GUID: 7580C977-5C04-458B-8FD1-752152324E84
    10:35:27.777 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/62_wikiCreatorMigrator
    RESULT CODE: 0
    STDOUT:
    STDERR: 2009-10-15 10:35:27.771 62_wikiCreatorMigrator[935:903] * -[WPSession createRecordWithType:attributes:inNode:resolveNamingConflict:error:]: * Warning: the record of type dsRecTypeStandard:Config was created successfully, but OpenDirectoryFramework cannot find it. More info: recordName 'ServicesInformation' in /Local/Default
    2009-10-15 10:35:27.772 62_wikiCreatorMigrator[935:903] * -[WPWebServices createServicesInformationRecordInLocalNodeWithSession:]: couldn't create the Computer record in /Local/Default. Reason: (null)
    10:35:27.907 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/63notificationmigrator.sh
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:35:43.528 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/64postfixmigrator
    RESULT CODE: 0
    STDOUT: Upgrading Postfix...
    STDERR:
    10:37:05.578 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/65mailmigrator.pl
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:37:05.741 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/66clamavmigrator
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:37:05.835 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/66spam_assassinmigrator
    RESULT CODE: 0
    STDOUT:
    STDERR: crontab: no crontab for root
    10:37:05.869 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/67_CreateABSACLIfNeeded.sh
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:37:06.142 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/70_smbconfigmigrator
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:37:07.307 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/80_radiusconfigmigrator.pl
    RESULT CODE: 0
    STDOUT: 80_radiusconfigmigrator.pl: Migrating RADIUS configuration...
    80_radiusconfigmigrator.pl: Migrating certificate parameters into eap.conf...
    80_radiusconfigmigrator.pl: extracting eap.conf dictionary from radius dictionary
    80_radiusconfigmigrator.pl: extracting certificate params from eap.conf dictionary
    80_radiusconfigmigrator.pl: No certificates in eap.conf, nothing to install
    80_radiusconfigmigrator.pl: Done migrating certificate parameters into eap.conf
    80_radiusconfigmigrator.pl: RADIUS migration complete
    STDERR:
    10:38:04.002 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/90_CertificateMigrator.sh
    RESULT CODE: 0
    STDOUT: certs = emptydictionary
    STDERR: 2009-10-15 10:38:03.746 serveradmin[2358:903] --Module NSBundle </usr/share/servermgrd/bundles/servermgr_certs.bundle> (loaded)'s response has retain count of 9.
    10:38:04.227 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/91_qtssmigrator
    RESULT CODE: 0
    STDOUT: /System/Library/ServerSetup/MigrationExtras/91_qtssmigrator: removing /Previous System/Library/QuickTimeStreaming
    STDERR:
    Thu Oct 15 10:38:04 2009: 93_pcastmigrator.rb: * Podcast Service Leopard->SnowLeopard migration start *
    Thu Oct 15 10:38:04 2009: 93_pcastmigrator.rb: Error: Unable to copy all files from the source system: unknown file type: /Previous System/Library/Preferences/com.apple.pcastserverd.plist
    Thu Oct 15 10:38:05 2009: 93_pcastmigrator.rb: pcastserverd has been unloaded based on pre-upgrade status
    10:38:05.027 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/93_pcastmigrator.rb
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:07.634 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/94-wiki-group-migrator.py
    RESULT CODE: 0
    STDOUT:
    STDERR: 2009-10-15 10:38:07.561 Python[3052:d0f] * -[NSAutoreleasePool release]: This pool has already been released, do not drain it (double release).
    10:38:08.667 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/95-wikicalendarmigrator.py
    RESULT CODE: 0
    STDOUT: Logging to /Library/Logs/ServerAssistant.log
    Starting
    Options: {'wiki': None, 'sourceWikiPath': 'Library/Collaboration/Groups', 'guid': None, 'verbose': 1, 'language': 'en', 'targetRoot': '/', 'sourceCalendarPath': 'Library/CalendarServer/Documents', 'sourceRoot': '/Previous System', 'purge': True, 'output': None, 'calendar': None, 'sourceVersion': '10.5.8', 'targetCalendarPath': 'Library/CalendarServer/Documents', 'sourceType': 'System'}
    Looking for wiki group plists in /Library/Collaboration/Groups
    Found group plists: []
    Chowning /Library/CalendarServer/Documents to 93:93
    Done
    STDERR:
    10:38:10.365 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/95migratedhcp.pl
    RESULT CODE: 0
    STDOUT: 95migratedhcp.pl: Migrating DHCP and NetBoot configuration...
    95migratedhcp.pl: migrating etc/bootpd.plist
    95migratedhcp.pl: migrating private/tftpboot
    95migratedhcp.pl: migrating System/Library/LaunchDaemons/bootps.plist
    95migratedhcp.pl: DHCP is disabled for all interfaces
    95migratedhcp.pl: netboot_enabled not found in bootpd.plist
    95migratedhcp.pl: DHCP and NetBoot are both disabled in //etc/bootpd.plist: not loading //System/Library/LaunchDaemons/bootps.plist
    95migratedhcp.pl: DHCP and NetBoot migration complete
    STDERR:
    10:38:11.125 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/99-wikipermissionsfixer.py
    RESULT CODE: 0
    STDOUT:
    STDERR:
    purge: 1
    sourceRoot: /Previous System
    sourceType: System
    sourceVersion: 10.5.8
    targetRoot: /
    language: en
    10:38:11.270 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/111-alfconfigmigrator.pl
    RESULT CODE: 0
    STDOUT:
    STDERR:
    purge: 1
    sourceRoot: /Previous System
    sourceType: System
    sourceVersion: 10.5.8
    targetRoot: /
    language: en
    Missing: /Previous System/private/etc/syslog.conf
    10:38:11.331 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/111-syslogconfigmigrator.pl
    RESULT CODE: 0
    STDOUT:
    STDERR:
    purge: 1
    sourceRoot: /Previous System
    sourceType: System
    sourceVersion: 10.5.8
    targetRoot: /
    language: en
    10:38:11.440 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/111-webobjects.pl
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:15.054 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/BlojsomMigration.py
    RESULT CODE: 0
    STDOUT:
    STDERR: /System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/zope /_init_.py:1: UserWarning: Module twisted was already imported from /usr/share/caldavd/lib/python/twisted/_init_.pyc, but /System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python is being added to sys.path
    _import__('pkg_resources').declare_namespace(__name_)
    10:38:15.241 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/AddAppServerUserToAppServerGroups.sh
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:15.492 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/carddav.sh
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:15.693 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/DisableBootP.sh
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:15.718 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/EnableDSProxy.sh
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:15.981 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/GenerateRNDCKey.sh
    RESULT CODE: 0
    STDOUT:
    STDERR: wrote key file "/private/etc/rndc.key"
    10:38:16.040 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/MarkServerFolderAsLocalizable.sh
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:16.559 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/SetAFPEncoding.rb
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:16.637 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/SetDefaultNFSThreadCount.sh
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:16.886 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/SetSMBCodePage.rb
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:17.060 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/setupsecurityproxymail.sh
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:17.346 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/SetupClamAV.sh
    RESULT CODE: 0
    STDOUT: Configuring Anti-Virus scanner...
    done.
    STDERR:
    10:38:17.372 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/SetUpFTPSharePoints.sh
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:17.672 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/SetupMailman.sh
    RESULT CODE: 0
    STDOUT: Configuring mailman for this host...
    done.
    Compiling mailman...
    Listing /usr/share/mailman/Mailman ...
    Listing /usr/share/mailman/Mailman/Archiver ...
    Listing /usr/share/mailman/Mailman/Bouncers ...
    Listing /usr/share/mailman/Mailman/Cgi ...
    Listing /usr/share/mailman/Mailman/Commands ...
    Compiling /usr/share/mailman/Mailman/Defaults.py ...
    Listing /usr/share/mailman/Mailman/Gui ...
    Listing /usr/share/mailman/Mailman/Handlers ...
    Listing /usr/share/mailman/Mailman/Logging ...
    Listing /usr/share/mailman/Mailman/MTA ...
    Listing /usr/share/mailman/Mailman/Queue ...
    Compiling /usr/share/mailman/Mailman/mm_cfg.py ...
    done.
    STDERR:
    10:38:17.750 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/SetUpNetBoot
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:17.964 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/websetup
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:22.136 touching AppleSetupDone

    Thanks for your help.
    I discovered that there was an issue with the virtual host config files. I am not sure why but the problem passed the Apache startup routine. I discovered the offending VH config file by turning them all off and reactivating them one at a time. The real head scratcher is why I couldn't scan or ping port 80 during the problem.

  • Cannot run PHP in apache server.

    I am havnig a hard time seting up PHP development enviornment. I have followed instructions from this page : Apache HTTP Server
    http://localhost works, but cannot display .php pages.
    I have installed  php and php-apache from the official repositories.
    Placed the LoadModule list after LoadModule dir_module modules/mod_dir.so:
    LoadModule php5_module modules/libphp5.so
    Placed this at the end of the Include list:
    Include conf/extra/php5_module.conf
    <?php phpinfo(); ?>
    bash: syntax error near unexpected token `('
    output of: /etc/httpd/conf/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.4/> for detailed information.
    # In particular, see
    # <URL:http://httpd.apache.org/docs/2.4/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/access_log"
    # with ServerRoot set to "/usr/local/apache2" will be interpreted by the
    # server as "/usr/local/apache2/logs/access_log", whereas "/logs/access_log"
    # will be interpreted as '/logs/access_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 specify a local disk on the
    # Mutex directive, if file-based mutexes are used. If you wish to share the
    # same ServerRoot for multiple httpd daemons, you will need to change at
    # least PidFile.
    ServerRoot "/etc/httpd"
    # Mutex: Allows you to set the mutex mechanism and mutex file directory
    # for individual mutexes, or change the global defaults
    # Uncomment and change the directory if mutexes are file-based and the default
    # mutex file directory is not on a local disk or is not appropriate for some
    # other reason.
    # Mutex default:/run/httpd
    # 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 127.0.0.1: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 authn_file_module modules/mod_authn_file.so
    #LoadModule authn_dbm_module modules/mod_authn_dbm.so
    #LoadModule authn_anon_module modules/mod_authn_anon.so
    #LoadModule authn_dbd_module modules/mod_authn_dbd.so
    #LoadModule authn_socache_module modules/mod_authn_socache.so
    LoadModule authn_core_module modules/mod_authn_core.so
    LoadModule authz_host_module modules/mod_authz_host.so
    LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
    LoadModule authz_user_module modules/mod_authz_user.so
    #LoadModule authz_dbm_module modules/mod_authz_dbm.so
    #LoadModule authz_owner_module modules/mod_authz_owner.so
    #LoadModule authz_dbd_module modules/mod_authz_dbd.so
    LoadModule authz_core_module modules/mod_authz_core.so
    #LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
    LoadModule access_compat_module modules/mod_access_compat.so
    LoadModule auth_basic_module modules/mod_auth_basic.so
    #LoadModule auth_form_module modules/mod_auth_form.so
    #LoadModule auth_digest_module modules/mod_auth_digest.so
    #LoadModule allowmethods_module modules/mod_allowmethods.so
    #LoadModule file_cache_module modules/mod_file_cache.so
    #LoadModule cache_module modules/mod_cache.so
    #LoadModule cache_disk_module modules/mod_cache_disk.so
    #LoadModule cache_socache_module modules/mod_cache_socache.so
    #LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
    #LoadModule socache_dbm_module modules/mod_socache_dbm.so
    #LoadModule socache_memcache_module modules/mod_socache_memcache.so
    #LoadModule watchdog_module modules/mod_watchdog.so
    #LoadModule macro_module modules/mod_macro.so
    #LoadModule dbd_module modules/mod_dbd.so
    #LoadModule dumpio_module modules/mod_dumpio.so
    #LoadModule echo_module modules/mod_echo.so
    #LoadModule buffer_module modules/mod_buffer.so
    #LoadModule data_module modules/mod_data.so
    #LoadModule ratelimit_module modules/mod_ratelimit.so
    LoadModule reqtimeout_module modules/mod_reqtimeout.so
    #LoadModule ext_filter_module modules/mod_ext_filter.so
    #LoadModule request_module modules/mod_request.so
    LoadModule include_module modules/mod_include.so
    LoadModule filter_module modules/mod_filter.so
    #LoadModule reflector_module modules/mod_reflector.so
    #LoadModule substitute_module modules/mod_substitute.so
    #LoadModule sed_module modules/mod_sed.so
    #LoadModule charset_lite_module modules/mod_charset_lite.so
    #LoadModule deflate_module modules/mod_deflate.so
    #LoadModule xml2enc_module modules/mod_xml2enc.so
    #LoadModule proxy_html_module modules/mod_proxy_html.so
    LoadModule mime_module modules/mod_mime.so
    #LoadModule ldap_module modules/mod_ldap.so
    LoadModule log_config_module modules/mod_log_config.so
    #LoadModule log_debug_module modules/mod_log_debug.so
    #LoadModule log_forensic_module modules/mod_log_forensic.so
    #LoadModule logio_module modules/mod_logio.so
    #LoadModule lua_module modules/mod_lua.so
    LoadModule env_module modules/mod_env.so
    #LoadModule mime_magic_module modules/mod_mime_magic.so
    #LoadModule cern_meta_module modules/mod_cern_meta.so
    #LoadModule expires_module modules/mod_expires.so
    LoadModule headers_module modules/mod_headers.so
    #LoadModule ident_module modules/mod_ident.so
    #LoadModule usertrack_module modules/mod_usertrack.so
    #LoadModule unique_id_module modules/mod_unique_id.so
    LoadModule setenvif_module modules/mod_setenvif.so
    LoadModule version_module modules/mod_version.so
    #LoadModule remoteip_module modules/mod_remoteip.so
    LoadModule proxy_module modules/mod_proxy.so
    LoadModule proxy_connect_module modules/mod_proxy_connect.so
    LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
    LoadModule proxy_http_module modules/mod_proxy_http.so
    LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so
    LoadModule proxy_scgi_module modules/mod_proxy_scgi.so
    #LoadModule proxy_fdpass_module modules/mod_proxy_fdpass.so
    LoadModule proxy_wstunnel_module modules/mod_proxy_wstunnel.so
    LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
    LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
    LoadModule proxy_express_module modules/mod_proxy_express.so
    #LoadModule session_module modules/mod_session.so
    #LoadModule session_cookie_module modules/mod_session_cookie.so
    #LoadModule session_crypto_module modules/mod_session_crypto.so
    #LoadModule session_dbd_module modules/mod_session_dbd.so
    LoadModule slotmem_shm_module modules/mod_slotmem_shm.so
    #LoadModule slotmem_plain_module modules/mod_slotmem_plain.so
    #LoadModule ssl_module modules/mod_ssl.so
    #LoadModule dialup_module modules/mod_dialup.so
    LoadModule lbmethod_byrequests_module modules/mod_lbmethod_byrequests.so
    LoadModule lbmethod_bytraffic_module modules/mod_lbmethod_bytraffic.so
    LoadModule lbmethod_bybusyness_module modules/mod_lbmethod_bybusyness.so
    LoadModule lbmethod_heartbeat_module modules/mod_lbmethod_heartbeat.so
    #LoadModule mpm_event_module modules/mod_mpm_event.so
    LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
    LoadModule unixd_module modules/mod_unixd.so
    #LoadModule heartbeat_module modules/mod_heartbeat.so
    #LoadModule heartmonitor_module modules/mod_heartmonitor.so
    #LoadModule dav_module modules/mod_dav.so
    LoadModule status_module modules/mod_status.so
    LoadModule autoindex_module modules/mod_autoindex.so
    #LoadModule asis_module modules/mod_asis.so
    #LoadModule info_module modules/mod_info.so
    #LoadModule suexec_module modules/mod_suexec.so
    #LoadModule cgid_module modules/mod_cgid.so
    #LoadModule cgi_module modules/mod_cgi.so
    #LoadModule dav_fs_module modules/mod_dav_fs.so
    #LoadModule dav_lock_module modules/mod_dav_lock.so
    #LoadModule vhost_alias_module modules/mod_vhost_alias.so
    LoadModule negotiation_module modules/mod_negotiation.so
    LoadModule dir_module modules/mod_dir.so
    #LoadModule imagemap_module modules/mod_imagemap.so
    #LoadModule actions_module modules/mod_actions.so
    #LoadModule speling_module modules/mod_speling.so
    LoadModule userdir_module modules/mod_userdir.so
    LoadModule alias_module modules/mod_alias.so
    #LoadModule rewrite_module modules/mod_rewrite.so
    #edit start Use for PHP 5.x:
    LoadModule php5_module modules/libphp5.so
    AddHandler php5-script php
    Include conf/extra/php5_module.conf
    # DirectoryIndex: sets the file that Apache will serve if a directory
    # is requested.
    <IfModule dir_module>
    DirectoryIndex index.html index.php
    </IfModule>
    #edit ends
    <IfModule unixd_module>
    # 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 http
    Group http
    </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
    # Deny access to the entirety of your server's filesystem. You must
    # explicitly permit access to web content directories in other
    # <Directory> blocks below.
    <Directory />
    AllowOverride none
    Require all denied
    </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.
    # 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 "/srv/http"
    <Directory "/srv/http">
    # 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.4/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:
    # AllowOverride FileInfo AuthConfig Limit
    AllowOverride None
    # Controls who can get stuff from this server.
    Require all granted
    </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.
    <Files ".ht*">
    Require all denied
    </Files>
    # 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 "/var/log/httpd/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 "/var/log/httpd/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/httpd/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.
    ScriptAlias /cgi-bin/ "/srv/http/cgi-bin/"
    </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 cgisock
    </IfModule>
    # "/srv/http/cgi-bin" should be changed to whatever your ScriptAliased
    # CGI directory exists, if you have that configured.
    <Directory "/srv/http/cgi-bin">
    AllowOverride None
    Options None
    Require all granted
    </Directory>
    <IfModule mime_module>
    # TypesConfig points to the file containing the list of mappings from
    # filename extension to MIME-type.
    TypesConfig conf/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
    AddType application/x-httpd-php .php
    AddType application/x-httpd-php-source .phps
    # 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
    # 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 mod_mime_magic 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 conf/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
    # MaxRanges: Maximum number of Ranges in a request before
    # returning the entire resource, or one of the special
    # values 'default', 'none' or 'unlimited'.
    # Default setting is to accept 200 Ranges.
    #MaxRanges unlimited
    # EnableMMAP and EnableSendfile: On systems that support it,
    # memory-mapping or the sendfile syscall may be 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.
    # Defaults: EnableMMAP On, EnableSendfile Off
    #EnableMMAP off
    #EnableSendfile on
    # Supplemental configuration
    # The configuration files in the conf/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 conf/extra/httpd-mpm.conf
    # Multi-language error messages
    Include conf/extra/httpd-multilang-errordoc.conf
    # Fancy directory listings
    Include conf/extra/httpd-autoindex.conf
    # Language settings
    Include conf/extra/httpd-languages.conf
    # User home directories
    Include conf/extra/httpd-userdir.conf
    # Real-time info on requests and configuration
    #Include conf/extra/httpd-info.conf
    # Virtual hosts
    #Include conf/extra/httpd-vhosts.conf
    # Local access to the Apache HTTP Server Manual
    #Include conf/extra/httpd-manual.conf
    # Distributed authoring and versioning (WebDAV)
    #Include conf/extra/httpd-dav.conf
    # Various default settings
    Include conf/extra/httpd-default.conf
    # Configure mod_proxy_html to understand HTML4/XHTML1
    <IfModule proxy_html_module>
    Include conf/extra/proxy-html.conf
    </IfModule>
    # Secure (SSL/TLS) connections
    #Include conf/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>
    # uncomment out the below to deal with user agents that deliberately
    # violate open standards by misusing DNT (DNT *must* be a specific
    # end-user choice)
    #<IfModule setenvif_module>
    #BrowserMatch "MSIE 10.0;" bad_DNT
    #</IfModule>
    #<IfModule headers_module>
    #RequestHeader unset DNT env=bad_DNT
    #</IfModule>

    I have removed the "AddHandiler" and yes test.php is in /srv/http.
    I got the original conf from the source. And this is what my /etc/httpd/conf/httpd.conf looks like (now)
    # 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.4/> for detailed information.
    # In particular, see
    # <URL:http://httpd.apache.org/docs/2.4/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/access_log"
    # with ServerRoot set to "/usr/local/apache2" will be interpreted by the
    # server as "/usr/local/apache2/logs/access_log", whereas "/logs/access_log"
    # will be interpreted as '/logs/access_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 specify a local disk on the
    # Mutex directive, if file-based mutexes are used. If you wish to share the
    # same ServerRoot for multiple httpd daemons, you will need to change at
    # least PidFile.
    ServerRoot "/etc/httpd"
    # Mutex: Allows you to set the mutex mechanism and mutex file directory
    # for individual mutexes, or change the global defaults
    # Uncomment and change the directory if mutexes are file-based and the default
    # mutex file directory is not on a local disk or is not appropriate for some
    # other reason.
    # Mutex default:/run/httpd
    # 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 authn_file_module modules/mod_authn_file.so
    #LoadModule authn_dbm_module modules/mod_authn_dbm.so
    #LoadModule authn_anon_module modules/mod_authn_anon.so
    #LoadModule authn_dbd_module modules/mod_authn_dbd.so
    #LoadModule authn_socache_module modules/mod_authn_socache.so
    LoadModule authn_core_module modules/mod_authn_core.so
    LoadModule authz_host_module modules/mod_authz_host.so
    LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
    LoadModule authz_user_module modules/mod_authz_user.so
    #LoadModule authz_dbm_module modules/mod_authz_dbm.so
    #LoadModule authz_owner_module modules/mod_authz_owner.so
    #LoadModule authz_dbd_module modules/mod_authz_dbd.so
    LoadModule authz_core_module modules/mod_authz_core.so
    #LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
    LoadModule access_compat_module modules/mod_access_compat.so
    LoadModule auth_basic_module modules/mod_auth_basic.so
    #LoadModule auth_form_module modules/mod_auth_form.so
    #LoadModule auth_digest_module modules/mod_auth_digest.so
    #LoadModule allowmethods_module modules/mod_allowmethods.so
    #LoadModule file_cache_module modules/mod_file_cache.so
    #LoadModule cache_module modules/mod_cache.so
    #LoadModule cache_disk_module modules/mod_cache_disk.so
    #LoadModule cache_socache_module modules/mod_cache_socache.so
    #LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
    #LoadModule socache_dbm_module modules/mod_socache_dbm.so
    #LoadModule socache_memcache_module modules/mod_socache_memcache.so
    #LoadModule watchdog_module modules/mod_watchdog.so
    #LoadModule macro_module modules/mod_macro.so
    #LoadModule dbd_module modules/mod_dbd.so
    #LoadModule dumpio_module modules/mod_dumpio.so
    #LoadModule echo_module modules/mod_echo.so
    #LoadModule buffer_module modules/mod_buffer.so
    #LoadModule data_module modules/mod_data.so
    #LoadModule ratelimit_module modules/mod_ratelimit.so
    LoadModule reqtimeout_module modules/mod_reqtimeout.so
    #LoadModule ext_filter_module modules/mod_ext_filter.so
    #LoadModule request_module modules/mod_request.so
    LoadModule include_module modules/mod_include.so
    LoadModule filter_module modules/mod_filter.so
    #LoadModule reflector_module modules/mod_reflector.so
    #LoadModule substitute_module modules/mod_substitute.so
    #LoadModule sed_module modules/mod_sed.so
    #LoadModule charset_lite_module modules/mod_charset_lite.so
    #LoadModule deflate_module modules/mod_deflate.so
    #LoadModule xml2enc_module modules/mod_xml2enc.so
    #LoadModule proxy_html_module modules/mod_proxy_html.so
    LoadModule mime_module modules/mod_mime.so
    #LoadModule ldap_module modules/mod_ldap.so
    LoadModule log_config_module modules/mod_log_config.so
    #LoadModule log_debug_module modules/mod_log_debug.so
    #LoadModule log_forensic_module modules/mod_log_forensic.so
    #LoadModule logio_module modules/mod_logio.so
    #LoadModule lua_module modules/mod_lua.so
    LoadModule env_module modules/mod_env.so
    #LoadModule mime_magic_module modules/mod_mime_magic.so
    #LoadModule cern_meta_module modules/mod_cern_meta.so
    #LoadModule expires_module modules/mod_expires.so
    LoadModule headers_module modules/mod_headers.so
    #LoadModule ident_module modules/mod_ident.so
    #LoadModule usertrack_module modules/mod_usertrack.so
    #LoadModule unique_id_module modules/mod_unique_id.so
    LoadModule setenvif_module modules/mod_setenvif.so
    LoadModule version_module modules/mod_version.so
    #LoadModule remoteip_module modules/mod_remoteip.so
    LoadModule proxy_module modules/mod_proxy.so
    LoadModule proxy_connect_module modules/mod_proxy_connect.so
    LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
    LoadModule proxy_http_module modules/mod_proxy_http.so
    LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so
    LoadModule proxy_scgi_module modules/mod_proxy_scgi.so
    #LoadModule proxy_fdpass_module modules/mod_proxy_fdpass.so
    LoadModule proxy_wstunnel_module modules/mod_proxy_wstunnel.so
    LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
    LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
    LoadModule proxy_express_module modules/mod_proxy_express.so
    #LoadModule session_module modules/mod_session.so
    #LoadModule session_cookie_module modules/mod_session_cookie.so
    #LoadModule session_crypto_module modules/mod_session_crypto.so
    #LoadModule session_dbd_module modules/mod_session_dbd.so
    LoadModule slotmem_shm_module modules/mod_slotmem_shm.so
    #LoadModule slotmem_plain_module modules/mod_slotmem_plain.so
    #LoadModule ssl_module modules/mod_ssl.so
    #LoadModule dialup_module modules/mod_dialup.so
    LoadModule lbmethod_byrequests_module modules/mod_lbmethod_byrequests.so
    LoadModule lbmethod_bytraffic_module modules/mod_lbmethod_bytraffic.so
    LoadModule lbmethod_bybusyness_module modules/mod_lbmethod_bybusyness.so
    LoadModule lbmethod_heartbeat_module modules/mod_lbmethod_heartbeat.so
    LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
    LoadModule unixd_module modules/mod_unixd.so
    #LoadModule heartbeat_module modules/mod_heartbeat.so
    #LoadModule heartmonitor_module modules/mod_heartmonitor.so
    #LoadModule dav_module modules/mod_dav.so
    LoadModule status_module modules/mod_status.so
    LoadModule autoindex_module modules/mod_autoindex.so
    #LoadModule asis_module modules/mod_asis.so
    #LoadModule info_module modules/mod_info.so
    #LoadModule suexec_module modules/mod_suexec.so
    #LoadModule cgid_module modules/mod_cgid.so
    #LoadModule cgi_module modules/mod_cgi.so
    #LoadModule dav_fs_module modules/mod_dav_fs.so
    #LoadModule dav_lock_module modules/mod_dav_lock.so
    #LoadModule vhost_alias_module modules/mod_vhost_alias.so
    LoadModule negotiation_module modules/mod_negotiation.so
    LoadModule dir_module modules/mod_dir.so
    LoadModule php5_module modules/libphp5.so
    #LoadModule imagemap_module modules/mod_imagemap.so
    #LoadModule actions_module modules/mod_actions.so
    #LoadModule speling_module modules/mod_speling.so
    LoadModule userdir_module modules/mod_userdir.so
    LoadModule alias_module modules/mod_alias.so
    #LoadModule rewrite_module modules/mod_rewrite.so
    <IfModule unixd_module>
    # 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 http
    Group http
    </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
    # Deny access to the entirety of your server's filesystem. You must
    # explicitly permit access to web content directories in other
    # <Directory> blocks below.
    <Directory />
    AllowOverride none
    Require all denied
    </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.
    # 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 "/srv/http"
    <Directory "/srv/http">
    # 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.4/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:
    # AllowOverride FileInfo AuthConfig Limit
    AllowOverride None
    # Controls who can get stuff from this server.
    Require all granted
    </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.
    <Files ".ht*">
    Require all denied
    </Files>
    # 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 "/var/log/httpd/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 "/var/log/httpd/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/httpd/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.
    ScriptAlias /cgi-bin/ "/srv/http/cgi-bin/"
    </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 cgisock
    </IfModule>
    # "/srv/http/cgi-bin" should be changed to whatever your ScriptAliased
    # CGI directory exists, if you have that configured.
    <Directory "/srv/http/cgi-bin">
    AllowOverride None
    Options None
    Require all granted
    </Directory>
    <IfModule mime_module>
    # TypesConfig points to the file containing the list of mappings from
    # filename extension to MIME-type.
    TypesConfig conf/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
    # 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 mod_mime_magic 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 conf/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
    # MaxRanges: Maximum number of Ranges in a request before
    # returning the entire resource, or one of the special
    # values 'default', 'none' or 'unlimited'.
    # Default setting is to accept 200 Ranges.
    #MaxRanges unlimited
    # EnableMMAP and EnableSendfile: On systems that support it,
    # memory-mapping or the sendfile syscall may be 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.
    # Defaults: EnableMMAP On, EnableSendfile Off
    #EnableMMAP off
    #EnableSendfile on
    # Supplemental configuration
    # The configuration files in the conf/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 conf/extra/httpd-mpm.conf
    # Multi-language error messages
    Include conf/extra/httpd-multilang-errordoc.conf
    # Fancy directory listings
    Include conf/extra/httpd-autoindex.conf
    # Language settings
    Include conf/extra/httpd-languages.conf
    # User home directories
    Include conf/extra/httpd-userdir.conf
    # Real-time info on requests and configuration
    #Include conf/extra/httpd-info.conf
    # Virtual hosts
    #Include conf/extra/httpd-vhosts.conf
    # Local access to the Apache HTTP Server Manual
    #Include conf/extra/httpd-manual.conf
    # Distributed authoring and versioning (WebDAV)
    #Include conf/extra/httpd-dav.conf
    # Various default settings
    Include conf/extra/httpd-default.conf
    # Configure mod_proxy_html to understand HTML4/XHTML1
    <IfModule proxy_html_module>
    Include conf/extra/proxy-html.conf
    </IfModule>
    # Secure (SSL/TLS) connections
    #Include conf/extra/httpd-ssl.conf
    Include conf/extra/php5_module.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>
    # uncomment out the below to deal with user agents that deliberately
    # violate open standards by misusing DNT (DNT *must* be a specific
    # end-user choice)
    #<IfModule setenvif_module>
    #BrowserMatch "MSIE 10.0;" bad_DNT
    #</IfModule>
    #<IfModule headers_module>
    #RequestHeader unset DNT env=bad_DNT
    #</IfModule>
    I have replaced
    LoadModule mpm_event_module modules/mod_mpm_event.so
    with
    LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
    Please help.

  • Trying to configure Portal to run off the network

    Hi all,
    I am trying to configure Oracle Portal 3.0.9.8.2 to run off the network. I have taken all of the recommended steps in terms of configuring hostname, using a static IP, running and checking the ssoodatan script, updating the hosts file, and configuring a loopback adapter, but can still not make it work. The Portal works and functions fine when connected to the network, but as soon as disconnected from the network Portal returns
    Error: Timeout occurred whilst retrieving page meta data 0 ms.
    or
    Sometimes it will display the banner, but the Portlets and the Providers will instantly timeout. I have cranked up the timeout levels of JServ and the Providers but to no avail. I have put the recommended timeout, stall, requesttime, buffer, minStall, minTimeout in the zone.properties file, but no luck.
    I have noticed within the jserv.log the error message below. The link that jumps out at me is UnknownHostException: www-proxy.us.oracle.com. I did have my proxy server set at one time, but I erased it from the global settings page, and I ran the procedure I found somewhere on this discussion board to make sure it was set back to null. When I run the diag.cmd program it shows my proxy server being empty. Where could this be picking this up from, I also have proxy servers turned off in my browsers. Any suggestions or help??
    13/02/2002 16:04:08:752 PST] page/JNI: Exception when trying to connect in 1.
    [13/02/2002 16:04:08:752 PST] page/Timeout occurred, label=147 url=http://jstrada-lap.us.oracle.com/pls/portal30/!PORTAL30.wwpro_app_provider.execute_portlet time=10ms
    [13/02/2002 16:04:08:762 PST] page/ContentFetcher Unexpected Exception, name=content-fetcher0
    java.net.UnknownHostException: www-proxy.us.oracle.com
         at java.net.InetAddress.getAllByName0(InetAddress.java:575)
         at java.net.InetAddress.getAllByName0(InetAddress.java:544)
         at java.net.InetAddress.getAllByName(InetAddress.java:537)
         at HTTPClient.HTTPConnection$EstablishConnection.run(HTTPConnection.java, Compiled Code)

    I think you must add an entry to your /etc/hosts file, as follows:
    127.0.0.1 noa noa
    and create a vhost entry on /etc/httpd/conf/extra/httpd-vhosts
    <VirtualHost *:80>
    ServerName noa
    DocumentRoot "/srv/http/"
    <Directory "/src/http/">
    Options Indexes FollowSymLinks
    AllowOverride None
    Require all granted
    </Directory>
    </VirtualHost>
    Although I'm not sure if the vhost is actually necesary, but it won't harm.
    pd: if you use vhosts, remember to uncomment "Include conf/extra/httpd-vhosts.conf" con /etc/httpd/conf/httpd.conf and restart apache
    # systemctl restart httpd

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

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

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

  • Apache Vhosts and SSL

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

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

  • Can the "mode" tag in vhost.xml file be edited using getconfig() and setconfig()?

    can the "mode" tag in vhost.xml file be edited using getconfig() and setconfig()?

    You can create client and have following code in it: (But before that Admin Server is running on the machine which you want make edge server programatically)
    var admin_nc = new NetConnection();
    sendCommand.enabled = false;   // where sendCommand is button on stage with "sendCommand" as instance name
    admin_nc.onStatus = function(info) {
    if (info.code == "NetConnection.Connect.Success")
    sendCommand.enabled = true;
    sendBtn.addEventListener("click", callAdminAPI);
    function callAdminAPI() {
    admin_nc.call("setConfig2",new Result1(),"Proxy/Mode","remote","Adaptor:_defaultRoot_/VHost:_defaultVHost_");
    function Result1() {
          this.onResult = function(info) {
    if (info.code == "NetConnection.Call.Success" ) {
    admin_nc.call("startServer",new Result2(),"restart"); // you can might as well use restartVHost
    function Result2(){
    this.onResult = function(info) {
    if (info.code == "NetConnection.Call.Success" ) {
    trace("Server started successfully);
    admin_nc.connect("rtmp://<your Edge Server IP>:1111/admin","admin","admin");  //here admin/admin is userid/password of Admin of server

  • allow tag in Vhost.xml

    I want to allow connections between applications running on
    my server.
    When setting <allow> tag in Vhost.xml to '12.34.56.78'
    (server ip address, i don't have domain name), server allows
    connections made from swf files running on the same server, but
    does not allow connections from one application to another running
    on the server.
    Adding 'localhost' to <allow> tag does not help.
    Leaving <allow> tag empty does not help also.
    When setting <allow> tag to 'all', all connections are
    allowed including those made from third-party servers that is not
    applicible for security reasons.
    What am i doing wrong?

    Here it is an excerpt of the file.
    The <Allow> tag is the only thing i've modified :
    <!-- This tag specifies a comma delimited list of domains that are   -->
    <!-- allowed to connect to this vhost. If this tag is empty, then    -->
    <!-- only connections from the same domain that is being connected   -->
    <!-- to will be allowed. If this tag is not empty, then only the     -->
    <!-- domains explicitly listed will be accepted. For example,        -->
    <!-- <Allow>macromedia.com, yourcompany.com</Allow> will only allow  -->
    <!-- connections from the macromedia.com & yourcompany.com domains.  -->
    <!-- If you wish to allow localhost connections, you will specify    -->
    <!-- "localhost". For example, <Allow>localhost</Allow>. To allow    -->
    <!-- all domains, specify "all".  For example, <Allow>all</Allow>.   -->
    <Allow>www.mywiicenter.com</Allow>
    I have a page, on the site specified in <Allow>, with an SWF that shows a video on demand, taken from the "media" subfolder of the VOD application.
    The FMS is in a different server.
    When there it was "all" in place of my site, the connection were established, and i watched the video.
    Now, the swf can't connect from either my site nor from any other one (i've also tried putting the swf on a different webserver with another domain name).
    The FMS administration console tells me that a connection was attempted, but it was refused (see image below):
    And i've tried both with IE7 and Opera 9.
    I think there's a simpler way than rewriting the VOD application , isn't it?

  • I can't get launchctl to run a simple script

    I've written the following bash script (saved to /usr/local/bin/adwidget.fiveminutes.sh):
    #!/bin/sh
    /usr/bin/curl -o /tmp/fiveminutes.php http://adwidget.local/every/fiveminutes.php
    (adwidget.local is a vhost pointed to my local Apache/PHP server on Mac OS X 10.6.5) When I run it manually from terminal, I get /tmp/fiveminutes.php created with all the contents as expected. Here's what I have for /Library/LaunchAgents/com.adwidget.
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>label</key>
    <string>com.adwidget.fiveminutes</string>
    <key>ProgramArguments</key>
    <array>
    <string>/usr/local/bin/adwidget.fiveminutes.sh</string>
    </array>
    <key>OnDemand</key>
    <false/>
    <key>Nice</key>
    <integer>1</integer>
    <key>StartCalendarInterval</key>
    <dict>
    <key>Minute</key>
    <integer>5</integer>
    </dict>
    <key>StandardErrorPath</key>
    <string>/tmp/adwidget.fiveminutes.err</string>
    <key>StandardOutPath</key>
    <string>/tmp/adwidget.fiveminutes.out</string>
    </dict>
    </plist>
    When I do
    launchctl load /Library/LaunchAgents/com.adwidget.fiveminutes.plist
    no error is thrown. When I check
    ps aux | grep adwidget
    It appears to be installed...
    $ launchctl list | grep adwidget
    - 1 com.adwidget.fiveminutes
    ...The output file (/tmp/adwidget.fiveminutes.out) and error file (/tmp/adwidget.fiveminutes.err) get created but are 0 bytes.
    Yet, nothing seems to be happening. Can someone give me some tips? I've run out of ideas.

    The one outstanding element I see is:
    launchctl load /Library/LaunchAgents/com.adwidget.fiveminutes.plist
    You have this as a LaunchAgent? is that intentional?
    LaunchAgents only run when a user is logged in. So if no user is logged in the script won't fire. Additionally, the script will be launched under the current logged-in user's ID, so you should check that the user has permission to execute the script.
    Moving the .plist to /Library/LaunchDaemons will allow it to run continuously, without a user logged in.

  • Running 'netstatt' On An Interface Alias Returns Nothing.

    Hi all,
    can some one please shed some light on this behavior. We defined some network interface aliases on a SunOS machine. Running a 'netstat' on the alias returns nothing, while running it on the actuall device name returns the expected stats.
    Is this behavior by design?
    How can you get stats running this cmd on an alias interface name?
    Thank you

    It did not solve the issue. But I found it.
    I sketch what I've done .. maybe others can use that info too.
    Reason: For traditional reasons, we use Apache Configs for Aliases ... no mapping within CF itself because up to CF9 those mappings are global. Howerver, for UNC mappings, this seems to be the bad way.
    Up to today, I had no idea how Apache and CF talk to each other on paths. Obvioulsy, CF ask Apache for a path resolution, but Apache as a System Service, was not able to verify the accessibility of the UNC path. Therefore, it or CF figured that they use the webroot of this vhost.
    When I ran Apache as Administrator, it could access the UNC and therefore Apache and/or CF returned the correctly expanded path. Of course, we don't run Apache with more rights than the System Service. Resetting Apache to that also returned the wrong UNC expansion.
    So, we now go with Mappings in CF itself. Since CF 10 allows for Per App Mappings, this is no longer a problem.
    Martin

  • Running CF9 and CF10 together on Mac with Snow Leopard

    This may be a very basic question, but I am trying to set up CF10 to run alongside CF9 on a developer installation on my Macbook with Snow Leopard. I can see both administrators, CF9 on localhost and CF10 on 127.0.0.1:8500. It seems that both are runing on JRUN because I can't run CF10 without having CF9 running.
    How do I set up a site to run on CF10 only? I can't figure out how to set up the virtual host files to have the site determine which version to run. If I set up the virtual host in Apache2 httpd-vhosts.conf file, it seems to run the site using CF9 and it breaks because it has to run on CF10. If I set up the server.xml file as if it was using Tomcat, then it seems to break the ability to get to the administrator app in either CF9 or CF10 to run.
    Any ideas out there to help me?

    Do you mean like this? First, copy the URL. Next, open up TextEdit. Here, you can paste the URL. Next, highlight the URL, right click it and select "Make Link". After that, press the arrow key or click in a blank spot on TextEdit. Select the link, and type in the new name of the link. You have now successfully created a hyperlink.

  • AWStats on Mountain Lion with VHosts

    Hi folks.
    Well I tried to install AWStats and the leadership that I got was all over the place.  It's been a whole evening and I'm thoroughly confused.
    I have several vhosts that I would like to get up and rolling.  I wanted rolling 5 Meg apache access (combined) and error logs, but there is no guidance as to how to set that up.  So I went back to the normal log format for the meantime.
    Now I can get the stats to work, however I can't find the url for the AWStats, because of the vhosts.  So it's not as simple as http://www.myservername.com as the server chooses a default domain. 
    I would like to break out domains for single vhosts.  Have one setup per domain.  I would also like to make them protected by a password as well. 
    Anybody have any examples of what I have to do? 
    Their mailing list never responded with a reply. 
    Cheers

    I am having a similar "Failed to initialize COM" problem on Mac OS X 10.7.5, VirtualBox 4.2.2. I have wasted over six hours alone trying to address the issue, and it's still unresolved. My message:
    Failed to initialize COM because the VirtualBox global configuration directory /Users/username/Library/VirtualBox is not accessible. Please check the permissions of this directory and of its parent directory.
    The application will now terminate.
    There is no such VirtualBox folder in my user Library folder. It is trying to locate a non-existent directory.
    The closest workaround I could find that enabled VirtualBox to open was to create a brand new admin level user, log in to that user account, then install VirtualBox and run under that account. Works great, until I log out and try to run VirtualBox on my primary admin account, which results in the same "failed to initialize COM" error.
    I have found no helpful advice geared towards Mac OS X users to troubleshoot or resolve this issue. You can try posting on Oracle's VirtualBox forum. Good luck.

  • Apache vhost/jrun access error

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

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

Maybe you are looking for

  • Need help getting my applets to work on web pages!

    I've been trying to get it to work for a while now, and I no idea why it won't work! I've tried all kinds of things to get it to work, but it still won't work. All I want to do is make a simple applet, don't care what it does, and put it on a web pag

  • Export Format In PDF Articles - Vector as default

    I would like to request that 'Vector' be made the default (or an option allowed for users to change the default) for 'Export Format in PDF Artciles' in Slideshows and Scrollable Frames. In my line of work - newspaper and magazine publishing - roughly

  • WRT350N - Wireless Unstable at Best.

    I purchased the WRT350N to replace my old Wireless-G Linksys router.  My old router worked fine but I was really excited about the storage link feature for the WRT350N, not to mention the suppossed extended range and throughput. I regret to say that

  • 1 or 2 speakers on the iPhone

    at the bottom of the iPhone it looks like there would be two speakers (the mesh holes), but I only have sound coming from the left one. Is this correct?

  • Is there a way to re formatt videos from a droid to view on i phone?

    is there a way to re formatt videos from a droid to view on i phone?