Config-ApacheFormat-1.2/ 0040755 0000764 0000765 00000000000 07752032264 013257 5 ustar sam sam Config-ApacheFormat-1.2/t/ 0040755 0000764 0000765 00000000000 07752032264 013522 5 ustar sam sam Config-ApacheFormat-1.2/t/includedir.conf 0100644 0000764 0000765 00000000065 07742636230 016513 0 ustar sam sam
Include incdir
Include t/first.conf t/second.conf
Config-ApacheFormat-1.2/t/06validate.t 0100755 0000764 0000765 00000001675 07752023556 015663 0 ustar sam sam
use Test::More tests => 9;
BEGIN { use_ok('Config::ApacheFormat'); }
my $config = Config::ApacheFormat->new(valid_directives => [ 'foo' ]);
isa_ok($config, 'Config::ApacheFormat');
eval { $config->read("t/basic.conf") };
like($@, qr/not a valid directive/);
$config = Config::ApacheFormat->new(valid_directives =>
[ qw(foo BiFf bopbop bool) ]);
$config->read("t/basic.conf");
is($config->get('foo'), "bar");
is(($config->get('biff'))[0], "baz");
is(($config->get('biff'))[1], "bop");
$config = Config::ApacheFormat->new(valid_blocks =>
[ qw(plain) ]);
eval { $config->read("t/block.conf"); };
like($@, qr/not a valid block/);
$config = Config::ApacheFormat->new(valid_blocks =>
[ qw(plain param multi) ]);
$config->read("t/block.conf");
my $block = $config->block('plain');
isa_ok($block, ref($config));
is($block->get("foo"), "bar");
Config-ApacheFormat-1.2/t/03leak.t 0100755 0000764 0000765 00000001130 07745051071 014760 0 ustar sam sam
use Config::ApacheFormat;
BEGIN {
eval {
require Scalar::Util;
import Scalar::Util qw(weaken);
};
if ($@) {
my $mesg = $@; # $@ cleared on require/import
require Test::More;
import Test::More skip_all => $mesg;
exit;
}
}
use Test::More qw(no_plan);
# run this with the call to weaken() in ApacheFormat.pm commented out
# and watch the amazing leaking code in top! You might need to add
# more iterations if it's buzzing by too fast.
for(0 .. 100) {
my $config = Config::ApacheFormat->new();
$config->read("t/block.conf");
ok(1);
}
Config-ApacheFormat-1.2/t/httpd.conf 0100444 0000764 0000765 00000111714 07745021614 015513 0 ustar sam sam ##
## 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 for detailed information about
# the directives.
#
# Solaris Quick Configuration Information
#
# 1. Set ServerName if necessary (default is 127.0.0.1)
# 2. Set ServerAdmin to a valid email address
# 3. If configuring Jserv or Tomcat, read comments at
# the bottom of this file.
#
#
# 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
# /etc/apache/srm.conf and then /etc/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 );
# you will save yourself a lot of trouble.
#
ServerRoot "/usr/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 /var/run/httpd.lock
#
# PidFile: The file in which the server should record its process
# identification number when it starts.
#
PidFile /var/run/httpd.pid
#
# ScoreBoardFile: File used to store internal server process information.
# Not all architectures require this. But if yours does (you'll know because
# this file will be created when you run Apache) then you *must* ensure that
# no two invocations of Apache share the same scoreboard file.
#
ScoreBoardFile /var/run/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 5
MaxSpareServers 10
#
# Number of servers to start initially --- should be a reasonable ballpark
# figure.
#
StartServers 5
#
# 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
# directive.
#
#Listen 3000
#Listen 12.34.56.78: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 and Listen directives.
#
#BindAddress *
#
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Please read the file http://httpd.apache.org/docs/dso.html for more
# details about the DSO mechanism and run `httpd -l' for the list of already
# built-in (statically linked and thus always available) modules in your httpd
# binary.
#
# Note: The order in which modules are loaded is important. Don't change
# the order below without expert advice.
#
# Example:
# LoadModule foo_module libexec/mod_foo.so
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 perl_module libexec/libperl.so
# Reconstruction of the complete module list from all available modules
# (static and shared ones) to achieve correct module execution order.
# [WHENEVER YOU CHANGE THE LOADMODULE SECTION ABOVE UPDATE THIS, TOO]
ClearModuleList
AddModule mod_mmap_static.c
AddModule mod_vhost_alias.c
AddModule mod_env.c
AddModule mod_log_config.c
AddModule mod_log_agent.c
AddModule mod_log_referer.c
AddModule mod_mime_magic.c
AddModule mod_mime.c
AddModule mod_negotiation.c
AddModule mod_status.c
AddModule mod_info.c
AddModule mod_include.c
AddModule mod_autoindex.c
AddModule mod_dir.c
AddModule mod_cgi.c
AddModule mod_asis.c
AddModule mod_imap.c
AddModule mod_actions.c
AddModule mod_speling.c
AddModule mod_userdir.c
AddModule mod_alias.c
AddModule mod_rewrite.c
AddModule mod_access.c
AddModule mod_auth.c
AddModule mod_auth_anon.c
AddModule mod_auth_dbm.c
AddModule mod_digest.c
AddModule mod_proxy.c
AddModule mod_cern_meta.c
AddModule mod_expires.c
AddModule mod_headers.c
AddModule mod_usertrack.c
AddModule mod_example.c
AddModule mod_unique_id.c
AddModule mod_so.c
AddModule mod_setenvif.c
AddModule mod_perl.c
#
# 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
# definition. These values also provide defaults for
# any containers you may define later in the file.
#
# All of these directives may appear inside 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 80
#
# 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 nobody
Group nogroup
#
# 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 nobody@nowhere.com
#
# 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 your-momma.nowhere.com
#
# 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 "/no/where"
#
# 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.
#
Options FollowSymLinks
AllowOverride None
#
# 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.
#
#
# 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 Includes ExecCGI
#
# 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 All
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
Options Indexes FollowSymlinks Multiviews Includes ExecCGI
AllowOverride All
Order allow,deny
Allow from all
#
# UserDir: The name of the directory which is appended onto a user's home
# directory if a ~user request is received.
#
UserDir public_html
#
# Control access to UserDir directories. The following is an example
# for a site where these directories are restricted to read-only.
#
AllowOverride FileInfo AuthConfig Limit
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
Order allow,deny
Allow from all
Order deny,allow
Deny from all
#
# DirectoryIndex: Name of the file or files to use as a pre-written HTML
# directory index. Separate multiple entries with spaces.
#
DirectoryIndex index.html
#
# 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.
#
Order allow,deny
Deny from all
Satisfy All
#
# 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 On
#
# TypesConfig describes where the mime.types file (or equivalent) is
# to be found.
#
TypesConfig /etc/apache/mime.types
#
# 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 container.
# This means that the MIMEMagicFile directive will only be processed if the
# module is part of the server.
#
MIMEMagicFile /etc/apache/magic
#
# 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
# container, error messages relating to that virtual host will be
# logged here. If you *do* define an error logfile for a
# container, that host's errors will be logged there and not here.
#
ErrorLog /var/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
# container, they will be logged here. Contrariwise, if you *do*
# define per- access logfiles, transactions will be
# logged therein and *not* in this file.
#
CustomLog /var/apache/logs/access_log common
#
# If you would like to have agent and referer logfiles, uncomment the
# following directives.
#
CustomLog /var/apache/logs/referer_log referer
CustomLog /var/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 /var/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
# EBCDIC configuration:
# (only for mainframes using the EBCDIC codeset, currently one of:
# Fujitsu-Siemens' BS2000/OSD, IBM's OS/390 and IBM's TPF)!!
# The following default configuration assumes that "text files"
# are stored in EBCDIC (so that you can operate on them using the
# normal POSIX tools like grep and sort) while "binary files" are
# stored with identical octets as on an ASCII machine.
#
# The directives are evaluated in configuration file order, with
# the EBCDICConvert directives applied before EBCDICConvertByType.
#
# If you want to have ASCII HTML documents and EBCDIC HTML documents
# at the same time, you can use the file extension to force
# conversion off for the ASCII documents:
# > AddType text/html .ahtml
# > EBCDICConvert Off=InOut .ahtml
#
EBCDICConvertByType On=InOut text/* message/* multipart/*
EBCDICConvertByType On=In application/x-www-form-urlencoded
EBCDICConvertByType On=InOut application/postscript model/vrml
EBCDICConvertByType Off=InOut */*
#
# Aliases: Add here as many aliases as you need (with no limit). The format is
# Alias fakename realname
#
Alias /manual/ "/usr/apache/htdocs/manual/"
Options Indexes FollowSymLinks MultiViews
AllowOverride None
#
# 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/". If the fakename is slash-terminated, then the
# realname must also be slash terminated, and if the fakename omits the
# trailing slash, the realname must also omit it.
#
Alias /icons/ "/var/apache/icons/"
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
# This Alias will project the on-line documentation tree under /manual/
# even if you change the DocumentRoot. Comment it if you don't want to
# provide access to the on-line documentation.
#
Alias /manual/ "/var/apache/htdocs/manual/"
Options Indexes FollowSymlinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
#
# 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/ "/var/apache/cgi-bin/"
#
# "/var/apache/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
AllowOverride None
Options None
Order allow,deny
Allow from all
# 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.
#
#
# 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
# End of indexing directives.
#
# Document types.
#
#
# 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' abbreviation is not
# identical to the two character 'Country' code for its country,
# E.g. 'Danmark/dk' versus 'Danish/da'.
#
# Note 3: In the case of 'ltz' we violate the RFC by using a three char
# specifier. 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) - Norwegian Nynorsk (nn)
# Portugese (pt) - Luxembourgeois* (ltz)
# Spanish (es) - Swedish (sv) - Catalan (ca) - Czech(cz)
# Polish (pl) - Brazilian Portuguese (pt-br) - Japanese (ja)
# Russian (ru)
#
AddLanguage da .dk
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 nn .nn
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 .sv
AddLanguage cz .cz
AddLanguage ru .ru
AddLanguage zh-tw .tw
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.
#
LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru ltz ca es sv tw
#
# AddType allows you to tweak mime.types without actually editing it, or to
# make certain files to be certain types.
#
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 .html
#
# 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
# 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 /missing.html
# 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.
ErrorDocument 402 /errors/402.html
ErrorDocument 403 /errors/403.html
ErrorDocument 404 /errors/404.html
ErrorDocument 500 /errors/500.html
#
# Customize behaviour based on the browser
#
#
# 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
# 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.
#
SetHandler server-status
Order deny,allow
Deny from all
Allow from .your-domain.com
#
# 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.
#
SetHandler server-info
Order deny,allow
Deny from all
Allow from .your-domain.com
#
# 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.
#
Deny from all
ErrorDocument 403 http://phf.apache.org/phf_abuse_log.cgi
#
# Proxy Server directives. Uncomment the following lines to
# enable the proxy server:
#
#
# ProxyRequests On
#
# Order deny,allow
# Deny from all
# Allow from .your-domain.com
#
#
# 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 "/var/apache/proxy"
# CacheSize 5
# CacheGcInterval 4
# CacheMaxExpire 24
# CacheLastModifiedFactor 0.1
# CacheDefaultExpire 1
# NoCache a-domain.com another-domain.edu joes.garage-sale.com
#
# 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
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.
#
# Use name-based virtual hosting.
#
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.
#
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot /www/docs/dummy-host.example.com
ServerName dummy-host.example.com
ErrorLog logs/dummy-host.example.com-error_log
CustomLog logs/dummy-host.example.com-access_log common
ServerAdmin webmaster@dummy-server.example.com
DocumentRoot /www/docs/dummy-server.example.com
ServerName dummy-server.example.com
ErrorLog logs/dummy-server.example.com-error_log
CustomLog logs/dummy-server.example.com-access_log common
#
#
#
# SetHandler perl-script
# PerlHandler Apache::Status
# order deny,allow
# deny from all
# allow from yourhost
#
#
Config-ApacheFormat-1.2/t/fixbools.conf 0100644 0000764 0000765 00000000210 07742632261 016206 0 ustar sam sam
UseCanonicalName On
HavePrettyFlowers Yes
LikeSalads True
ActLikeAnimals Off
KillFluffy No
DislikeSalads False
Config-ApacheFormat-1.2/t/04include.t 0100755 0000764 0000765 00000001565 07752027640 015507 0 ustar sam sam
use Test::More qw(no_plan);
BEGIN { use_ok 'Config::ApacheFormat'; }
my $config = Config::ApacheFormat->new();
$config->read("t/includer.conf");
is($config->get('foo'), 1);
is($config->get('bar'), 2);
is($config->get('first'), 'unset');
is($config->get('last'), 'second');
# make sure root_directive works
my $config2 = Config::ApacheFormat->new();
$config->root_directive('RootDir');
eval { $config->read("t/includer_with_root.conf"); };
like($@, qr!Unable to open include file '/this/path/should/not/exist/included.conf'!);
# make sure include_directives works
my $crazy = Config::ApacheFormat->new(include_directives => [ 'zany_inc',
'crazy_inc' ]);
$crazy->read('t/crazy_includer.conf');
is($crazy->get('foo'), 1);
is($crazy->get('bar'), 2);
is($crazy->get('first'), 'unset');
is($crazy->get('last'), 'second');
Config-ApacheFormat-1.2/t/crazy_includer.conf 0100644 0000764 0000765 00000000074 07752027617 017412 0 ustar sam sam Foo 1
Zany_iNc included.conf
First unset
Last second
Config-ApacheFormat-1.2/t/05autoload.t 0100755 0000764 0000765 00000000635 07743625422 015674 0 ustar sam sam
use Test::More tests => 8;
BEGIN { use_ok('Config::ApacheFormat'); }
my $config = Config::ApacheFormat->new();
isa_ok($config, 'Config::ApacheFormat');
$config->autoload_support(1);
$config->read("t/basic.conf");
is($config->foo, "bar");
is(($config->biff)[0], "baz");
is(($config->biff)[1], "bop");
my @bopbop = $config->bopbop;
is($bopbop[1], 'hello "world"');
is($bopbop[3], 'to');
is($config->get(), 4);
Config-ApacheFormat-1.2/t/setenvars.conf 0100644 0000764 0000765 00000000245 07745041174 016403 0 ustar sam sam
SPECIALNESS "Super"
TOUGHNESS *Negative*
bindir bin
ORACLE_HOME /oracle/$bindir
SomeVar yabba
SetEnv SUPER "On fire"
UnsetEnv PRESET VARS
Config-ApacheFormat-1.2/t/second.conf 0100644 0000764 0000765 00000000045 07742636155 015650 0 ustar sam sam
Inline "out of order"
Reverse not
Config-ApacheFormat-1.2/t/expandvars.conf 0100644 0000764 0000765 00000000767 07743616025 016556 0 ustar sam sam
First A
Onevar $First/B
Second A B
Twovar $Second/$Second
Website http://my.own.dom
JScript $Website/js
Images $WEBSITE/images
Private ${website}/prv
Basedir /etc
ConfigFile httpd.conf
Apache apache
Fullconfig $Basedir/apache/$Configfile
Baseconfig ${Basedir}/$Apache/base.$configFILE
Kiffy $Basedir/${apache}/vhost.conf
Money \$12.00
Another "The $Second \$String is ${private}ly \${escaped}"
Config-ApacheFormat-1.2/t/first.conf 0100644 0000764 0000765 00000000063 07742636707 015527 0 ustar sam sam
Inline perfection
Reverse order
Ford prefect
Config-ApacheFormat-1.2/t/error.conf 0100644 0000764 0000765 00000000055 07571005415 015514 0 ustar sam sam Good 1
Good 2
---12890134--- BAD TO THE BONE
Config-ApacheFormat-1.2/t/01basic.t 0100755 0000764 0000765 00000000671 07743624755 015151 0 ustar sam sam
use Test::More tests => 9;
BEGIN { use_ok('Config::ApacheFormat'); }
my $config = Config::ApacheFormat->new();
isa_ok($config, 'Config::ApacheFormat');
$config->read("t/basic.conf");
is($config->get('foo'), "bar");
is(($config->get('biff'))[0], "baz");
is(($config->get('biff'))[1], "bop");
is($config->get('bool'), 1);
my @bopbop = $config->get('bopbop');
is($bopbop[1], 'hello "world"');
is($bopbop[3], 'to');
is($config->get(), 4);
Config-ApacheFormat-1.2/t/error_block.conf 0100644 0000764 0000765 00000000100 07571005625 016660 0 ustar sam sam
Foo bar
Bif Baz
Bing bong
Config-ApacheFormat-1.2/t/included.conf 0100644 0000764 0000765 00000000025 07742635577 016171 0 ustar sam sam Bar 2
Last before
Config-ApacheFormat-1.2/t/error_includer.conf 0100644 0000764 0000765 00000000043 07571006323 017375 0 ustar sam sam Foo bar
Include error_include.conf
Config-ApacheFormat-1.2/t/12setenvars.t 0100755 0000764 0000765 00000001227 07752022431 016061 0 ustar sam sam
use Test::More tests => 13;
BEGIN { use_ok 'Config::ApacheFormat'; }
$ENV{PRESET} = $ENV{VARS} = 1;
my $config = Config::ApacheFormat->new(setenv_vars => 1, expand_vars => 1);
$config->read("t/setenvars.conf");
is($config->get('SPECIALNESS'), "Super");
isnt($ENV{SPECIALNESS}, "Super");
is($config->get('toughness'), '*Negative*');
isnt($ENV{TOUGHNESS}, '*Negative*');
is($config->get('bindir'), 'bin');
is($ENV{bindir}, undef);
is($config->get('ORACLE_HOME'), '/oracle/bin');
isnt($ENV{'ORACLE_HOME'}, '/oracle/bin');
is($ENV{'SUPER'}, ($config->get('setenv'))[1]);
is($ENV{PRESET}, undef);
is($ENV{VARS}, undef);
is($config->get('SomeVar'), 'yabba');
Config-ApacheFormat-1.2/t/basic.conf 0100644 0000764 0000765 00000000152 07570774104 015451 0 ustar sam sam # comment
Foo bar
Biff baz bop
# comment
BopBop well "hello \"world\"" nice \
to meet you
Bool
Config-ApacheFormat-1.2/t/09includedir.t 0100755 0000764 0000765 00000000634 07744041022 016176 0 ustar sam sam
use Test::More tests => 7;
BEGIN { use_ok 'Config::ApacheFormat'; }
my $config = Config::ApacheFormat->new();
$config->read("t/includedir.conf");
is(scalar $config->get('flying'), 'High');
is(scalar $config->get('and'), 'we');
is(scalar $config->get('as'), 'a kite');
is(scalar $config->get('inline'), 'out of order');
is(scalar $config->get('reverse'), 'not');
is(scalar $config->get('ford'), 'prefect');
Config-ApacheFormat-1.2/t/block.conf 0100644 0000764 0000765 00000000274 07570776663 015503 0 ustar sam sam Global 1
Foo bar
Baz Bif Bap
Fooz Bat
Fooz Batty
Foo bar
Foo bart
Config-ApacheFormat-1.2/t/08error.t 0100755 0000764 0000765 00000000706 07743625447 015226 0 ustar sam sam
use Test::More tests => 5;
BEGIN { use_ok('Config::ApacheFormat'); }
my $config = Config::ApacheFormat->new();
isa_ok($config, 'Config::ApacheFormat');
eval {
$config->read("t/error.conf");
};
like($@, qr/^Error.*?error.conf.*?line 3/);
eval {
$config->read("t/error_block.conf");
};
like($@, qr/^Error.*?error_block.conf.*?line 6/);
eval {
$config->read("t/error_includer.conf");
};
like($@, qr/^Error.*?error_include.conf.*?line 4/);
Config-ApacheFormat-1.2/t/includer_with_root.conf 0100644 0000764 0000765 00000000137 07752021450 020265 0 ustar sam sam RootDir /this/path/should/not/exist
Foo 1
Include included.conf
First unset
Last second
Config-ApacheFormat-1.2/t/02block.t 0100755 0000764 0000765 00000001660 07744040747 015154 0 ustar sam sam
use Test::More tests => 17;
BEGIN { use_ok 'Config::ApacheFormat'; }
my $config = Config::ApacheFormat->new();
$config->read("t/block.conf");
#use Data::Dumper;
#print STDERR Dumper($config->_dir());
is($config->get('global'), 1);
my $block = $config->block('plain');
isa_ok($block, ref($config));
is($block->get("foo"), "bar");
is(($block->get("baz"))[0], "Bif");
is(($block->get("baz"))[1], "Bap");
$block = $config->block(Param => 'foo');
is($block->get("fooz"), "Bat");
$block = $config->block(Param => 'bar');
is($block->get("fooz"), "Batty");
is($block->get("global"), 1, "inheritence works");
my @blocks = $config->get("Param");
is(@blocks, 2);
is($blocks[0][0], "param");
is($blocks[0][1], "foo");
is($blocks[1][0], "param");
is($blocks[1][1], "bar");
foreach my $b (@blocks) {
my $block = $config->block(@$b);
isa_ok($block, ref($config));
}
$block = $config->block(qw(Multi a b c));
is($block->get("foo"), "bar");
Config-ApacheFormat-1.2/t/07largeconf.t 0100755 0000764 0000765 00000010113 07745037506 016020 0 ustar sam sam
use Test::More tests => 247;
BEGIN { use_ok('Config::ApacheFormat'); }
# exhaustive block check for all VirtualHosts
my %blocks = map { $_ => 0 }
qw( mvadmin.moveagain.com preview.thepirtgroup.com caladmin.about.com commentadmin.about.com
comment.about.com pirtgroup.com admin.flyfishing.about.com prmpix.about.com
shuzai.newyorkmetro.thepirtgroup.com shuzai.newyorkmetro.about.com classifieds.about.com preview.gravitygames.com
preview.canoekayak.com classifieds.homeandigloo.about.com ca.homeandigloo.about.com classifieds.history.about.com
ca.history.about.com ca.sewing.about.com preview.slamonline.com preview.bflex.thepirtgroup.com
preview.truckinweb.com preview.automobilemag.com preview.newyorkmetro.com preview.bbric2.thepirtgroup.com
preview.caraudiomag.com preview.qabricolage.ops.about.com postad.equisearch.about.com ca.equisearch.com
ca-biz.equisearch.com preview.equisearch.com preview.enthusiast.thepirtgroup.com ca.3dgraphics.about.com
ca.4wheeldrive.about.com ca.712educators.about.com ca.80music.about.com ca.actionadventure.about.com
ca.actionfigures.about.com ca.add.about.com ca.adoption.about.com ca.adulted.about.com
ca.adventuretravel.about.com ca.advertising.about.com ca.aids.about.com ca.airtravel.about.com
ca.albany.about.com ca.alcoholism.about.com ca.allergies.about.com ca.allmychildren.about.com
ca.altmedicine.about.com ca.altmusic.about.com ca.altreligion.about.com ca.animals.about.com
ca.animatedtv.about.com ca.animation.about.com ca.anime.about.com ca.antiques.about.com
ca.antivirus.about.com ca.apartments.about.com ca.archaeology.about.com ca.architecture.about.com
ca.arthistory.about.com ca.arthritis.about.com ca.artsandcrafts.about.com ca.arttech.about.com
ca.asthma.about.com ca.astrology.about.com ca.atheism.about.com ca.atlanta.about.com
ca.autism.about.com ca.autobuy.about.com ca.autoracing.about.com ca.autorepair.about.com
ca.aviation.about.com ca.babyparenting.about.com ca.backandneck.about.com ca.baking.about.com
ca.baltimore.about.com ca.bandb.about.com ca.baseball.about.com ca.bbq.about.com
ca.beadwork.about.com ca.beauty.about.com ca.beginnersinvest.about.com ca.bicycling.about.com
ca.biology.about.com ca.biotech.about.com ca.bipolar.about.com ca.birding.about.com
ca.blues.about.com ca.boardgames.about.com ca.bodybuilding.about.com ca.boston.about.com
ca.boxing.about.com ca.breastcancer.about.com ca.brooklyn.about.com ca.buddhism.about.com
ca.budgettravel.about.com ca.businessmajors.about.com ca.businesssoft.about.com ca.businesstravel.about.com
ca.busycooks.about.com ca.motorcycles.about.com preview.motortrend.com preview.trucktrend.com
preview.surfermag.com preview.anaheim.com preview.importtuner.com postad.sailmag.about.com
ca.sailmag.com ca.exercise.about.com ca.weightloss.about.com ca.austin.about.com
ca.vintagecars.about.com ca.ecommerce.about.com ca.email.about.com preview.sportrider.com
postad.primediaautomotive.about.com ca.primediaautomotive.com );
my $config = Config::ApacheFormat->new(hash_directives => ['Allow']);
isa_ok($config->read("t/large.conf"), 'Config::ApacheFormat');
is($config->get("User"), 'nobody');
is($config->get("Group"), 'nobody');
my $bl = $config->block(Directory => '/mnt/www/vdir/mp-bin');
is($bl->get('AllowOverride'), 'None');
is(($bl->get('Options'))[0], 'ExecCGI');
is(($bl->get('options'))[1], 'Includes');
is($bl->get('ORDER'), 'allow,deny');
is($bl->get(Allow => 'from'), 'all');
is($bl->get('SetHandler'), 'perl-script');
is($bl->get('PerlHandler'), 'Apache::Registry');
# check for all VirtualHost blocks, using ServerName
for ($config->block(VirtualHost => qw/10.12.13.125 10.12.12.125/)) {
my $s = $_->get('servername');
my $ok = 0;
if (exists $blocks{$s}) {
$blocks{$s}++;
$ok = 1;
}
ok($ok);
}
# loop thru and make sure we had them all
while (my($k,$v) = each %blocks) {
is($blocks{$k}, 1); # should be 1 and not 0/2/3
}
Config-ApacheFormat-1.2/t/11expandvars.t 0100755 0000764 0000765 00000001462 07744041072 016225 0 ustar sam sam
use Test::More tests => 13;
BEGIN { use_ok 'Config::ApacheFormat' };
my $config = Config::ApacheFormat->new(expand_vars => 1);
$config->read("t/expandvars.conf");
is($config->get('Onevar'), 'A/B');
is($config->get('twovar'), 'A/A');
is($config->get('website'), 'http://my.own.dom');
is($config->get('JScript'), 'http://my.own.dom/js');
is($config->get('Images'), 'http://my.own.dom/images');
is($config->get('private'), 'http://my.own.dom/prv');
is($config->get('basedir'), '/etc');
is($config->get('fullconfig'), '/etc/apache/httpd.conf');
is($config->get('baseconfig'), '/etc/apache/base.httpd.conf');
is($config->block(subcontext => 'Vartest')->get('kiffy'), '/etc/apache/vhost.conf');
is($config->get('money'), '$12.00');
is($config->get('another'), 'The A $String is http://my.own.dom/prvly ${escaped}');
Config-ApacheFormat-1.2/t/includer.conf 0100644 0000764 0000765 00000000073 07752027605 016176 0 ustar sam sam Foo 1
Include included.conf
First unset
Last second
Config-ApacheFormat-1.2/t/10fixbools.t 0100755 0000764 0000765 00000000614 07744041036 015674 0 ustar sam sam
use Test::More tests => 7;
BEGIN { use_ok 'Config::ApacheFormat'; }
my $config = Config::ApacheFormat->new(fix_booleans => 1);
$config->read("t/fixbools.conf");
is($config->get('usecanonicalname'), 1);
is($config->get('haveprettyflowers'), 1);
is($config->get('likesalads'), 1);
is($config->get('actlikeanimals'), 0);
is($config->get('killfluffy'), 0);
is($config->get('dislikesalads'), 0);
Config-ApacheFormat-1.2/t/large.conf 0100644 0000764 0000765 00002131345 07570774175 015505 0 ustar sam sam User nobody
Group nobody
PidFile /usr/local/logs/httpd/httpd.pid
SSLRandomFile /dev/urandom 1024
SSLRandomFilePerConnection /dev/urandom 1024
ServerType standalone
ServerRoot /usr/local/apache
Port 80
Listen 80
Listen 443
MinSpareServers 1
MaxSpareServers 20
StartServers 50
MaxClients 110
DocumentRoot /usr/local/apache_ssl/htdocs
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_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 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 setenvif_module libexec/mod_setenvif.so
LoadModule p14_module libexec/mod_p14.so
LoadModule expires_module libexec/mod_expires.so
LoadModule headers_module libexec/mod_headers.so
LoadModule proxy_module libexec/libproxy.so
LoadModule status_module libexec/mod_status.so
LoadModule arm_module libexec/mod_arm.so
ClearModuleList
AddModule mod_env.c
AddModule mod_log_config.c
AddModule mod_log_agent.c
AddModule mod_log_referer.c
AddModule mod_mime.c
AddModule mod_negotiation.c
AddModule mod_status.c
AddModule mod_info.c
AddModule mod_include.c
AddModule mod_autoindex.c
AddModule mod_dir.c
AddModule mod_cgi.c
AddModule mod_asis.c
AddModule mod_imap.c
AddModule mod_actions.c
AddModule mod_alias.c
AddModule mod_rewrite.c
AddModule mod_access.c
AddModule mod_auth.c
AddModule mod_so.c
AddModule mod_setenvif.c
AddModule mod_perl.c
AddModule apache_ssl.c
AddModule mod_p14.c
AddModule mod_headers.c
AddModule mod_expires.c
AddModule mod_proxy.c
AddModule mod_status.c
AddModule mod_arm.c
LogLevel warn
ServerSignature Off
LogFormat "%{%Y-%m-%d%H:%M:%S}t%a%l%v%A%{Abuse}e%m%U%q%s0%b%{Content-Length}i%T%{User-Agent}i%{Cookie}i%{Referer}i" w3c_ext
CustomLog "| /usr/local/apache_ssl/bin/rotatelogs /usr/local/logs/httpd/extended.log 86400" w3c_ext
#ErrorLog "|/usr/local/apache_ssl/bin/rotatelogs /usr/local/apache_ssl/logs/error_log 86400"
ErrorLog "/usr/local/logs/httpd/error.log"
SSLDisable
#SSLEnable
SSLCacheServerPath /usr/local/apache_ssl/bin/gcache
SSLCacheServerPort logs/gcache_port
#SSLCacheServerPort 1234
SSLCacheServerRunDir /tmp
SSLSessionCacheTimeout 1500
#SSLCACertificatePath /usr/local/apache/conf
#SSLCertificateFile /usr/local/apache/ssl/cert.pem
#SSLCertificateKeyFile /usr/local/apache/ssl/private/key.pem
# Set SSLVerifyClient to:
# 0 if no certicate is required
# 1 if the client may present a valid certificate
# 2 if the client must present a valid certificate
# 3 if the client may present a valid certificate but it is not required to
# have a valid CA
SSLVerifyClient 0
# How deeply to verify before deciding they don't have a valid certificate
SSLVerifyDepth 10
SSLBanCipher NULL-MD5:NULL-SHA
ExpiresActive on
ExpiresByType text/html A-3600
ExpiresDefault now
Header set PRAGMA no-cache
Header set Cache-control no-cache
DefaultType text/html
DirectoryIndex index.html index.htm default.html default.htm
AccessFileName .htaccess
AddHandler server-parsed .htm .html .txt
UseCanonicalName off
TypesConfig conf/mime.types
AddEncoding x-compress Z
AddEncoding x-gzip gz tgz
AddType application/x-tar .tgz
BrowserMatch "Mozilla/2" nokeepalive
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
BrowserMatch "RealPlayer 4\.0" force-response-1.0
BrowserMatch "Java/1\.0" force-response-1.0
BrowserMatch "JDK/1\.0" force-response-1.0
ProxyRequests On
ProxyPass /webapps http://appscluster.ops.about.com
#ProxyPass /mp http://primecgi.primedia.com/mp-bin
NameVirtualHost 10.12.12.125:443
NameVirtualHost 10.12.12.125:80
NameVirtualHost 10.12.13.125:443
NameVirtualHost 10.12.13.125:80
ExtendedStatus On
SetHandler server-status
order deny,allow
deny from all
allow from 10.
Options IncludesNOEXEC FollowSymLinks
AllowOverride None
Options IncludesNOEXEC FollowSymLinks
AllowOverride None
Options IncludesNOEXEC FollowSymLinks
AllowOverride None
Options IncludesNOEXEC FollowSymLinks
AllowOverride None
Options IncludesNOEXEC FollowSymLinks
AllowOverride None
Options IncludesNOEXEC FollowSymLinks
AllowOverride None
Options IncludesNOEXEC FollowSymLinks
AllowOverride None
Options IncludesNOEXEC FollowSymLinks
AllowOverride None
Options IncludesNOEXEC FollowSymLinks
AllowOverride None
Options IncludesNOEXEC FollowSymLinks
AllowOverride None
AllowOverride None
Options ExecCGI FollowSymLinks Includes
Order allow,deny
Allow from all
AllowOverride None
Options ExecCGI Includes
Order allow,deny
Allow from all
SetHandler perl-script
PerlHandler Apache::Registry
Options IncludesNOEXEC FollowSymLinks
AllowOverride None
Order Deny,allow
Deny from all
Options +Includes
DirectoryIndex classifieds_admin
Order Allow,deny
Allow from all
Order Deny,Allow
Deny from all
Order Allow,deny
Allow from all
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
DirectoryIndex ad_management
#ARM Directives
ARMAccessControl Off
ARMAuthentication On
ARMAuthorization On
ARMAuthoritative On
ARMResourceString "acc/innewyorkmag"
AuthType ARM
require valid-user
ARMResourceString "exnet/pri/teachworld_sweeps"
AuthType ARM
require valid-user
#
#
# ARMAccessControl Off
# ARMAuthentication On
# ARMAuthorization On
# ARMAuthoritative On
# ARMResourceString "exnet/nymetro"
# AuthType ARM
# require valid-user
#
#
# On test boxes it doesn't help to mask errors...
# ErrorDocument 404 /zshare70z/includeall/genl/404b.htm
ScriptAlias /redirect/ /mnt/www/vdir/cgi-bin/apps/redirect/
Alias /abimages/ /mnt/abwww/images/
Alias /zadz/ /mnt/www/vdir/ads/
Alias /zdynahubz/ /mnt/www/vdir/zdynahubz/
Alias /zimages70z/ /mnt/www/vdir/zimages70z/
Alias /zpicsz/ /mnt/www/vdir/zpicsz/
Alias /zscriptz/ /mnt/www/vdir/giscripts/
Alias /zshare70z/ /mnt/www/vdir/zshare70z/
Alias /z/ /mnt/www/vdir/z/
Alias /zpirtz/ /mnt/www/vdir/zpirtz/
PerlRequire /usr/local/inny/admin/bin/startup.pl
PerlRequire /usr/local/yeg/admin/bin/startup.pl
PerlRequire /usr/local/pirt/pirtmember/bin/startup.pl
PerlRequire /mnt/www/vfs_member/bin/startup.pl
# Setup global environment variable to control Cybersource merchant id
# This variable will facilitate support for multiplie merchant ids as
# required by the Classified credit card transaction system
# Default setting is "aboutclass"
# Non-About vhost entries must override with a custom Cybersource merchant id
SetEnv MERCHANT_ID aboutclass
# End of configuration
ExtendedStatus On
SetHandler server-status
order deny,allow
deny from all
allow from 10.
SetHandler perl-status
order deny,allow
deny from all
allow from 10.
ExpiresActive On
ExpiresByType text/html now
ServerAdmin ops@about.com
ServerName 10.12.12.125
DocumentRoot /usr/local/apache_ssl/htdocs
AllowOverride None
Options ExecCGI FollowSymLinks Includes
Order allow,deny
Allow from all
AllowOverride None
Options ExecCGI Includes
Order allow,deny
Allow from all
#
#
# BROKERLISTINGS
#
# This include should bring up all brokerlistings sites.
#Include conf/hosts/brokerlistings/
ScriptAlias /cgi/ /mnt/www/tools/nymetroadmin/cgi/
ServerName nymadmin.newyorkmetro.com
ServerAlias nymadmin.metronewyork.com
DocumentRoot /mnt/www/tools/nymetroadmin
Options FollowSymLinks ExecCGI
SetEnv SITE_DIR_NAME "New York Metro"
SetHandler cgi-script
#SetHandler perl-script
#PerlHandler Apache::Registry
Options ExecCGI
#PerlModule Apache::Registry
PerlModule CGI
PerlSendHeader On
Options Indexes FollowSymLinks MultiViews +Includes
AllowOverride None
Order allow,deny
Allow from all
ServerName innyadmin.in-newyorkmag.com
DocumentRoot /mnt/www/tools/innyadmin
Options IncludesNOEXEC FollowSymLinks
SetEnv SITE_DIR_NAME "innyadmin"
SetHandler perl-script
PerlSetVar DEBUG 1
PerlHandler INNY::new_listing
SetHandler perl-script
PerlSetVar DEBUG 1
PerlHandler INNY::edit_listing
SetHandler perl-script
PerlSetVar DEBUG 1
PerlHandler INNY::delete_listing
SetHandler perl-script
PerlSetVar DEBUG 1
PerlHandler INNY::view_listings
SetHandler perl-script
PerlSetVar DEBUG 1
PerlHandler INNY::search_listing
SetHandler perl-script
PerlSetVar DEBUG 1
PerlHandler INNY::view_edit
ServerName tgadmin.tigerbeat.com
DocumentRoot /mnt/www/tools/tgadmin
Options IncludesNOEXEC FollowSymLinks
SetEnv SITE_DIR_NAME "tgadmin"
SetHandler perl-script
PerlSetVar DEBUG 1
PerlHandler TGBeat::new_listing
SetHandler perl-script
PerlSetVar DEBUG 1
PerlHandler TGBeat::edit_listing
SetHandler perl-script
PerlSetVar DEBUG 1
PerlHandler TGBeat::delete_listing
SetHandler perl-script
PerlSetVar DEBUG 1
PerlHandler TGBeat::view_listings
SetHandler perl-script
PerlSetVar DEBUG 1
PerlHandler TGBeat::search_listing
SetHandler perl-script
PerlSetVar DEBUG 1
PerlHandler TGBeat::view_edit
ServerName teachworld.about.com
ServerAlias www.teachworld.about.com
DocumentRoot /mnt/www/sites/teachworld_sweeps/
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/teachworld_sweeps/cgi
ScriptAlias /cgi/ /mnt/www/sites/teachworld_sweeps/cgi/
ScriptAlias /admin/ /mnt/www/sites/teachworld_sweeps/admin/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
SetEnv SITE_DIR_NAME "TeachWorld"
ScriptAlias /cgi/ /mnt/www/tools/17admin/cgi/
Servername hadmin.seventeen.com
DocumentRoot /mnt/www/tools/17admin
Options FollowSymLinks ExecCGI
SetEnv SITE_DIR_NAME "hadmin"
SetEnv PUBLISHER_ID "1"
ScriptAlias /cgi/ /mnt/www/tools/MoveAgain_admin/cgi/
ServerName mvadmin.moveagain.com
DocumentRoot /mnt/www/tools/MoveAgain_admin/htdocs
Options FollowSymLinks ExecCGI
Alias /images/uploads/ /mnt/output/tools/MoveAgain_admin/images/uploads/
AllowOverride None
Options ExecCGI Includes
Order allow,deny
Allow from all
ServerName preview.thepirtgroup.com
ServerAlias preview.bperf.thepirtgroup.com
DocumentRoot /mnt/www/sites/preview.bperf
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.bperf/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.bperf/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ScriptAlias /cgi/ /mnt/www/tools/cal/
ServerName caladmin.about.com
DocumentRoot /mnt/www/tools/cal/
SetEnv DB_NAME "cal"
SetEnv DB_HOST ""
SetEnv DB_USER "postgres"
SetEnv DB_PASS ""
SetEnv DB_CLIENT "ops@about-inc.com"
SetEnv DB_CALENDAR "testcal"
SetENV CAL_PUB_DIR "/mnt/output/tools/calendar/"
Options FollowSymLinks ExecCGI
AllowOverride None
Options ExecCGI Includes
Order allow,deny
Allow from all
SetHandler perl-script
PerlHandler Apache::Registry
ScriptAlias /cgi/ /mnt/www/tools/commmentadmin/
Alias /pub/ /mnt/output/tools/pub/
ServerName commentadmin.about.com
DocumentRoot /mnt/www/tools/commentadmin/
SetEnv DB_NAME "comment"
SetEnv DB_HOST ""
SetEnv DB_USER "postgres"
SetEnv DB_PASS ""
AllowOverride None
Options ExecCGI Includes
Order allow,deny
Allow from all
SetHandler perl-script
PerlHandler Apache::Registry
ScriptAlias /cgi/ /mnt/www/tools/comment/cgi/
Alias /pub/ /mnt/output/tools/pub/
ServerName comment.about.com
DocumentRoot /mnt/www/tools/comment/
SetEnv DB_NAME "comment"
SetEnv DB_HOST ""
SetEnv DB_USER "postgres"
SetEnv DB_PASS ""
SetEnv PUB_DIR "/pub"
SetEnv B_PUB_DIR "/mnt/output/tools/comment/"
SetEnv cn "qa"
SetEnv st "NY"
SetEnv birthdate "5/10/1965"
Options FollowSymLinks ExecCGI
AllowOverride None
Options ExecCGI Includes
Order allow,deny
Allow from all
SetHandler perl-script
PerlHandler Apache::Registry
ServerName pirtgroup.com
ServerAlias www.pirtgroup.com
ServerAlias thepirtgroup.com
ServerAlias www.thepirtgroup.com
DocumentRoot /mnt/www/sites/thepirtgroup/
Options IncludesNOEXEC FollowSymLinks
ServerName preview.in-newyorkmag.com
ServerAlias www.preview.in-newyorkmag.com
DocumentRoot /mnt/www/sites/innewyork/
Options IncludesNOEXEC FollowSymLinks
SetEnv SITE_DIR_NAME "innymag"
ARMAccessControl Off
ARMAuthentication On
ARMAuthorization On
ARMAuthoritative On
ARMResourceString "acc/innewyorkmag"
AuthType ARM
require valid-user
ServerName shuzai.modernbride.thepirtgroup.com
DocumentRoot /mnt/www/tools/shuzaiII
SetEnv TOOLNAME shuzai
SetEnv TOOL_DISPLAYNAME Shuzai
SetEnv CLIENTNAME modernbride
SetEnv CLIENT_DISPLAYNAME ModernBride.com
SetEnv PROPERTY modernbride
PerlSendHeader On
Order allow,deny
Allow from all
DirectoryIndex shuzai
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
#SetHandler cgi-script
PerlHandler Apache::Registry
Options +ExecCGI
#SetHandler perl-script
SetHandler cgi-script
#PerlHandler Apache::Registry
ARMResourceString "intra/haven"
AuthType ARM
require valid-user
ServerName shuzai.seventeen.thepirtgroup.com
DocumentRoot /mnt/www/tools/shuzaiII
SetEnv TOOLNAME shuzai
SetEnv TOOL_DISPLAYNAME Shuzai
SetEnv CLIENTNAME seventeen
SetEnv CLIENT_DISPLAYNAME SevenTeen.com
SetEnv PROPERTY seventeen
PerlSendHeader On
Order allow,deny
Allow from all
DirectoryIndex shuzai
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
#SetHandler cgi-script
PerlHandler Apache::Registry
Options +ExecCGI
#SetHandler perl-script
SetHandler cgi-script
#PerlHandler Apache::Registry
ARMResourceString "intra/haven"
AuthType ARM
require valid-user
ServerName shuzai.modernbride.com
SetEnv TOOLNAME shuzai
SetEnv TOOL_DISPLAYNAME Shuzai
SetEnv CLIENTNAME modernbride
SetEnv CLIENT_DISPLAYNAME ModernBride.com
SetEnv PROPERTY modernbride
PerlSendHeader On
DocumentRoot /mnt/www/tools/shuzaiII
Order allow,deny
Allow from all
DirectoryIndex sc
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order deny,allow
Deny from all
Order deny,allow
Deny from all
ServerName shuzai.seventeen.com
SetEnv TOOLNAME shuzai
SetEnv TOOL_DISPLAYNAME Shuzai
SetEnv CLIENTNAME seventeen
SetEnv CLIENT_DISPLAYNAME SevenTeen.com
SetEnv PROPERTY seventeen
PerlSendHeader On
DocumentRoot /mnt/www/tools/shuzaiII
Order allow,deny
Allow from all
DirectoryIndex sc
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order deny,allow
Deny from all
Order deny,allow
Deny from all
Servername shuzaitest.about.com
DocumentRoot /mnt/www/tools/shuzai
Options FollowSymLinks ExecCGI
SetEnv SITE_DIR_NAME "shuzai"
ServerName shuzai.gardening.about.com
DocumentRoot /mnt/www/tools/shuzaiII
Options ExecCGI Includes FollowSymLinks +Indexes
DirectoryIndex shuzai
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
#SetHandler cgi-script
PerlHandler Apache::Registry
Options +ExecCGI
#SetHandler perl-script
SetHandler cgi-script
#PerlHandler Apache::Registry
ServerName shuzai.ab-gardening.about.com
DocumentRoot /mnt/www/tools/shuzaiII
SetEnv PROPERTY ab_gardening
SetEnv TOOLNAME shuzai
SetEnv TOOL_DISPLAYNAME Shuzai
SetEnv CLIENTNAME gardening.about
SetEnv CLIENT_DISPLAYNAME Gardening
Options ExecCGI Includes FollowSymLinks +Indexes
DirectoryIndex shuzai
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
#SetHandler cgi-script
PerlHandler Apache::Registry
Options +ExecCGI
#SetHandler perl-script
SetHandler cgi-script
#PerlHandler Apache::Registry
ScriptAlias /cgi/ /mnt/www/sites/equisearch/cgi/
Servername secure.horses.about.com
DocumentRoot /mnt/www/sites/equisearch
Options FollowSymLinks ExecCGI
SetEnv SITE_DIR_NAME "Equisearch"
AllowOverride None
Options ExecCGI Includes
Order allow,deny
Allow from all
SetHandler perl-script
PerlHandler Apache::Registry
Alias /zscriptz/ /mnt/abwww/vdir/giscripts/
Alias /zshare70z/ /mnt/abwww/vdir/zshare70z/
Alias /zfrequentz/ /mnt/abwww/vdir/zfrequentz/
Alias /zcoz/ /mnt/abwww/vdir/co/
Alias /z/ /mnt/abwww/vdir/z/
Alias /w3c/ /mnt/abwww/vdir/z/w840/ia/s/
Alias /dc/ /mnt/abwww/guide/horses/dc/
Alias /gi/ /mnt/abwww/guide/horses/gi/
Alias /abimages/ /mnt/abwww/images/
Alias /abads/ /mnt/abwww/vdir/z/js/
AllowOverride None
Options +Includes
#
# SetHandler perl-script
# PerlHandler PIRT::member::mem_directory
#
#
# SetHandler perl-script
# PerlHandler PIRT::member::mem_directory
#
#
# SetHandler perl-script
# PerlHandler PIRT::member::mem_directory
#
#
# SetHandler perl-script
# PerlHandler PIRT::member::mem_directory
#
SetHandler perl-script
PerlHandler PIRT::member::mem_directory
ServerName secure.horses.about.com
DocumentRoot /mnt/www/sites/equisearch
SSLEnable
SSLCertificateFile /usr/local/ssl/certs/secure_horses_about_com/cert.cer
SSLCertificateKeyFile /usr/local/ssl/certs/secure_horses_about_com/key.pem
AllowOverride None
Options ExecCGI Includes
Order allow,deny
Allow from all
SetHandler perl-script
PerlHandler Apache::Registry
ProxyPass /searchprime http://primesearch.about.com/texis
ProxyPass /cgi2/ http://primecgi.primedia.com/cgi-bin/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
SetEnv SITE_DIR_NAME "Equisearch"
SetEnv login_page "/membership/login.htm"
SetHandler perl-script
PerlHandler PIRT::member::mem_directory
#
# SetHandler perl-script
# PerlHandler PIRT::member::mem_directory
#
#
# SetHandler perl-script
# PerlHandler PIRT::member::mem_directory
#
#
# SetHandler perl-script
# PerlHandler PIRT::member::mem_directory
#
#
# SetHandler perl-script
# PerlHandler PIRT::member::mem_directory
#
SetHandler perl-script
PerlHandler PIRT::member::mem_directory
Alias /zscriptz/ /mnt/abwww/vdir/giscripts/
Alias /zshare70z/ /mnt/abwww/vdir/zshare70z/
Alias /zfrequentz/ /mnt/abwww/vdir/zfrequentz/
Alias /zcoz/ /mnt/abwww/vdir/co/
Alias /z/ /mnt/abwww/vdir/z/
Alias /w3c/ /mnt/abwww/vdir/z/w840/ia/s/
Alias /dc/ /mnt/abwww/guide/horses/dc/
Alias /gi/ /mnt/abwww/guide/horses/gi/
Alias /abimages/ /mnt/abwww/images/
Alias /abads/ /mnt/abwww/vdir/z/js/
#
ServerName admin.horses.about.com
DocumentRoot /mnt/www/tools/equisearchadmin
# SSLEnable
# SSLCertificateFile /usr/local/ssl/certs/secure_horses_about_com/cert.cer
# SSLCertificateKeyFile /usr/local/ssl/certs/secure_horses_about_com/key.pem
AllowOverride None
Options ExecCGI Includes
Order allow,deny
Allow from all
SetHandler perl-script
PerlHandler Apache::Registry
ProxyPass /searchprime http://primesearch.about.com/texis
ProxyPass /cgi2/ http://primecgi.primedia.com/cgi-bin/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
SetEnv SITE_DIR_NAME "Equisearch"
SetEnv login_page "/membership/login.htm"
SetHandler perl-script
PerlHandler PIRT::member::mem_directory
SetHandler perl-script
PerlHandler PIRT::member::memtest
#
# SetHandler perl-script
# PerlHandler PIRT::member::mem_directory
#
#
# SetHandler perl-script
# PerlHandler PIRT::member::mem_directory
#
#
# SetHandler perl-script
# PerlHandler PIRT::member::mem_directory
#
#
# SetHandler perl-script
# PerlHandler PIRT::member::mem_directory
#
SetHandler perl-script
PerlHandler PIRT::member::mem_directory
Alias /zscriptz/ /mnt/abwww/vdir/giscripts/
Alias /zshare70z/ /mnt/abwww/vdir/zshare70z/
Alias /zfrequentz/ /mnt/abwww/vdir/zfrequentz/
Alias /zcoz/ /mnt/abwww/vdir/co/
Alias /z/ /mnt/abwww/vdir/z/
Alias /w3c/ /mnt/abwww/vdir/z/w840/ia/s/
Alias /dc/ /mnt/abwww/guide/horses/dc/
Alias /gi/ /mnt/abwww/guide/horses/gi/
Alias /bicommon/ /mnt/abwww/input/platinum/b2beinserted/common/
Alias /bideal/ /mnt/www/input/platinum/b2beinserted/deals4sites/
Servername admin.flyfishing.about.com
DocumentRoot /mnt/www/tools/vfs
SetEnv SITE_DIR_NAME "Virtual FlyShop"
PerlModule Apache:Registry
PerlTaintCheck Off
ScriptAlias /cgi/ /mnt/www/tools/vfs/cgi/
#RewriteEngine Off
ScriptAlias /orvis-cgi /mnt/www/tools/vfs/orvis-cgi
Alias /dc/ /mnt/www/guide/flyfishing/dc/
Alias /gi/ /mnt/www/guide/flyfishing/gi/
Options Indexes Includes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
SetHandler cgi-script
Options ExecCGI
PerlHandler vfs_membercode::memreg
SetHandler perl-script
AllowOverride None
PerlSetVar login_page /membership/login.htm
PerlAccessHandler vfs_membercode::mem_directory
Options ExecCGI Includes
AllowOverride None
PerlSetVar login_page /membership/login.htm
PerlAccessHandler vfs_membercode::mem_directory
Options ExecCGI Includes
Alias /zscriptz/ /mnt/abwww/vdir/giscripts/
Alias /zshare70z/ /mnt/abwww/vdir/zshare70z/
Alias /zfrequentz/ /mnt/abwww/vdir/zfrequentz/
Alias /zcoz/ /mnt/abwww/vdir/co/
Alias /z/ /mnt/abwww/vdir/z/
Alias /w3c/ /mnt/abwww/vdir/z/w840/ia/s/
# Alias /dc/ /mnt/abwww/guide/horses/dc/
# Alias /gi/ /mnt/abwww/guide/horses/gi/
Alias /images/ /mnt/abwww/images/
ServerName admin.flyfishing.about.com
DocumentRoot /mnt/www/tools/vfs
ScriptAlias /cgi/ /mnt/www/tools/vfs/cgi/
Alias /dc/ /mnt/abwww/guide/flyfishing/dc/
Alias /gi/ /mnt/abwww/guide/flyfishing/gi/
SSLEnable
SSLCertificateFile /usr/local/ssl/certs/secure_horses_about_com/cert.cer
SSLCertificateKeyFile /usr/local/ssl/certs/secure_horses_about_com/key.pem
ProxyPass /searchprime http://primesearch.about.com/texis
ProxyPass /cgi2/ http://primecgi.primedia.com/cgi-bin/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
SetEnv SITE_DIR_NAME "Flyfishing"
PerlModule Apache:Registry
PerlTaintCheck Off
SetEnv login_page "/membership/login.htm"
Alias /zscriptz/ /mnt/abwww/vdir/giscripts/
Alias /zshare70z/ /mnt/abwww/vdir/zshare70z/
Alias /zfrequentz/ /mnt/abwww/vdir/zfrequentz/
Alias /zcoz/ /mnt/abwww/vdir/co/
Alias /z/ /mnt/abwww/vdir/z/
Alias /w3c/ /mnt/abwww/vdir/z/w840/ia/s/
Alias /dc/ /mnt/abwww/guide/horses/dc/
Alias /gi/ /mnt/abwww/guide/horses/gi/
Alias /images/ /mnt/abwww/images/
Options Indexes Includes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
PerlHandler vfs_membercode::memreg
SetHandler perl-script
AllowOverride None
PerlSetVar login_page /membership/login.htm
PerlAccessHandler vfs_membercode::mem_directory
Options ExecCGI Includes
AllowOverride None
PerlSetVar login_page /membership/login.htm
PerlAccessHandler vfs_membercode::mem_directory
Options ExecCGI Includes
ServerName prmpix.about.com
ServerAlias prmpix.automobilemag.com
ServerAlias prmpix.bikemag.com
ServerAlias prmpix.surfermag.com
ServerAlias prmpix.turbomagazine.com
ServerAlias prmpix.vetteweb.com
DocumentRoot /mnt/www/tools/prmpix/
Options Includes FollowSymLinks
ScriptAlias /cgi-bin/ /mnt/www/vdir/cgi-bin/
Alias /mp-bin/ /mnt/www/vdir/mp-bin/
Alias /w3c/ /mnt/www/vdir/zpirtz/w3c/prmpix/
Header set P3P "CP='ALL DSP DEVa TAIa OUR BUS UNI'"
SetHandler perl-script
PerlHandler About::nogifs
ExpiresByType images/jpeg A-3600
ExpiresByType images/gif A-3600
ExpiresDefault A-3600
Header set PRAGMA no-cache
Header set Cache-control no-cache
SetEnv COOKIE_P "pirtp"
SetEnv COOKIE_S "pirts"
SetEnv SET_COOKIE "1"
SetHandler perl-script
PerlHandler About::nogifs
ExpiresByType images/jpeg A-3600
ExpiresByType images/gif A-3600
ExpiresDefault A-3600
Header set PRAGMA no-cache
Header set Cache-control no-cache
ServerName shuzai.newyorkmetro.thepirtgroup.com
DocumentRoot /mnt/www/tools/shuzaiII/
SetEnv PROPERTY nymetro
SetEnv TOOLNAME shuzai
SetEnv TOOL_DISPLAYNAME nymetro
SetEnv CLIENTNAME nymetro
SetEnv CLIENT_DISPLAYNAME nymetro
Options ExecCGI Includes FollowSymLinks +Indexes
DirectoryIndex shuzai
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
#SetHandler cgi-script
PerlHandler Apache::Registry
Options +ExecCGI
#SetHandler perl-script
SetHandler cgi-script
#PerlHandler Apache::Registry
ServerName shuzai.newyorkmetro.about.com
DocumentRoot /mnt/www/tools/shuzaiII
SetEnv PROPERTY nymetro
SetEnv TOOLNAME shuzai
SetEnv TOOL_DISPLAYNAME Shuzai
SetEnv CLIENTNAME nymetro
SetEnv CLIENT_DISPLAYNAME nymetro
Options ExecCGI Includes FollowSymLinks +Indexes
DirectoryIndex sc
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
#SetHandler cgi-script
PerlHandler Apache::Registry
Options +ExecCGI
#SetHandler perl-script
SetHandler cgi-script
#PerlHandler Apache::Registry
SetEnv DEBUG "1"
ServerName classifieds.about.com
Redirect /classifieds_admin http://classifieds.about.com/ad_manager
Redirect /gameandfish http://classifieds.history.about.com
DocumentRoot /mnt/www/tools/about_classifieds/
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_motorcycles/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /inc/ /mnt/abwww/guide/
SetEnv admin_email classifieds@about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled "1"
PerlSendHeader On
Order Allow,Deny
Allow from all
Options +Includes
DirectoryIndex index.htm
Order Allow,deny
Allow from all
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME 3dgraphics
SetEnv CLIENT_DISPLAYNAME 3dgraphics.about.com
SetEnv DATABASE_NAME 3dgraphics
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/3dgraphics
SetEnv adman_url http://classifieds.about.com/3dgraphics/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME 3dgraphics
SetEnv CLIENT_DISPLAYNAME 3dgraphics.about.com
SetEnv DATABASE_NAME 3dgraphics
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/3dgraphics
SetEnv adman_url http://classifieds.about.com/3dgraphics/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME 4wheeldrive
SetEnv CLIENT_DISPLAYNAME 4wheeldrive.about.com
SetEnv DATABASE_NAME 4wheeldrive
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/4wheeldrive
SetEnv adman_url http://classifieds.about.com/4wheeldrive/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME 4wheeldrive
SetEnv CLIENT_DISPLAYNAME 4wheeldrive.about.com
SetEnv DATABASE_NAME 4wheeldrive
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/4wheeldrive
SetEnv adman_url http://classifieds.about.com/4wheeldrive/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME 712educators
SetEnv CLIENT_DISPLAYNAME 712educators.about.com
SetEnv DATABASE_NAME 712educators
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/712educators
SetEnv adman_url http://classifieds.about.com/712educators/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME 712educators
SetEnv CLIENT_DISPLAYNAME 712educators.about.com
SetEnv DATABASE_NAME 712educators
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/712educators
SetEnv adman_url http://classifieds.about.com/712educators/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME 80music
SetEnv CLIENT_DISPLAYNAME 80music.about.com
SetEnv DATABASE_NAME 80music
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/80music
SetEnv adman_url http://classifieds.about.com/80music/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME 80music
SetEnv CLIENT_DISPLAYNAME 80music.about.com
SetEnv DATABASE_NAME 80music
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/80music
SetEnv adman_url http://classifieds.about.com/80music/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME actionadventure
SetEnv CLIENT_DISPLAYNAME actionadventure.about.com
SetEnv DATABASE_NAME actionadventure
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/actionadventure
SetEnv adman_url http://classifieds.about.com/actionadventure/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME actionadventure
SetEnv CLIENT_DISPLAYNAME actionadventure.about.com
SetEnv DATABASE_NAME actionadventure
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/actionadventure
SetEnv adman_url http://classifieds.about.com/actionadventure/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME actionfigures
SetEnv CLIENT_DISPLAYNAME actionfigures.about.com
SetEnv DATABASE_NAME actionfigures
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/actionfigures
SetEnv adman_url http://classifieds.about.com/actionfigures/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME actionfigures
SetEnv CLIENT_DISPLAYNAME actionfigures.about.com
SetEnv DATABASE_NAME actionfigures
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/actionfigures
SetEnv adman_url http://classifieds.about.com/actionfigures/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME add
SetEnv CLIENT_DISPLAYNAME add.about.com
SetEnv DATABASE_NAME add
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/add
SetEnv adman_url http://classifieds.about.com/add/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME add
SetEnv CLIENT_DISPLAYNAME add.about.com
SetEnv DATABASE_NAME add
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/add
SetEnv adman_url http://classifieds.about.com/add/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME adoption
SetEnv CLIENT_DISPLAYNAME adoption.about.com
SetEnv DATABASE_NAME adoption
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/adoption
SetEnv adman_url http://classifieds.about.com/adoption/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME adoption
SetEnv CLIENT_DISPLAYNAME adoption.about.com
SetEnv DATABASE_NAME adoption
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/adoption
SetEnv adman_url http://classifieds.about.com/adoption/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME adulted
SetEnv CLIENT_DISPLAYNAME adulted.about.com
SetEnv DATABASE_NAME adulted
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/adulted
SetEnv adman_url http://classifieds.about.com/adulted/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME adulted
SetEnv CLIENT_DISPLAYNAME adulted.about.com
SetEnv DATABASE_NAME adulted
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/adulted
SetEnv adman_url http://classifieds.about.com/adulted/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME adventuretravel
SetEnv CLIENT_DISPLAYNAME adventuretravel.about.com
SetEnv DATABASE_NAME adventuretravel
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/adventuretravel
SetEnv adman_url http://classifieds.about.com/adventuretravel/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME adventuretravel
SetEnv CLIENT_DISPLAYNAME adventuretravel.about.com
SetEnv DATABASE_NAME adventuretravel
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/adventuretravel
SetEnv adman_url http://classifieds.about.com/adventuretravel/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME advertising
SetEnv CLIENT_DISPLAYNAME advertising.about.com
SetEnv DATABASE_NAME advertising
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/advertising
SetEnv adman_url http://classifieds.about.com/advertising/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME advertising
SetEnv CLIENT_DISPLAYNAME advertising.about.com
SetEnv DATABASE_NAME advertising
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/advertising
SetEnv adman_url http://classifieds.about.com/advertising/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME aids
SetEnv CLIENT_DISPLAYNAME aids.about.com
SetEnv DATABASE_NAME aids
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/aids
SetEnv adman_url http://classifieds.about.com/aids/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME aids
SetEnv CLIENT_DISPLAYNAME aids.about.com
SetEnv DATABASE_NAME aids
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/aids
SetEnv adman_url http://classifieds.about.com/aids/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME airtravel
SetEnv CLIENT_DISPLAYNAME airtravel.about.com
SetEnv DATABASE_NAME airtravel
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/airtravel
SetEnv adman_url http://classifieds.about.com/airtravel/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME airtravel
SetEnv CLIENT_DISPLAYNAME airtravel.about.com
SetEnv DATABASE_NAME airtravel
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/airtravel
SetEnv adman_url http://classifieds.about.com/airtravel/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME albany
SetEnv CLIENT_DISPLAYNAME albany.about.com
SetEnv DATABASE_NAME albany
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/albany
SetEnv adman_url http://classifieds.about.com/albany/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME albany
SetEnv CLIENT_DISPLAYNAME albany.about.com
SetEnv DATABASE_NAME albany
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/albany
SetEnv adman_url http://classifieds.about.com/albany/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME alcoholism
SetEnv CLIENT_DISPLAYNAME alcoholism.about.com
SetEnv DATABASE_NAME alcoholism
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/alcoholism
SetEnv adman_url http://classifieds.about.com/alcoholism/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME alcoholism
SetEnv CLIENT_DISPLAYNAME alcoholism.about.com
SetEnv DATABASE_NAME alcoholism
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/alcoholism
SetEnv adman_url http://classifieds.about.com/alcoholism/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME allergies
SetEnv CLIENT_DISPLAYNAME allergies.about.com
SetEnv DATABASE_NAME allergies
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/allergies
SetEnv adman_url http://classifieds.about.com/allergies/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME allergies
SetEnv CLIENT_DISPLAYNAME allergies.about.com
SetEnv DATABASE_NAME allergies
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/allergies
SetEnv adman_url http://classifieds.about.com/allergies/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME allmychildren
SetEnv CLIENT_DISPLAYNAME allmychildren.about.com
SetEnv DATABASE_NAME allmychildren
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/allmychildren
SetEnv adman_url http://classifieds.about.com/allmychildren/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME allmychildren
SetEnv CLIENT_DISPLAYNAME allmychildren.about.com
SetEnv DATABASE_NAME allmychildren
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/allmychildren
SetEnv adman_url http://classifieds.about.com/allmychildren/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME altmedicine
SetEnv CLIENT_DISPLAYNAME altmedicine.about.com
SetEnv DATABASE_NAME altmedicine
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/altmedicine
SetEnv adman_url http://classifieds.about.com/altmedicine/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME altmedicine
SetEnv CLIENT_DISPLAYNAME altmedicine.about.com
SetEnv DATABASE_NAME altmedicine
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/altmedicine
SetEnv adman_url http://classifieds.about.com/altmedicine/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME altmusic
SetEnv CLIENT_DISPLAYNAME altmusic.about.com
SetEnv DATABASE_NAME altmusic
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/altmusic
SetEnv adman_url http://classifieds.about.com/altmusic/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME altmusic
SetEnv CLIENT_DISPLAYNAME altmusic.about.com
SetEnv DATABASE_NAME altmusic
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/altmusic
SetEnv adman_url http://classifieds.about.com/altmusic/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME altreligion
SetEnv CLIENT_DISPLAYNAME altreligion.about.com
SetEnv DATABASE_NAME altreligion
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/altreligion
SetEnv adman_url http://classifieds.about.com/altreligion/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME altreligion
SetEnv CLIENT_DISPLAYNAME altreligion.about.com
SetEnv DATABASE_NAME altreligion
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/altreligion
SetEnv adman_url http://classifieds.about.com/altreligion/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME animals
SetEnv CLIENT_DISPLAYNAME animals.about.com
SetEnv DATABASE_NAME animals
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/animals
SetEnv adman_url http://classifieds.about.com/animals/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME animals
SetEnv CLIENT_DISPLAYNAME animals.about.com
SetEnv DATABASE_NAME animals
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/animals
SetEnv adman_url http://classifieds.about.com/animals/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME animatedtv
SetEnv CLIENT_DISPLAYNAME animatedtv.about.com
SetEnv DATABASE_NAME animatedtv
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/animatedtv
SetEnv adman_url http://classifieds.about.com/animatedtv/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME animatedtv
SetEnv CLIENT_DISPLAYNAME animatedtv.about.com
SetEnv DATABASE_NAME animatedtv
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/animatedtv
SetEnv adman_url http://classifieds.about.com/animatedtv/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME animation
SetEnv CLIENT_DISPLAYNAME animation.about.com
SetEnv DATABASE_NAME animation
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/animation
SetEnv adman_url http://classifieds.about.com/animation/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME animation
SetEnv CLIENT_DISPLAYNAME animation.about.com
SetEnv DATABASE_NAME animation
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/animation
SetEnv adman_url http://classifieds.about.com/animation/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME anime
SetEnv CLIENT_DISPLAYNAME anime.about.com
SetEnv DATABASE_NAME anime
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/anime
SetEnv adman_url http://classifieds.about.com/anime/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME anime
SetEnv CLIENT_DISPLAYNAME anime.about.com
SetEnv DATABASE_NAME anime
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/anime
SetEnv adman_url http://classifieds.about.com/anime/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME antiques
SetEnv CLIENT_DISPLAYNAME antiques.about.com
SetEnv DATABASE_NAME antiques
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/antiques
SetEnv adman_url http://classifieds.about.com/antiques/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME antiques
SetEnv CLIENT_DISPLAYNAME antiques.about.com
SetEnv DATABASE_NAME antiques
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/antiques
SetEnv adman_url http://classifieds.about.com/antiques/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME antivirus
SetEnv CLIENT_DISPLAYNAME antivirus.about.com
SetEnv DATABASE_NAME antivirus
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/antivirus
SetEnv adman_url http://classifieds.about.com/antivirus/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME antivirus
SetEnv CLIENT_DISPLAYNAME antivirus.about.com
SetEnv DATABASE_NAME antivirus
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/antivirus
SetEnv adman_url http://classifieds.about.com/antivirus/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME apartments
SetEnv CLIENT_DISPLAYNAME apartments.about.com
SetEnv DATABASE_NAME apartments
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/apartments
SetEnv adman_url http://classifieds.about.com/apartments/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME apartments
SetEnv CLIENT_DISPLAYNAME apartments.about.com
SetEnv DATABASE_NAME apartments
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/apartments
SetEnv adman_url http://classifieds.about.com/apartments/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME archaeology
SetEnv CLIENT_DISPLAYNAME archaeology.about.com
SetEnv DATABASE_NAME archaeology
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/archaeology
SetEnv adman_url http://classifieds.about.com/archaeology/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME archaeology
SetEnv CLIENT_DISPLAYNAME archaeology.about.com
SetEnv DATABASE_NAME archaeology
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/archaeology
SetEnv adman_url http://classifieds.about.com/archaeology/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME architecture
SetEnv CLIENT_DISPLAYNAME architecture.about.com
SetEnv DATABASE_NAME architecture
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/architecture
SetEnv adman_url http://classifieds.about.com/architecture/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME architecture
SetEnv CLIENT_DISPLAYNAME architecture.about.com
SetEnv DATABASE_NAME architecture
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/architecture
SetEnv adman_url http://classifieds.about.com/architecture/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME arthistory
SetEnv CLIENT_DISPLAYNAME arthistory.about.com
SetEnv DATABASE_NAME arthistory
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/arthistory
SetEnv adman_url http://classifieds.about.com/arthistory/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME arthistory
SetEnv CLIENT_DISPLAYNAME arthistory.about.com
SetEnv DATABASE_NAME arthistory
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/arthistory
SetEnv adman_url http://classifieds.about.com/arthistory/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME arthritis
SetEnv CLIENT_DISPLAYNAME arthritis.about.com
SetEnv DATABASE_NAME arthritis
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/arthritis
SetEnv adman_url http://classifieds.about.com/arthritis/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME arthritis
SetEnv CLIENT_DISPLAYNAME arthritis.about.com
SetEnv DATABASE_NAME arthritis
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/arthritis
SetEnv adman_url http://classifieds.about.com/arthritis/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME artsandcrafts
SetEnv CLIENT_DISPLAYNAME artsandcrafts.about.com
SetEnv DATABASE_NAME artsandcrafts
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/artsandcrafts
SetEnv adman_url http://classifieds.about.com/artsandcrafts/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME artsandcrafts
SetEnv CLIENT_DISPLAYNAME artsandcrafts.about.com
SetEnv DATABASE_NAME artsandcrafts
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/artsandcrafts
SetEnv adman_url http://classifieds.about.com/artsandcrafts/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME arttech
SetEnv CLIENT_DISPLAYNAME arttech.about.com
SetEnv DATABASE_NAME arttech
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/arttech
SetEnv adman_url http://classifieds.about.com/arttech/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME arttech
SetEnv CLIENT_DISPLAYNAME arttech.about.com
SetEnv DATABASE_NAME arttech
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/arttech
SetEnv adman_url http://classifieds.about.com/arttech/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME asthma
SetEnv CLIENT_DISPLAYNAME asthma.about.com
SetEnv DATABASE_NAME asthma
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/asthma
SetEnv adman_url http://classifieds.about.com/asthma/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME asthma
SetEnv CLIENT_DISPLAYNAME asthma.about.com
SetEnv DATABASE_NAME asthma
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/asthma
SetEnv adman_url http://classifieds.about.com/asthma/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME astrology
SetEnv CLIENT_DISPLAYNAME astrology.about.com
SetEnv DATABASE_NAME astrology
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/astrology
SetEnv adman_url http://classifieds.about.com/astrology/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME astrology
SetEnv CLIENT_DISPLAYNAME astrology.about.com
SetEnv DATABASE_NAME astrology
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/astrology
SetEnv adman_url http://classifieds.about.com/astrology/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME atheism
SetEnv CLIENT_DISPLAYNAME atheism.about.com
SetEnv DATABASE_NAME atheism
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/atheism
SetEnv adman_url http://classifieds.about.com/atheism/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME atheism
SetEnv CLIENT_DISPLAYNAME atheism.about.com
SetEnv DATABASE_NAME atheism
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/atheism
SetEnv adman_url http://classifieds.about.com/atheism/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME atlanta
SetEnv CLIENT_DISPLAYNAME atlanta.about.com
SetEnv DATABASE_NAME atlanta
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/atlanta
SetEnv adman_url http://classifieds.about.com/atlanta/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME atlanta
SetEnv CLIENT_DISPLAYNAME atlanta.about.com
SetEnv DATABASE_NAME atlanta
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/atlanta
SetEnv adman_url http://classifieds.about.com/atlanta/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME autism
SetEnv CLIENT_DISPLAYNAME autism.about.com
SetEnv DATABASE_NAME autism
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/autism
SetEnv adman_url http://classifieds.about.com/autism/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME autism
SetEnv CLIENT_DISPLAYNAME autism.about.com
SetEnv DATABASE_NAME autism
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/autism
SetEnv adman_url http://classifieds.about.com/autism/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME autobuy
SetEnv CLIENT_DISPLAYNAME autobuy.about.com
SetEnv DATABASE_NAME autobuy
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/autobuy
SetEnv adman_url http://classifieds.about.com/autobuy/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME autobuy
SetEnv CLIENT_DISPLAYNAME autobuy.about.com
SetEnv DATABASE_NAME autobuy
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/autobuy
SetEnv adman_url http://classifieds.about.com/autobuy/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME autoracing
SetEnv CLIENT_DISPLAYNAME autoracing.about.com
SetEnv DATABASE_NAME autoracing
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/autoracing
SetEnv adman_url http://classifieds.about.com/autoracing/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME autoracing
SetEnv CLIENT_DISPLAYNAME autoracing.about.com
SetEnv DATABASE_NAME autoracing
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/autoracing
SetEnv adman_url http://classifieds.about.com/autoracing/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME autorepair
SetEnv CLIENT_DISPLAYNAME autorepair.about.com
SetEnv DATABASE_NAME autorepair
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/autorepair
SetEnv adman_url http://classifieds.about.com/autorepair/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME autorepair
SetEnv CLIENT_DISPLAYNAME autorepair.about.com
SetEnv DATABASE_NAME autorepair
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/autorepair
SetEnv adman_url http://classifieds.about.com/autorepair/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME aviation
SetEnv CLIENT_DISPLAYNAME aviation.about.com
SetEnv DATABASE_NAME aviation
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/aviation
SetEnv adman_url http://classifieds.about.com/aviation/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME aviation
SetEnv CLIENT_DISPLAYNAME aviation.about.com
SetEnv DATABASE_NAME aviation
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/aviation
SetEnv adman_url http://classifieds.about.com/aviation/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME babyparenting
SetEnv CLIENT_DISPLAYNAME babyparenting.about.com
SetEnv DATABASE_NAME babyparenting
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/babyparenting
SetEnv adman_url http://classifieds.about.com/babyparenting/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME babyparenting
SetEnv CLIENT_DISPLAYNAME babyparenting.about.com
SetEnv DATABASE_NAME babyparenting
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/babyparenting
SetEnv adman_url http://classifieds.about.com/babyparenting/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME backandneck
SetEnv CLIENT_DISPLAYNAME backandneck.about.com
SetEnv DATABASE_NAME backandneck
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/backandneck
SetEnv adman_url http://classifieds.about.com/backandneck/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME backandneck
SetEnv CLIENT_DISPLAYNAME backandneck.about.com
SetEnv DATABASE_NAME backandneck
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/backandneck
SetEnv adman_url http://classifieds.about.com/backandneck/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME baking
SetEnv CLIENT_DISPLAYNAME baking.about.com
SetEnv DATABASE_NAME baking
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/baking
SetEnv adman_url http://classifieds.about.com/baking/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME baking
SetEnv CLIENT_DISPLAYNAME baking.about.com
SetEnv DATABASE_NAME baking
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/baking
SetEnv adman_url http://classifieds.about.com/baking/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME baltimore
SetEnv CLIENT_DISPLAYNAME baltimore.about.com
SetEnv DATABASE_NAME baltimore
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/baltimore
SetEnv adman_url http://classifieds.about.com/baltimore/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME baltimore
SetEnv CLIENT_DISPLAYNAME baltimore.about.com
SetEnv DATABASE_NAME baltimore
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/baltimore
SetEnv adman_url http://classifieds.about.com/baltimore/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bandb
SetEnv CLIENT_DISPLAYNAME bandb.about.com
SetEnv DATABASE_NAME bandb
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/bandb
SetEnv adman_url http://classifieds.about.com/bandb/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bandb
SetEnv CLIENT_DISPLAYNAME bandb.about.com
SetEnv DATABASE_NAME bandb
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/bandb
SetEnv adman_url http://classifieds.about.com/bandb/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME baseball
SetEnv CLIENT_DISPLAYNAME baseball.about.com
SetEnv DATABASE_NAME baseball
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/baseball
SetEnv adman_url http://classifieds.about.com/baseball/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME baseball
SetEnv CLIENT_DISPLAYNAME baseball.about.com
SetEnv DATABASE_NAME baseball
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/baseball
SetEnv adman_url http://classifieds.about.com/baseball/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bbq
SetEnv CLIENT_DISPLAYNAME bbq.about.com
SetEnv DATABASE_NAME bbq
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/bbq
SetEnv adman_url http://classifieds.about.com/bbq/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bbq
SetEnv CLIENT_DISPLAYNAME bbq.about.com
SetEnv DATABASE_NAME bbq
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/bbq
SetEnv adman_url http://classifieds.about.com/bbq/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME beadwork
SetEnv CLIENT_DISPLAYNAME beadwork.about.com
SetEnv DATABASE_NAME beadwork
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/beadwork
SetEnv adman_url http://classifieds.about.com/beadwork/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME beadwork
SetEnv CLIENT_DISPLAYNAME beadwork.about.com
SetEnv DATABASE_NAME beadwork
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/beadwork
SetEnv adman_url http://classifieds.about.com/beadwork/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME beauty
SetEnv CLIENT_DISPLAYNAME beauty.about.com
SetEnv DATABASE_NAME beauty
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/beauty
SetEnv adman_url http://classifieds.about.com/beauty/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME beauty
SetEnv CLIENT_DISPLAYNAME beauty.about.com
SetEnv DATABASE_NAME beauty
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/beauty
SetEnv adman_url http://classifieds.about.com/beauty/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME beginnersinvest
SetEnv CLIENT_DISPLAYNAME beginnersinvest.about.com
SetEnv DATABASE_NAME beginnersinvest
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/beginnersinvest
SetEnv adman_url http://classifieds.about.com/beginnersinvest/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME beginnersinvest
SetEnv CLIENT_DISPLAYNAME beginnersinvest.about.com
SetEnv DATABASE_NAME beginnersinvest
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/beginnersinvest
SetEnv adman_url http://classifieds.about.com/beginnersinvest/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bicycling
SetEnv CLIENT_DISPLAYNAME bicycling.about.com
SetEnv DATABASE_NAME bicycling
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/bicycling
SetEnv adman_url http://classifieds.about.com/bicycling/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bicycling
SetEnv CLIENT_DISPLAYNAME bicycling.about.com
SetEnv DATABASE_NAME bicycling
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/bicycling
SetEnv adman_url http://classifieds.about.com/bicycling/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME biology
SetEnv CLIENT_DISPLAYNAME biology.about.com
SetEnv DATABASE_NAME biology
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/biology
SetEnv adman_url http://classifieds.about.com/biology/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME biology
SetEnv CLIENT_DISPLAYNAME biology.about.com
SetEnv DATABASE_NAME biology
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/biology
SetEnv adman_url http://classifieds.about.com/biology/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME biotech
SetEnv CLIENT_DISPLAYNAME biotech.about.com
SetEnv DATABASE_NAME biotech
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/biotech
SetEnv adman_url http://classifieds.about.com/biotech/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME biotech
SetEnv CLIENT_DISPLAYNAME biotech.about.com
SetEnv DATABASE_NAME biotech
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/biotech
SetEnv adman_url http://classifieds.about.com/biotech/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bipolar
SetEnv CLIENT_DISPLAYNAME bipolar.about.com
SetEnv DATABASE_NAME bipolar
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/bipolar
SetEnv adman_url http://classifieds.about.com/bipolar/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bipolar
SetEnv CLIENT_DISPLAYNAME bipolar.about.com
SetEnv DATABASE_NAME bipolar
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/bipolar
SetEnv adman_url http://classifieds.about.com/bipolar/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME birding
SetEnv CLIENT_DISPLAYNAME birding.about.com
SetEnv DATABASE_NAME birding
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/birding
SetEnv adman_url http://classifieds.about.com/birding/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME birding
SetEnv CLIENT_DISPLAYNAME birding.about.com
SetEnv DATABASE_NAME birding
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/birding
SetEnv adman_url http://classifieds.about.com/birding/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME blues
SetEnv CLIENT_DISPLAYNAME blues.about.com
SetEnv DATABASE_NAME blues
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/blues
SetEnv adman_url http://classifieds.about.com/blues/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME blues
SetEnv CLIENT_DISPLAYNAME blues.about.com
SetEnv DATABASE_NAME blues
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/blues
SetEnv adman_url http://classifieds.about.com/blues/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME boardgames
SetEnv CLIENT_DISPLAYNAME boardgames.about.com
SetEnv DATABASE_NAME boardgames
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/boardgames
SetEnv adman_url http://classifieds.about.com/boardgames/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME boardgames
SetEnv CLIENT_DISPLAYNAME boardgames.about.com
SetEnv DATABASE_NAME boardgames
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/boardgames
SetEnv adman_url http://classifieds.about.com/boardgames/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bodybuilding
SetEnv CLIENT_DISPLAYNAME bodybuilding.about.com
SetEnv DATABASE_NAME bodybuilding
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/bodybuilding
SetEnv adman_url http://classifieds.about.com/bodybuilding/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bodybuilding
SetEnv CLIENT_DISPLAYNAME bodybuilding.about.com
SetEnv DATABASE_NAME bodybuilding
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/bodybuilding
SetEnv adman_url http://classifieds.about.com/bodybuilding/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME boston
SetEnv CLIENT_DISPLAYNAME boston.about.com
SetEnv DATABASE_NAME boston
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/boston
SetEnv adman_url http://classifieds.about.com/boston/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME boston
SetEnv CLIENT_DISPLAYNAME boston.about.com
SetEnv DATABASE_NAME boston
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/boston
SetEnv adman_url http://classifieds.about.com/boston/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME boxing
SetEnv CLIENT_DISPLAYNAME boxing.about.com
SetEnv DATABASE_NAME boxing
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/boxing
SetEnv adman_url http://classifieds.about.com/boxing/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME boxing
SetEnv CLIENT_DISPLAYNAME boxing.about.com
SetEnv DATABASE_NAME boxing
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/boxing
SetEnv adman_url http://classifieds.about.com/boxing/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME breastcancer
SetEnv CLIENT_DISPLAYNAME breastcancer.about.com
SetEnv DATABASE_NAME breastcancer
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/breastcancer
SetEnv adman_url http://classifieds.about.com/breastcancer/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME breastcancer
SetEnv CLIENT_DISPLAYNAME breastcancer.about.com
SetEnv DATABASE_NAME breastcancer
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/breastcancer
SetEnv adman_url http://classifieds.about.com/breastcancer/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME brooklyn
SetEnv CLIENT_DISPLAYNAME brooklyn.about.com
SetEnv DATABASE_NAME brooklyn
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/brooklyn
SetEnv adman_url http://classifieds.about.com/brooklyn/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME brooklyn
SetEnv CLIENT_DISPLAYNAME brooklyn.about.com
SetEnv DATABASE_NAME brooklyn
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/brooklyn
SetEnv adman_url http://classifieds.about.com/brooklyn/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME buddhism
SetEnv CLIENT_DISPLAYNAME buddhism.about.com
SetEnv DATABASE_NAME buddhism
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/buddhism
SetEnv adman_url http://classifieds.about.com/buddhism/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME buddhism
SetEnv CLIENT_DISPLAYNAME buddhism.about.com
SetEnv DATABASE_NAME buddhism
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/buddhism
SetEnv adman_url http://classifieds.about.com/buddhism/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME budgettravel
SetEnv CLIENT_DISPLAYNAME budgettravel.about.com
SetEnv DATABASE_NAME budgettravel
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/budgettravel
SetEnv adman_url http://classifieds.about.com/budgettravel/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME budgettravel
SetEnv CLIENT_DISPLAYNAME budgettravel.about.com
SetEnv DATABASE_NAME budgettravel
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/budgettravel
SetEnv adman_url http://classifieds.about.com/budgettravel/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME businessmajors
SetEnv CLIENT_DISPLAYNAME businessmajors.about.com
SetEnv DATABASE_NAME businessmajors
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/businessmajors
SetEnv adman_url http://classifieds.about.com/businessmajors/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME businessmajors
SetEnv CLIENT_DISPLAYNAME businessmajors.about.com
SetEnv DATABASE_NAME businessmajors
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/businessmajors
SetEnv adman_url http://classifieds.about.com/businessmajors/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME businesssoft
SetEnv CLIENT_DISPLAYNAME businesssoft.about.com
SetEnv DATABASE_NAME businesssoft
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/businesssoft
SetEnv adman_url http://classifieds.about.com/businesssoft/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME businesssoft
SetEnv CLIENT_DISPLAYNAME businesssoft.about.com
SetEnv DATABASE_NAME businesssoft
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/businesssoft
SetEnv adman_url http://classifieds.about.com/businesssoft/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME businesstravel
SetEnv CLIENT_DISPLAYNAME businesstravel.about.com
SetEnv DATABASE_NAME businesstravel
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/businesstravel
SetEnv adman_url http://classifieds.about.com/businesstravel/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME businesstravel
SetEnv CLIENT_DISPLAYNAME businesstravel.about.com
SetEnv DATABASE_NAME businesstravel
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/businesstravel
SetEnv adman_url http://classifieds.about.com/businesstravel/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME busycooks
SetEnv CLIENT_DISPLAYNAME busycooks.about.com
SetEnv DATABASE_NAME busycooks
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/busycooks
SetEnv adman_url http://classifieds.about.com/busycooks/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME busycooks
SetEnv CLIENT_DISPLAYNAME busycooks.about.com
SetEnv DATABASE_NAME busycooks
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/busycooks
SetEnv adman_url http://classifieds.about.com/busycooks/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME motorcycles
SetEnv CLIENT_DISPLAYNAME motorcycles.about.com
SetEnv DATABASE_NAME motorcycles
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/motorcycles
SetEnv adman_url http://classifieds.about.com/motorcycles/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME motorcycles
SetEnv CLIENT_DISPLAYNAME motorcycles.about.com
SetEnv DATABASE_NAME motorcycles
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/motorcycles
SetEnv adman_url http://classifieds.about.com/motorcycles/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME exercise
SetEnv CLIENT_DISPLAYNAME exercise.about.com
SetEnv DATABASE_NAME exercise
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/exercise
SetEnv adman_url http://classifieds.about.com/exercise/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME exercise
SetEnv CLIENT_DISPLAYNAME exercise.about.com
SetEnv DATABASE_NAME exercise
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/exercise
SetEnv adman_url http://classifieds.about.com/exercise/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME weightloss
SetEnv CLIENT_DISPLAYNAME weightloss.about.com
SetEnv DATABASE_NAME weightloss
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/weightloss
SetEnv adman_url http://classifieds.about.com/weightloss/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME weightloss
SetEnv CLIENT_DISPLAYNAME weightloss.about.com
SetEnv DATABASE_NAME weightloss
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/weightloss
SetEnv adman_url http://classifieds.about.com/weightloss/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME austin
SetEnv CLIENT_DISPLAYNAME austin.about.com
SetEnv DATABASE_NAME austin
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/austin
SetEnv adman_url http://classifieds.about.com/austin/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME austin
SetEnv CLIENT_DISPLAYNAME austin.about.com
SetEnv DATABASE_NAME austin
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/austin
SetEnv adman_url http://classifieds.about.com/austin/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME vintagecars
SetEnv CLIENT_DISPLAYNAME vintagecars.about.com
SetEnv DATABASE_NAME vintagecars
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/vintagecars
SetEnv adman_url http://classifieds.about.com/vintagecars/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME vintagecars
SetEnv CLIENT_DISPLAYNAME vintagecars.about.com
SetEnv DATABASE_NAME vintagecars
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/vintagecars
SetEnv adman_url http://classifieds.about.com/vintagecars/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME ecommerce
SetEnv CLIENT_DISPLAYNAME ecommerce.about.com
SetEnv DATABASE_NAME ecommerce
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/ecommerce
SetEnv adman_url http://classifieds.about.com/ecommerce/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME ecommerce
SetEnv CLIENT_DISPLAYNAME ecommerce.about.com
SetEnv DATABASE_NAME ecommerce
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/ecommerce
SetEnv adman_url http://classifieds.about.com/ecommerce/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME email
SetEnv CLIENT_DISPLAYNAME email.about.com
SetEnv DATABASE_NAME email
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/email
SetEnv adman_url http://classifieds.about.com/email/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME email
SetEnv CLIENT_DISPLAYNAME email.about.com
SetEnv DATABASE_NAME email
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/email
SetEnv adman_url http://classifieds.about.com/email/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
ServerName preview.gravitygames.com
ServerAlias gravitygames.com
ServerAlias www.gravitygames.com
DocumentRoot /mnt/www/sites/preview.gravitygames
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.gravitygames/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.gravitygames/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName preview.canoekayak.com
ServerAlias canoekayak.com
DocumentRoot /mnt/www/sites/preview.canoekayak
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.canoekayak/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.canoekayak/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName classifieds.homeandigloo.about.com
Redirect /classifieds_admin http://classifieds.homeandigloo.about.com/ad_manager
DocumentRoot /mnt/www/tools/homeandigloo_classifieds/
# SSLEnable
# SSLCertificateFile /usr/local/ssl/certs/homeandigloo.about.com/cert.cer
# SSLCertificateKeyFile /usr/local/ssl/certs/homeandigloo.about.com/key.pem
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME homeandigloo
SetEnv CLIENT_DISPLAYNAME homeandigloo.about.com
SetEnv DATABASE_NAME homeandigloo
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.homeandigloo.about.com/ad_manager
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_homeandigloo/cincludes/
Alias /includes/ /mnt/www/tools/classifieds/html/includes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Order Deny,Allow
Deny from all
ServerName ca.homeandigloo.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME homeandigloo
SetEnv CLIENT_DISPLAYNAME homeandigloo.about.com
SetEnv DATABASE_NAME homeandigloo
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_homeandigloo
SetEnv NCF_WEB_ROOT http://adlistings.homeandigloo.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.homeandigloo.about.com/ad_manager
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_homeandigloo/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/classifieds/cgi/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName classifieds.history.about.com
Redirect /classifieds_admin http://classifieds.history.about.com/ad_manager
DocumentRoot /mnt/www/tools/history_classifieds/
RewriteEngine on
RewriteRule ^/$ /ad_manager/ad_management
# SSLEnable
# SSLCertificateFile /usr/local/ssl/certs/history.about.com/cert.cer
# SSLCertificateKeyFile /usr/local/ssl/certs/history.about.com/key.pem
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME history
SetEnv CLIENT_DISPLAYNAME history.about.com
SetEnv DATABASE_NAME history
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.history.about.com/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/history_classifieds/cgi/templates/
SetEnv upsell_enabled "1"
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv MERCHANT_ID historyclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_history/cincludes/
# Alias /includes/ /mnt/www/tools/classifieds/html/includes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /dc/ /mnt/abwww/ch/history/dc/
Alias /z/ /mnt/abwww/vdir/z/
Alias /gi/ /mnt/abwww/ch/history/gi/
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Order Deny,Allow
Deny from all
ServerName ca.history.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME history
SetEnv CLIENT_DISPLAYNAME history.about.com
SetEnv DATABASE_NAME history
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_history
SetEnv NCF_WEB_ROOT http://adlistings.history.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.history.about.com/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/history_classifieds/cgi/templates/
SetEnv upsell_enabled "1"
SetEnv MERCHANT_ID historyclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_history/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/classifieds/cgi/
Alias /dc/ /mnt/abwww/ch/history/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME sewing
SetEnv CLIENT_DISPLAYNAME sewing.about.com
SetEnv DATABASE_NAME sewing
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/sewing
SetEnv adman_url http://classifieds.about.com/sewing/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.sewing.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME sewing
SetEnv CLIENT_DISPLAYNAME sewing.about.com
SetEnv DATABASE_NAME sewing
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_sewing
SetEnv NCF_WEB_ROOT http://adlistings.sewing.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/sewing/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled "1"
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_sewing/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/sewing/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName preview.slamonline.com
ServerAlias slamonline.com
ServerAlias www.slamonline.com
DocumentRoot /mnt/www/sites/preview.slamonline
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.slamonline/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.slamonline/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName preview.bflex.thepirtgroup.com
ServerAlias bflex-preview.ops.about.com
ServerAlias bflex.com
ServerAlias www.bflex.com
DocumentRoot /mnt/www/sites/preview.bflex
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.bflex/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.bflex/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName preview.truckinweb.com
ServerAlias truckinweb.com
ServerAlias www.truckinweb.com
DocumentRoot /mnt/www/sites/preview.truckinweb
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.truckinweb/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.truckinweb/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName preview.automobilemag.com
ServerAlias automobilemag.com
ServerAlias www.automobilemag.com
DocumentRoot /mnt/www/sites/preview.automobilemag
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.automobilemag/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.automobilemag/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName preview.newyorkmetro.com
ServerAlias newyorkmetro.com
ServerAlias www.newyorkmetro.com
DocumentRoot /mnt/www/sites/preview.newyorkmetro
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.newyorkmetro/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.newyorkmetro/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
#
#
# ARMResourceString "exnet/nymetro"
# AuthType ARM
# require valid-user
#
#
ServerName preview.bbric2.thepirtgroup.com
DocumentRoot /mnt/www/sites/preview.bbric2
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.bbric2/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.bbric2/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName preview.caraudiomag.com
ServerAlias caraudiomag.com
ServerAlias www.caraudiomag.com
DocumentRoot /mnt/www/sites/preview.caraudiomag
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.caraudiomag/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.caraudiomag/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName preview.qabricolage.ops.about.com
ServerAlias qabricolage.com
ServerAlias www.qabricolage.com
DocumentRoot /mnt/www/sites/preview.qabricolage
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.qabricolage/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.qabricolage/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName postad.equisearch.about.com
ServerAlias postad.equisearch.about.com
Redirect /classifieds_admin http://postad.equisearch.about.com/ad_manager
Redirect /bizdir/classifieds_admin http://postad.equisearch.about.com/bizdir/ad_manager
DocumentRoot /mnt/www/tools/equisearch_classifieds/
RewriteEngine on
RewriteRule ^/$ /ad_manager/ad_management
RewriteRule ^/bizdir/$ /bizdir/ad_manager/ad_management
# SSLEnable
# SSLCertificateFile /usr/local/ssl/certs/postad.equisearch.about.com/cert.cer
# SSLCertificateKeyFile /usr/local/ssl/certs/postad.equisearch.about.com/key.pem
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME equisearch
SetEnv CLIENT_DISPLAYNAME equisearch.com
SetEnv DATABASE_NAME equisearch
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://postad.equisearch.about.com/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/equisearch_classifieds/cgi/templates/
SetEnv upsell_enabled "1"
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_equisearch/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /dc/ /mnt/www/sites/al_equisearch/cincludes/
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Order Deny,Allow
Deny from all
SetEnv DATABASE_NAME equisearchbiz
SetEnv adman_url http://postad.equisearch.about.com/bizdir/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/equisearch_classifieds/bizdir/cgi/templates/
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Order Deny,Allow
Deny from all
ServerName ca.equisearch.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME equisearch
SetEnv CLIENT_DISPLAYNAME equisearch.com
SetEnv DATABASE_NAME equisearch
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_equisearch
SetEnv NCF_WEB_ROOT http://classifieds.equisearch.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://postad.equisearch.about.com/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/equisearch_classifieds/cgi/templates/
SetEnv upsell_enabled "1"
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_equisearch/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/classifieds/cgi/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ARMAccessControl Off
ARMAuthentication On
ARMAuthorization On
ARMAuthoritative On
ARMResourceString intra/classifieds/equisearch
AuthType ARM
require valid-user
ServerName ca-biz.equisearch.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME equisearchbiz
SetEnv CLIENT_DISPLAYNAME equisearch.com
SetEnv DATABASE_NAME equisearchbiz
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_equisearch/bizdir
SetEnv NCF_WEB_ROOT http://businessdirectory.equisearch.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://postad.equisearch.about.com/bizdir/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/equisearch_classifieds/bizdir/cgi/templates/
SetEnv upsell_enabled "1"
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_equisearch/bizdir/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/classifieds/cgi/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ARMAccessControl Off
ARMAuthentication On
ARMAuthorization On
ARMAuthoritative On
ARMResourceString intra/classifieds/equisearch
AuthType ARM
require valid-user
ServerName classifieds.about.com
SSLEnable
SSLCertificateFile /usr/local/ssl/certs/classifieds.com/cert.cer
SSLCertificateKeyFile /usr/local/ssl/certs/classifieds.com/key.pem
SetEnv TOOLNAME classifieds
Redirect /classifieds_admin http://classifieds.about.com/ad_manager
Redirect /gameandfish http://classifieds.history.about.com
DocumentRoot /mnt/www/tools/about_classifieds/
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_motorcycles/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /inc/ /mnt/abwww/guide/
SetEnv admin_email classifieds@about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled "1"
PerlSendHeader On
ProxyPass /t http://clk.about.com
Order Allow,Deny
Allow from all
Options +Includes
DirectoryIndex index.htm
Order Allow,deny
Allow from all
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME 3dgraphics
SetEnv CLIENT_DISPLAYNAME 3dgraphics.about.com
SetEnv DATABASE_NAME 3dgraphics
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/3dgraphics
SetEnv adman_url http://classifieds.about.com/3dgraphics/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME 3dgraphics
SetEnv CLIENT_DISPLAYNAME 3dgraphics.about.com
SetEnv DATABASE_NAME 3dgraphics
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/3dgraphics
SetEnv adman_url http://classifieds.about.com/3dgraphics/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME 4wheeldrive
SetEnv CLIENT_DISPLAYNAME 4wheeldrive.about.com
SetEnv DATABASE_NAME 4wheeldrive
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/4wheeldrive
SetEnv adman_url http://classifieds.about.com/4wheeldrive/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME 4wheeldrive
SetEnv CLIENT_DISPLAYNAME 4wheeldrive.about.com
SetEnv DATABASE_NAME 4wheeldrive
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/4wheeldrive
SetEnv adman_url http://classifieds.about.com/4wheeldrive/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME 712educators
SetEnv CLIENT_DISPLAYNAME 712educators.about.com
SetEnv DATABASE_NAME 712educators
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/712educators
SetEnv adman_url http://classifieds.about.com/712educators/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME 712educators
SetEnv CLIENT_DISPLAYNAME 712educators.about.com
SetEnv DATABASE_NAME 712educators
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/712educators
SetEnv adman_url http://classifieds.about.com/712educators/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME 80music
SetEnv CLIENT_DISPLAYNAME 80music.about.com
SetEnv DATABASE_NAME 80music
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/80music
SetEnv adman_url http://classifieds.about.com/80music/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME 80music
SetEnv CLIENT_DISPLAYNAME 80music.about.com
SetEnv DATABASE_NAME 80music
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/80music
SetEnv adman_url http://classifieds.about.com/80music/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME actionadventure
SetEnv CLIENT_DISPLAYNAME actionadventure.about.com
SetEnv DATABASE_NAME actionadventure
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/actionadventure
SetEnv adman_url http://classifieds.about.com/actionadventure/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME actionadventure
SetEnv CLIENT_DISPLAYNAME actionadventure.about.com
SetEnv DATABASE_NAME actionadventure
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/actionadventure
SetEnv adman_url http://classifieds.about.com/actionadventure/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME actionfigures
SetEnv CLIENT_DISPLAYNAME actionfigures.about.com
SetEnv DATABASE_NAME actionfigures
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/actionfigures
SetEnv adman_url http://classifieds.about.com/actionfigures/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME actionfigures
SetEnv CLIENT_DISPLAYNAME actionfigures.about.com
SetEnv DATABASE_NAME actionfigures
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/actionfigures
SetEnv adman_url http://classifieds.about.com/actionfigures/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME add
SetEnv CLIENT_DISPLAYNAME add.about.com
SetEnv DATABASE_NAME add
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/add
SetEnv adman_url http://classifieds.about.com/add/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME add
SetEnv CLIENT_DISPLAYNAME add.about.com
SetEnv DATABASE_NAME add
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/add
SetEnv adman_url http://classifieds.about.com/add/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME adoption
SetEnv CLIENT_DISPLAYNAME adoption.about.com
SetEnv DATABASE_NAME adoption
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/adoption
SetEnv adman_url http://classifieds.about.com/adoption/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME adoption
SetEnv CLIENT_DISPLAYNAME adoption.about.com
SetEnv DATABASE_NAME adoption
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/adoption
SetEnv adman_url http://classifieds.about.com/adoption/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME adulted
SetEnv CLIENT_DISPLAYNAME adulted.about.com
SetEnv DATABASE_NAME adulted
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/adulted
SetEnv adman_url http://classifieds.about.com/adulted/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME adulted
SetEnv CLIENT_DISPLAYNAME adulted.about.com
SetEnv DATABASE_NAME adulted
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/adulted
SetEnv adman_url http://classifieds.about.com/adulted/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME adventuretravel
SetEnv CLIENT_DISPLAYNAME adventuretravel.about.com
SetEnv DATABASE_NAME adventuretravel
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/adventuretravel
SetEnv adman_url http://classifieds.about.com/adventuretravel/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME adventuretravel
SetEnv CLIENT_DISPLAYNAME adventuretravel.about.com
SetEnv DATABASE_NAME adventuretravel
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/adventuretravel
SetEnv adman_url http://classifieds.about.com/adventuretravel/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME advertising
SetEnv CLIENT_DISPLAYNAME advertising.about.com
SetEnv DATABASE_NAME advertising
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/advertising
SetEnv adman_url http://classifieds.about.com/advertising/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME advertising
SetEnv CLIENT_DISPLAYNAME advertising.about.com
SetEnv DATABASE_NAME advertising
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/advertising
SetEnv adman_url http://classifieds.about.com/advertising/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME aids
SetEnv CLIENT_DISPLAYNAME aids.about.com
SetEnv DATABASE_NAME aids
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/aids
SetEnv adman_url http://classifieds.about.com/aids/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME aids
SetEnv CLIENT_DISPLAYNAME aids.about.com
SetEnv DATABASE_NAME aids
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/aids
SetEnv adman_url http://classifieds.about.com/aids/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME airtravel
SetEnv CLIENT_DISPLAYNAME airtravel.about.com
SetEnv DATABASE_NAME airtravel
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/airtravel
SetEnv adman_url http://classifieds.about.com/airtravel/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME airtravel
SetEnv CLIENT_DISPLAYNAME airtravel.about.com
SetEnv DATABASE_NAME airtravel
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/airtravel
SetEnv adman_url http://classifieds.about.com/airtravel/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME albany
SetEnv CLIENT_DISPLAYNAME albany.about.com
SetEnv DATABASE_NAME albany
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/albany
SetEnv adman_url http://classifieds.about.com/albany/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME albany
SetEnv CLIENT_DISPLAYNAME albany.about.com
SetEnv DATABASE_NAME albany
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/albany
SetEnv adman_url http://classifieds.about.com/albany/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME alcoholism
SetEnv CLIENT_DISPLAYNAME alcoholism.about.com
SetEnv DATABASE_NAME alcoholism
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/alcoholism
SetEnv adman_url http://classifieds.about.com/alcoholism/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME alcoholism
SetEnv CLIENT_DISPLAYNAME alcoholism.about.com
SetEnv DATABASE_NAME alcoholism
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/alcoholism
SetEnv adman_url http://classifieds.about.com/alcoholism/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME allergies
SetEnv CLIENT_DISPLAYNAME allergies.about.com
SetEnv DATABASE_NAME allergies
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/allergies
SetEnv adman_url http://classifieds.about.com/allergies/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME allergies
SetEnv CLIENT_DISPLAYNAME allergies.about.com
SetEnv DATABASE_NAME allergies
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/allergies
SetEnv adman_url http://classifieds.about.com/allergies/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME allmychildren
SetEnv CLIENT_DISPLAYNAME allmychildren.about.com
SetEnv DATABASE_NAME allmychildren
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/allmychildren
SetEnv adman_url http://classifieds.about.com/allmychildren/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME allmychildren
SetEnv CLIENT_DISPLAYNAME allmychildren.about.com
SetEnv DATABASE_NAME allmychildren
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/allmychildren
SetEnv adman_url http://classifieds.about.com/allmychildren/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME altmedicine
SetEnv CLIENT_DISPLAYNAME altmedicine.about.com
SetEnv DATABASE_NAME altmedicine
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/altmedicine
SetEnv adman_url http://classifieds.about.com/altmedicine/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME altmedicine
SetEnv CLIENT_DISPLAYNAME altmedicine.about.com
SetEnv DATABASE_NAME altmedicine
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/altmedicine
SetEnv adman_url http://classifieds.about.com/altmedicine/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME altmusic
SetEnv CLIENT_DISPLAYNAME altmusic.about.com
SetEnv DATABASE_NAME altmusic
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/altmusic
SetEnv adman_url http://classifieds.about.com/altmusic/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME altmusic
SetEnv CLIENT_DISPLAYNAME altmusic.about.com
SetEnv DATABASE_NAME altmusic
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/altmusic
SetEnv adman_url http://classifieds.about.com/altmusic/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME altreligion
SetEnv CLIENT_DISPLAYNAME altreligion.about.com
SetEnv DATABASE_NAME altreligion
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/altreligion
SetEnv adman_url http://classifieds.about.com/altreligion/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME altreligion
SetEnv CLIENT_DISPLAYNAME altreligion.about.com
SetEnv DATABASE_NAME altreligion
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/altreligion
SetEnv adman_url http://classifieds.about.com/altreligion/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME animals
SetEnv CLIENT_DISPLAYNAME animals.about.com
SetEnv DATABASE_NAME animals
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/animals
SetEnv adman_url http://classifieds.about.com/animals/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME animals
SetEnv CLIENT_DISPLAYNAME animals.about.com
SetEnv DATABASE_NAME animals
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/animals
SetEnv adman_url http://classifieds.about.com/animals/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME animatedtv
SetEnv CLIENT_DISPLAYNAME animatedtv.about.com
SetEnv DATABASE_NAME animatedtv
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/animatedtv
SetEnv adman_url http://classifieds.about.com/animatedtv/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME animatedtv
SetEnv CLIENT_DISPLAYNAME animatedtv.about.com
SetEnv DATABASE_NAME animatedtv
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/animatedtv
SetEnv adman_url http://classifieds.about.com/animatedtv/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME animation
SetEnv CLIENT_DISPLAYNAME animation.about.com
SetEnv DATABASE_NAME animation
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/animation
SetEnv adman_url http://classifieds.about.com/animation/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME animation
SetEnv CLIENT_DISPLAYNAME animation.about.com
SetEnv DATABASE_NAME animation
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/animation
SetEnv adman_url http://classifieds.about.com/animation/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME anime
SetEnv CLIENT_DISPLAYNAME anime.about.com
SetEnv DATABASE_NAME anime
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/anime
SetEnv adman_url http://classifieds.about.com/anime/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME anime
SetEnv CLIENT_DISPLAYNAME anime.about.com
SetEnv DATABASE_NAME anime
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/anime
SetEnv adman_url http://classifieds.about.com/anime/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME antiques
SetEnv CLIENT_DISPLAYNAME antiques.about.com
SetEnv DATABASE_NAME antiques
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/antiques
SetEnv adman_url http://classifieds.about.com/antiques/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME antiques
SetEnv CLIENT_DISPLAYNAME antiques.about.com
SetEnv DATABASE_NAME antiques
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/antiques
SetEnv adman_url http://classifieds.about.com/antiques/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME antivirus
SetEnv CLIENT_DISPLAYNAME antivirus.about.com
SetEnv DATABASE_NAME antivirus
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/antivirus
SetEnv adman_url http://classifieds.about.com/antivirus/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME antivirus
SetEnv CLIENT_DISPLAYNAME antivirus.about.com
SetEnv DATABASE_NAME antivirus
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/antivirus
SetEnv adman_url http://classifieds.about.com/antivirus/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME apartments
SetEnv CLIENT_DISPLAYNAME apartments.about.com
SetEnv DATABASE_NAME apartments
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/apartments
SetEnv adman_url http://classifieds.about.com/apartments/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME apartments
SetEnv CLIENT_DISPLAYNAME apartments.about.com
SetEnv DATABASE_NAME apartments
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/apartments
SetEnv adman_url http://classifieds.about.com/apartments/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME archaeology
SetEnv CLIENT_DISPLAYNAME archaeology.about.com
SetEnv DATABASE_NAME archaeology
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/archaeology
SetEnv adman_url http://classifieds.about.com/archaeology/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME archaeology
SetEnv CLIENT_DISPLAYNAME archaeology.about.com
SetEnv DATABASE_NAME archaeology
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/archaeology
SetEnv adman_url http://classifieds.about.com/archaeology/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME architecture
SetEnv CLIENT_DISPLAYNAME architecture.about.com
SetEnv DATABASE_NAME architecture
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/architecture
SetEnv adman_url http://classifieds.about.com/architecture/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME architecture
SetEnv CLIENT_DISPLAYNAME architecture.about.com
SetEnv DATABASE_NAME architecture
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/architecture
SetEnv adman_url http://classifieds.about.com/architecture/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME arthistory
SetEnv CLIENT_DISPLAYNAME arthistory.about.com
SetEnv DATABASE_NAME arthistory
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/arthistory
SetEnv adman_url http://classifieds.about.com/arthistory/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME arthistory
SetEnv CLIENT_DISPLAYNAME arthistory.about.com
SetEnv DATABASE_NAME arthistory
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/arthistory
SetEnv adman_url http://classifieds.about.com/arthistory/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME arthritis
SetEnv CLIENT_DISPLAYNAME arthritis.about.com
SetEnv DATABASE_NAME arthritis
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/arthritis
SetEnv adman_url http://classifieds.about.com/arthritis/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME arthritis
SetEnv CLIENT_DISPLAYNAME arthritis.about.com
SetEnv DATABASE_NAME arthritis
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/arthritis
SetEnv adman_url http://classifieds.about.com/arthritis/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME artsandcrafts
SetEnv CLIENT_DISPLAYNAME artsandcrafts.about.com
SetEnv DATABASE_NAME artsandcrafts
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/artsandcrafts
SetEnv adman_url http://classifieds.about.com/artsandcrafts/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME artsandcrafts
SetEnv CLIENT_DISPLAYNAME artsandcrafts.about.com
SetEnv DATABASE_NAME artsandcrafts
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/artsandcrafts
SetEnv adman_url http://classifieds.about.com/artsandcrafts/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME arttech
SetEnv CLIENT_DISPLAYNAME arttech.about.com
SetEnv DATABASE_NAME arttech
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/arttech
SetEnv adman_url http://classifieds.about.com/arttech/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME arttech
SetEnv CLIENT_DISPLAYNAME arttech.about.com
SetEnv DATABASE_NAME arttech
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/arttech
SetEnv adman_url http://classifieds.about.com/arttech/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME asthma
SetEnv CLIENT_DISPLAYNAME asthma.about.com
SetEnv DATABASE_NAME asthma
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/asthma
SetEnv adman_url http://classifieds.about.com/asthma/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME asthma
SetEnv CLIENT_DISPLAYNAME asthma.about.com
SetEnv DATABASE_NAME asthma
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/asthma
SetEnv adman_url http://classifieds.about.com/asthma/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME astrology
SetEnv CLIENT_DISPLAYNAME astrology.about.com
SetEnv DATABASE_NAME astrology
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/astrology
SetEnv adman_url http://classifieds.about.com/astrology/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME astrology
SetEnv CLIENT_DISPLAYNAME astrology.about.com
SetEnv DATABASE_NAME astrology
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/astrology
SetEnv adman_url http://classifieds.about.com/astrology/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME atheism
SetEnv CLIENT_DISPLAYNAME atheism.about.com
SetEnv DATABASE_NAME atheism
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/atheism
SetEnv adman_url http://classifieds.about.com/atheism/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME atheism
SetEnv CLIENT_DISPLAYNAME atheism.about.com
SetEnv DATABASE_NAME atheism
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/atheism
SetEnv adman_url http://classifieds.about.com/atheism/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME atlanta
SetEnv CLIENT_DISPLAYNAME atlanta.about.com
SetEnv DATABASE_NAME atlanta
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/atlanta
SetEnv adman_url http://classifieds.about.com/atlanta/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME atlanta
SetEnv CLIENT_DISPLAYNAME atlanta.about.com
SetEnv DATABASE_NAME atlanta
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/atlanta
SetEnv adman_url http://classifieds.about.com/atlanta/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME autism
SetEnv CLIENT_DISPLAYNAME autism.about.com
SetEnv DATABASE_NAME autism
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/autism
SetEnv adman_url http://classifieds.about.com/autism/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME autism
SetEnv CLIENT_DISPLAYNAME autism.about.com
SetEnv DATABASE_NAME autism
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/autism
SetEnv adman_url http://classifieds.about.com/autism/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME autobuy
SetEnv CLIENT_DISPLAYNAME autobuy.about.com
SetEnv DATABASE_NAME autobuy
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/autobuy
SetEnv adman_url http://classifieds.about.com/autobuy/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME autobuy
SetEnv CLIENT_DISPLAYNAME autobuy.about.com
SetEnv DATABASE_NAME autobuy
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/autobuy
SetEnv adman_url http://classifieds.about.com/autobuy/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME autoracing
SetEnv CLIENT_DISPLAYNAME autoracing.about.com
SetEnv DATABASE_NAME autoracing
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/autoracing
SetEnv adman_url http://classifieds.about.com/autoracing/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME autoracing
SetEnv CLIENT_DISPLAYNAME autoracing.about.com
SetEnv DATABASE_NAME autoracing
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/autoracing
SetEnv adman_url http://classifieds.about.com/autoracing/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME autorepair
SetEnv CLIENT_DISPLAYNAME autorepair.about.com
SetEnv DATABASE_NAME autorepair
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/autorepair
SetEnv adman_url http://classifieds.about.com/autorepair/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME autorepair
SetEnv CLIENT_DISPLAYNAME autorepair.about.com
SetEnv DATABASE_NAME autorepair
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/autorepair
SetEnv adman_url http://classifieds.about.com/autorepair/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME aviation
SetEnv CLIENT_DISPLAYNAME aviation.about.com
SetEnv DATABASE_NAME aviation
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/aviation
SetEnv adman_url http://classifieds.about.com/aviation/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME aviation
SetEnv CLIENT_DISPLAYNAME aviation.about.com
SetEnv DATABASE_NAME aviation
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/aviation
SetEnv adman_url http://classifieds.about.com/aviation/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME babyparenting
SetEnv CLIENT_DISPLAYNAME babyparenting.about.com
SetEnv DATABASE_NAME babyparenting
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/babyparenting
SetEnv adman_url http://classifieds.about.com/babyparenting/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME babyparenting
SetEnv CLIENT_DISPLAYNAME babyparenting.about.com
SetEnv DATABASE_NAME babyparenting
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/babyparenting
SetEnv adman_url http://classifieds.about.com/babyparenting/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME backandneck
SetEnv CLIENT_DISPLAYNAME backandneck.about.com
SetEnv DATABASE_NAME backandneck
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/backandneck
SetEnv adman_url http://classifieds.about.com/backandneck/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME backandneck
SetEnv CLIENT_DISPLAYNAME backandneck.about.com
SetEnv DATABASE_NAME backandneck
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/backandneck
SetEnv adman_url http://classifieds.about.com/backandneck/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME baking
SetEnv CLIENT_DISPLAYNAME baking.about.com
SetEnv DATABASE_NAME baking
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/baking
SetEnv adman_url http://classifieds.about.com/baking/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME baking
SetEnv CLIENT_DISPLAYNAME baking.about.com
SetEnv DATABASE_NAME baking
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/baking
SetEnv adman_url http://classifieds.about.com/baking/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME baltimore
SetEnv CLIENT_DISPLAYNAME baltimore.about.com
SetEnv DATABASE_NAME baltimore
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/baltimore
SetEnv adman_url http://classifieds.about.com/baltimore/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME baltimore
SetEnv CLIENT_DISPLAYNAME baltimore.about.com
SetEnv DATABASE_NAME baltimore
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/baltimore
SetEnv adman_url http://classifieds.about.com/baltimore/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bandb
SetEnv CLIENT_DISPLAYNAME bandb.about.com
SetEnv DATABASE_NAME bandb
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/bandb
SetEnv adman_url http://classifieds.about.com/bandb/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bandb
SetEnv CLIENT_DISPLAYNAME bandb.about.com
SetEnv DATABASE_NAME bandb
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/bandb
SetEnv adman_url http://classifieds.about.com/bandb/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME baseball
SetEnv CLIENT_DISPLAYNAME baseball.about.com
SetEnv DATABASE_NAME baseball
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/baseball
SetEnv adman_url http://classifieds.about.com/baseball/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME baseball
SetEnv CLIENT_DISPLAYNAME baseball.about.com
SetEnv DATABASE_NAME baseball
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/baseball
SetEnv adman_url http://classifieds.about.com/baseball/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bbq
SetEnv CLIENT_DISPLAYNAME bbq.about.com
SetEnv DATABASE_NAME bbq
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/bbq
SetEnv adman_url http://classifieds.about.com/bbq/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bbq
SetEnv CLIENT_DISPLAYNAME bbq.about.com
SetEnv DATABASE_NAME bbq
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/bbq
SetEnv adman_url http://classifieds.about.com/bbq/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME beadwork
SetEnv CLIENT_DISPLAYNAME beadwork.about.com
SetEnv DATABASE_NAME beadwork
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/beadwork
SetEnv adman_url http://classifieds.about.com/beadwork/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME beadwork
SetEnv CLIENT_DISPLAYNAME beadwork.about.com
SetEnv DATABASE_NAME beadwork
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/beadwork
SetEnv adman_url http://classifieds.about.com/beadwork/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME beauty
SetEnv CLIENT_DISPLAYNAME beauty.about.com
SetEnv DATABASE_NAME beauty
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/beauty
SetEnv adman_url http://classifieds.about.com/beauty/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME beauty
SetEnv CLIENT_DISPLAYNAME beauty.about.com
SetEnv DATABASE_NAME beauty
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/beauty
SetEnv adman_url http://classifieds.about.com/beauty/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME beginnersinvest
SetEnv CLIENT_DISPLAYNAME beginnersinvest.about.com
SetEnv DATABASE_NAME beginnersinvest
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/beginnersinvest
SetEnv adman_url http://classifieds.about.com/beginnersinvest/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME beginnersinvest
SetEnv CLIENT_DISPLAYNAME beginnersinvest.about.com
SetEnv DATABASE_NAME beginnersinvest
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/beginnersinvest
SetEnv adman_url http://classifieds.about.com/beginnersinvest/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bicycling
SetEnv CLIENT_DISPLAYNAME bicycling.about.com
SetEnv DATABASE_NAME bicycling
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/bicycling
SetEnv adman_url http://classifieds.about.com/bicycling/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bicycling
SetEnv CLIENT_DISPLAYNAME bicycling.about.com
SetEnv DATABASE_NAME bicycling
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/bicycling
SetEnv adman_url http://classifieds.about.com/bicycling/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME biology
SetEnv CLIENT_DISPLAYNAME biology.about.com
SetEnv DATABASE_NAME biology
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/biology
SetEnv adman_url http://classifieds.about.com/biology/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME biology
SetEnv CLIENT_DISPLAYNAME biology.about.com
SetEnv DATABASE_NAME biology
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/biology
SetEnv adman_url http://classifieds.about.com/biology/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME biotech
SetEnv CLIENT_DISPLAYNAME biotech.about.com
SetEnv DATABASE_NAME biotech
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/biotech
SetEnv adman_url http://classifieds.about.com/biotech/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME biotech
SetEnv CLIENT_DISPLAYNAME biotech.about.com
SetEnv DATABASE_NAME biotech
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/biotech
SetEnv adman_url http://classifieds.about.com/biotech/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bipolar
SetEnv CLIENT_DISPLAYNAME bipolar.about.com
SetEnv DATABASE_NAME bipolar
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/bipolar
SetEnv adman_url http://classifieds.about.com/bipolar/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bipolar
SetEnv CLIENT_DISPLAYNAME bipolar.about.com
SetEnv DATABASE_NAME bipolar
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/bipolar
SetEnv adman_url http://classifieds.about.com/bipolar/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME birding
SetEnv CLIENT_DISPLAYNAME birding.about.com
SetEnv DATABASE_NAME birding
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/birding
SetEnv adman_url http://classifieds.about.com/birding/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME birding
SetEnv CLIENT_DISPLAYNAME birding.about.com
SetEnv DATABASE_NAME birding
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/birding
SetEnv adman_url http://classifieds.about.com/birding/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME blues
SetEnv CLIENT_DISPLAYNAME blues.about.com
SetEnv DATABASE_NAME blues
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/blues
SetEnv adman_url http://classifieds.about.com/blues/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME blues
SetEnv CLIENT_DISPLAYNAME blues.about.com
SetEnv DATABASE_NAME blues
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/blues
SetEnv adman_url http://classifieds.about.com/blues/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME boardgames
SetEnv CLIENT_DISPLAYNAME boardgames.about.com
SetEnv DATABASE_NAME boardgames
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/boardgames
SetEnv adman_url http://classifieds.about.com/boardgames/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME boardgames
SetEnv CLIENT_DISPLAYNAME boardgames.about.com
SetEnv DATABASE_NAME boardgames
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/boardgames
SetEnv adman_url http://classifieds.about.com/boardgames/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bodybuilding
SetEnv CLIENT_DISPLAYNAME bodybuilding.about.com
SetEnv DATABASE_NAME bodybuilding
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/bodybuilding
SetEnv adman_url http://classifieds.about.com/bodybuilding/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bodybuilding
SetEnv CLIENT_DISPLAYNAME bodybuilding.about.com
SetEnv DATABASE_NAME bodybuilding
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/bodybuilding
SetEnv adman_url http://classifieds.about.com/bodybuilding/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME boston
SetEnv CLIENT_DISPLAYNAME boston.about.com
SetEnv DATABASE_NAME boston
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/boston
SetEnv adman_url http://classifieds.about.com/boston/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME boston
SetEnv CLIENT_DISPLAYNAME boston.about.com
SetEnv DATABASE_NAME boston
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/boston
SetEnv adman_url http://classifieds.about.com/boston/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME boxing
SetEnv CLIENT_DISPLAYNAME boxing.about.com
SetEnv DATABASE_NAME boxing
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/boxing
SetEnv adman_url http://classifieds.about.com/boxing/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME boxing
SetEnv CLIENT_DISPLAYNAME boxing.about.com
SetEnv DATABASE_NAME boxing
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/boxing
SetEnv adman_url http://classifieds.about.com/boxing/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME breastcancer
SetEnv CLIENT_DISPLAYNAME breastcancer.about.com
SetEnv DATABASE_NAME breastcancer
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/breastcancer
SetEnv adman_url http://classifieds.about.com/breastcancer/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME breastcancer
SetEnv CLIENT_DISPLAYNAME breastcancer.about.com
SetEnv DATABASE_NAME breastcancer
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/breastcancer
SetEnv adman_url http://classifieds.about.com/breastcancer/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME brooklyn
SetEnv CLIENT_DISPLAYNAME brooklyn.about.com
SetEnv DATABASE_NAME brooklyn
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/brooklyn
SetEnv adman_url http://classifieds.about.com/brooklyn/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME brooklyn
SetEnv CLIENT_DISPLAYNAME brooklyn.about.com
SetEnv DATABASE_NAME brooklyn
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/brooklyn
SetEnv adman_url http://classifieds.about.com/brooklyn/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME buddhism
SetEnv CLIENT_DISPLAYNAME buddhism.about.com
SetEnv DATABASE_NAME buddhism
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/buddhism
SetEnv adman_url http://classifieds.about.com/buddhism/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME buddhism
SetEnv CLIENT_DISPLAYNAME buddhism.about.com
SetEnv DATABASE_NAME buddhism
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/buddhism
SetEnv adman_url http://classifieds.about.com/buddhism/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME budgettravel
SetEnv CLIENT_DISPLAYNAME budgettravel.about.com
SetEnv DATABASE_NAME budgettravel
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/budgettravel
SetEnv adman_url http://classifieds.about.com/budgettravel/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME budgettravel
SetEnv CLIENT_DISPLAYNAME budgettravel.about.com
SetEnv DATABASE_NAME budgettravel
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/budgettravel
SetEnv adman_url http://classifieds.about.com/budgettravel/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME businessmajors
SetEnv CLIENT_DISPLAYNAME businessmajors.about.com
SetEnv DATABASE_NAME businessmajors
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/businessmajors
SetEnv adman_url http://classifieds.about.com/businessmajors/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME businessmajors
SetEnv CLIENT_DISPLAYNAME businessmajors.about.com
SetEnv DATABASE_NAME businessmajors
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/businessmajors
SetEnv adman_url http://classifieds.about.com/businessmajors/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME businesssoft
SetEnv CLIENT_DISPLAYNAME businesssoft.about.com
SetEnv DATABASE_NAME businesssoft
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/businesssoft
SetEnv adman_url http://classifieds.about.com/businesssoft/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME businesssoft
SetEnv CLIENT_DISPLAYNAME businesssoft.about.com
SetEnv DATABASE_NAME businesssoft
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/businesssoft
SetEnv adman_url http://classifieds.about.com/businesssoft/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME businesstravel
SetEnv CLIENT_DISPLAYNAME businesstravel.about.com
SetEnv DATABASE_NAME businesstravel
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/businesstravel
SetEnv adman_url http://classifieds.about.com/businesstravel/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME businesstravel
SetEnv CLIENT_DISPLAYNAME businesstravel.about.com
SetEnv DATABASE_NAME businesstravel
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/businesstravel
SetEnv adman_url http://classifieds.about.com/businesstravel/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME busycooks
SetEnv CLIENT_DISPLAYNAME busycooks.about.com
SetEnv DATABASE_NAME busycooks
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/busycooks
SetEnv adman_url http://classifieds.about.com/busycooks/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME busycooks
SetEnv CLIENT_DISPLAYNAME busycooks.about.com
SetEnv DATABASE_NAME busycooks
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/busycooks
SetEnv adman_url http://classifieds.about.com/busycooks/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME motorcycles
SetEnv CLIENT_DISPLAYNAME motorcycles.about.com
SetEnv DATABASE_NAME motorcycles
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/motorcycles
SetEnv adman_url http://classifieds.about.com/motorcycles/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME motorcycles
SetEnv CLIENT_DISPLAYNAME motorcycles.about.com
SetEnv DATABASE_NAME motorcycles
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/motorcycles
SetEnv adman_url http://classifieds.about.com/motorcycles/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME exercise
SetEnv CLIENT_DISPLAYNAME exercise.about.com
SetEnv DATABASE_NAME exercise
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/exercise
SetEnv adman_url http://classifieds.about.com/exercise/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME exercise
SetEnv CLIENT_DISPLAYNAME exercise.about.com
SetEnv DATABASE_NAME exercise
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/exercise
SetEnv adman_url http://classifieds.about.com/exercise/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME weightloss
SetEnv CLIENT_DISPLAYNAME weightloss.about.com
SetEnv DATABASE_NAME weightloss
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/weightloss
SetEnv adman_url http://classifieds.about.com/weightloss/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME weightloss
SetEnv CLIENT_DISPLAYNAME weightloss.about.com
SetEnv DATABASE_NAME weightloss
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/weightloss
SetEnv adman_url http://classifieds.about.com/weightloss/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME austin
SetEnv CLIENT_DISPLAYNAME austin.about.com
SetEnv DATABASE_NAME austin
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/austin
SetEnv adman_url http://classifieds.about.com/austin/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME austin
SetEnv CLIENT_DISPLAYNAME austin.about.com
SetEnv DATABASE_NAME austin
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/austin
SetEnv adman_url http://classifieds.about.com/austin/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME vintagecars
SetEnv CLIENT_DISPLAYNAME vintagecars.about.com
SetEnv DATABASE_NAME vintagecars
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/vintagecars
SetEnv adman_url http://classifieds.about.com/vintagecars/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME vintagecars
SetEnv CLIENT_DISPLAYNAME vintagecars.about.com
SetEnv DATABASE_NAME vintagecars
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/vintagecars
SetEnv adman_url http://classifieds.about.com/vintagecars/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME ecommerce
SetEnv CLIENT_DISPLAYNAME ecommerce.about.com
SetEnv DATABASE_NAME ecommerce
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/ecommerce
SetEnv adman_url http://classifieds.about.com/ecommerce/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME ecommerce
SetEnv CLIENT_DISPLAYNAME ecommerce.about.com
SetEnv DATABASE_NAME ecommerce
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/ecommerce
SetEnv adman_url http://classifieds.about.com/ecommerce/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME email
SetEnv CLIENT_DISPLAYNAME email.about.com
SetEnv DATABASE_NAME email
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/email
SetEnv adman_url http://classifieds.about.com/email/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME email
SetEnv CLIENT_DISPLAYNAME email.about.com
SetEnv DATABASE_NAME email
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv PRE_INC /inc/email
SetEnv adman_url http://classifieds.about.com/email/ad_manager
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex upseller
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
ServerName preview.equisearch.com
ServerAlias equisearch.com
ServerAlias www.equisearch.com
ErrorDocument 404 http://www.equisearch.com
DocumentRoot /mnt/www/sites/preview.equisearch
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.equisearch/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.equisearch/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName preview.enthusiast.thepirtgroup.com
ServerAlias enthusiast.thepirtgroup.com
ServerAlias www.enthusiast.thepirtgroup.com
ErrorDocument 404 http://www.enthusiast.thepirtgroup.com
DocumentRoot /mnt/www/sites/preview.enthusiast
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.enthusiast/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.enthusiast/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName ca.3dgraphics.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME 3dgraphics
SetEnv CLIENT_DISPLAYNAME 3dgraphics.about.com
SetEnv DATABASE_NAME 3dgraphics
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_3dgraphics
SetEnv NCF_WEB_ROOT http://adlistings.3dgraphics.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/3dgraphics/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_3dgraphics/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/3dgraphics/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.4wheeldrive.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME 4wheeldrive
SetEnv CLIENT_DISPLAYNAME 4wheeldrive.about.com
SetEnv DATABASE_NAME 4wheeldrive
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_4wheeldrive
SetEnv NCF_WEB_ROOT http://adlistings.4wheeldrive.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/4wheeldrive/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_4wheeldrive/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/4wheeldrive/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.712educators.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME 712educators
SetEnv CLIENT_DISPLAYNAME 712educators.about.com
SetEnv DATABASE_NAME 712educators
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_712educators
SetEnv NCF_WEB_ROOT http://adlistings.712educators.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/712educators/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_712educators/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/712educators/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.80music.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME 80music
SetEnv CLIENT_DISPLAYNAME 80music.about.com
SetEnv DATABASE_NAME 80music
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_80music
SetEnv NCF_WEB_ROOT http://adlistings.80music.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/80music/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_80music/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/80music/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.actionadventure.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME actionadventure
SetEnv CLIENT_DISPLAYNAME actionadventure.about.com
SetEnv DATABASE_NAME actionadventure
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_actionadventure
SetEnv NCF_WEB_ROOT http://adlistings.actionadventure.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/actionadventure/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_actionadventure/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/actionadventure/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.actionfigures.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME actionfigures
SetEnv CLIENT_DISPLAYNAME actionfigures.about.com
SetEnv DATABASE_NAME actionfigures
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_actionfigures
SetEnv NCF_WEB_ROOT http://adlistings.actionfigures.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/actionfigures/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_actionfigures/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/actionfigures/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.add.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME add
SetEnv CLIENT_DISPLAYNAME add.about.com
SetEnv DATABASE_NAME add
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_add
SetEnv NCF_WEB_ROOT http://adlistings.add.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/add/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_add/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/add/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.adoption.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME adoption
SetEnv CLIENT_DISPLAYNAME adoption.about.com
SetEnv DATABASE_NAME adoption
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_adoption
SetEnv NCF_WEB_ROOT http://adlistings.adoption.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/adoption/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_adoption/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/adoption/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.adulted.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME adulted
SetEnv CLIENT_DISPLAYNAME adulted.about.com
SetEnv DATABASE_NAME adulted
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_adulted
SetEnv NCF_WEB_ROOT http://adlistings.adulted.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/adulted/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_adulted/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/adulted/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.adventuretravel.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME adventuretravel
SetEnv CLIENT_DISPLAYNAME adventuretravel.about.com
SetEnv DATABASE_NAME adventuretravel
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_adventuretravel
SetEnv NCF_WEB_ROOT http://adlistings.adventuretravel.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/adventuretravel/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_adventuretravel/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/adventuretravel/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.advertising.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME advertising
SetEnv CLIENT_DISPLAYNAME advertising.about.com
SetEnv DATABASE_NAME advertising
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_advertising
SetEnv NCF_WEB_ROOT http://adlistings.advertising.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/advertising/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_advertising/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/advertising/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.aids.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME aids
SetEnv CLIENT_DISPLAYNAME aids.about.com
SetEnv DATABASE_NAME aids
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_aids
SetEnv NCF_WEB_ROOT http://adlistings.aids.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/aids/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_aids/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/aids/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.airtravel.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME airtravel
SetEnv CLIENT_DISPLAYNAME airtravel.about.com
SetEnv DATABASE_NAME airtravel
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_airtravel
SetEnv NCF_WEB_ROOT http://adlistings.airtravel.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/airtravel/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_airtravel/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/airtravel/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.albany.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME albany
SetEnv CLIENT_DISPLAYNAME albany.about.com
SetEnv DATABASE_NAME albany
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_albany
SetEnv NCF_WEB_ROOT http://adlistings.albany.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/albany/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_albany/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/albany/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.alcoholism.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME alcoholism
SetEnv CLIENT_DISPLAYNAME alcoholism.about.com
SetEnv DATABASE_NAME alcoholism
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_alcoholism
SetEnv NCF_WEB_ROOT http://adlistings.alcoholism.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/alcoholism/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_alcoholism/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/alcoholism/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.allergies.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME allergies
SetEnv CLIENT_DISPLAYNAME allergies.about.com
SetEnv DATABASE_NAME allergies
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_allergies
SetEnv NCF_WEB_ROOT http://adlistings.allergies.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/allergies/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_allergies/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/allergies/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.allmychildren.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME allmychildren
SetEnv CLIENT_DISPLAYNAME allmychildren.about.com
SetEnv DATABASE_NAME allmychildren
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_allmychildren
SetEnv NCF_WEB_ROOT http://adlistings.allmychildren.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/allmychildren/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_allmychildren/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/allmychildren/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.altmedicine.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME altmedicine
SetEnv CLIENT_DISPLAYNAME altmedicine.about.com
SetEnv DATABASE_NAME altmedicine
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_altmedicine
SetEnv NCF_WEB_ROOT http://adlistings.altmedicine.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/altmedicine/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_altmedicine/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/altmedicine/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.altmusic.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME altmusic
SetEnv CLIENT_DISPLAYNAME altmusic.about.com
SetEnv DATABASE_NAME altmusic
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_altmusic
SetEnv NCF_WEB_ROOT http://adlistings.altmusic.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/altmusic/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_altmusic/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/altmusic/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.altreligion.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME altreligion
SetEnv CLIENT_DISPLAYNAME altreligion.about.com
SetEnv DATABASE_NAME altreligion
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_altreligion
SetEnv NCF_WEB_ROOT http://adlistings.altreligion.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/altreligion/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_altreligion/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/altreligion/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.animals.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME animals
SetEnv CLIENT_DISPLAYNAME animals.about.com
SetEnv DATABASE_NAME animals
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_animals
SetEnv NCF_WEB_ROOT http://adlistings.animals.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/animals/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_animals/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/animals/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.animatedtv.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME animatedtv
SetEnv CLIENT_DISPLAYNAME animatedtv.about.com
SetEnv DATABASE_NAME animatedtv
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_animatedtv
SetEnv NCF_WEB_ROOT http://adlistings.animatedtv.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/animatedtv/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_animatedtv/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/animatedtv/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.animation.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME animation
SetEnv CLIENT_DISPLAYNAME animation.about.com
SetEnv DATABASE_NAME animation
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_animation
SetEnv NCF_WEB_ROOT http://adlistings.animation.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/animation/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_animation/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/animation/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.anime.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME anime
SetEnv CLIENT_DISPLAYNAME anime.about.com
SetEnv DATABASE_NAME anime
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_anime
SetEnv NCF_WEB_ROOT http://adlistings.anime.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/anime/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_anime/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/anime/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.antiques.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME antiques
SetEnv CLIENT_DISPLAYNAME antiques.about.com
SetEnv DATABASE_NAME antiques
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_antiques
SetEnv NCF_WEB_ROOT http://adlistings.antiques.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/antiques/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_antiques/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/antiques/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.antivirus.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME antivirus
SetEnv CLIENT_DISPLAYNAME antivirus.about.com
SetEnv DATABASE_NAME antivirus
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_antivirus
SetEnv NCF_WEB_ROOT http://adlistings.antivirus.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/antivirus/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_antivirus/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/antivirus/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.apartments.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME apartments
SetEnv CLIENT_DISPLAYNAME apartments.about.com
SetEnv DATABASE_NAME apartments
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_apartments
SetEnv NCF_WEB_ROOT http://adlistings.apartments.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/apartments/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_apartments/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/apartments/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.archaeology.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME archaeology
SetEnv CLIENT_DISPLAYNAME archaeology.about.com
SetEnv DATABASE_NAME archaeology
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_archaeology
SetEnv NCF_WEB_ROOT http://adlistings.archaeology.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/archaeology/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_archaeology/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/archaeology/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.architecture.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME architecture
SetEnv CLIENT_DISPLAYNAME architecture.about.com
SetEnv DATABASE_NAME architecture
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_architecture
SetEnv NCF_WEB_ROOT http://adlistings.architecture.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/architecture/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_architecture/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/architecture/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.arthistory.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME arthistory
SetEnv CLIENT_DISPLAYNAME arthistory.about.com
SetEnv DATABASE_NAME arthistory
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_arthistory
SetEnv NCF_WEB_ROOT http://adlistings.arthistory.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/arthistory/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_arthistory/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/arthistory/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.arthritis.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME arthritis
SetEnv CLIENT_DISPLAYNAME arthritis.about.com
SetEnv DATABASE_NAME arthritis
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_arthritis
SetEnv NCF_WEB_ROOT http://adlistings.arthritis.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/arthritis/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_arthritis/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/arthritis/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.artsandcrafts.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME artsandcrafts
SetEnv CLIENT_DISPLAYNAME artsandcrafts.about.com
SetEnv DATABASE_NAME artsandcrafts
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_artsandcrafts
SetEnv NCF_WEB_ROOT http://adlistings.artsandcrafts.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/artsandcrafts/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_artsandcrafts/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/artsandcrafts/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.arttech.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME arttech
SetEnv CLIENT_DISPLAYNAME arttech.about.com
SetEnv DATABASE_NAME arttech
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_arttech
SetEnv NCF_WEB_ROOT http://adlistings.arttech.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/arttech/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_arttech/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/arttech/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.asthma.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME asthma
SetEnv CLIENT_DISPLAYNAME asthma.about.com
SetEnv DATABASE_NAME asthma
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_asthma
SetEnv NCF_WEB_ROOT http://adlistings.asthma.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/asthma/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_asthma/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/asthma/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.astrology.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME astrology
SetEnv CLIENT_DISPLAYNAME astrology.about.com
SetEnv DATABASE_NAME astrology
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_astrology
SetEnv NCF_WEB_ROOT http://adlistings.astrology.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/astrology/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_astrology/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/astrology/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.atheism.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME atheism
SetEnv CLIENT_DISPLAYNAME atheism.about.com
SetEnv DATABASE_NAME atheism
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_atheism
SetEnv NCF_WEB_ROOT http://adlistings.atheism.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/atheism/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_atheism/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/atheism/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.atlanta.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME atlanta
SetEnv CLIENT_DISPLAYNAME atlanta.about.com
SetEnv DATABASE_NAME atlanta
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_atlanta
SetEnv NCF_WEB_ROOT http://adlistings.atlanta.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/atlanta/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_atlanta/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/atlanta/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.autism.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME autism
SetEnv CLIENT_DISPLAYNAME autism.about.com
SetEnv DATABASE_NAME autism
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_autism
SetEnv NCF_WEB_ROOT http://adlistings.autism.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/autism/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_autism/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/autism/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.autobuy.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME autobuy
SetEnv CLIENT_DISPLAYNAME autobuy.about.com
SetEnv DATABASE_NAME autobuy
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_autobuy
SetEnv NCF_WEB_ROOT http://adlistings.autobuy.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/autobuy/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_autobuy/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/autobuy/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.autoracing.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME autoracing
SetEnv CLIENT_DISPLAYNAME autoracing.about.com
SetEnv DATABASE_NAME autoracing
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_autoracing
SetEnv NCF_WEB_ROOT http://adlistings.autoracing.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/autoracing/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_autoracing/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/autoracing/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.autorepair.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME autorepair
SetEnv CLIENT_DISPLAYNAME autorepair.about.com
SetEnv DATABASE_NAME autorepair
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_autorepair
SetEnv NCF_WEB_ROOT http://adlistings.autorepair.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/autorepair/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_autorepair/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/autorepair/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.aviation.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME aviation
SetEnv CLIENT_DISPLAYNAME aviation.about.com
SetEnv DATABASE_NAME aviation
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_aviation
SetEnv NCF_WEB_ROOT http://adlistings.aviation.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/aviation/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_aviation/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/aviation/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.babyparenting.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME babyparenting
SetEnv CLIENT_DISPLAYNAME babyparenting.about.com
SetEnv DATABASE_NAME babyparenting
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_babyparenting
SetEnv NCF_WEB_ROOT http://adlistings.babyparenting.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/babyparenting/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_babyparenting/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/babyparenting/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.backandneck.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME backandneck
SetEnv CLIENT_DISPLAYNAME backandneck.about.com
SetEnv DATABASE_NAME backandneck
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_backandneck
SetEnv NCF_WEB_ROOT http://adlistings.backandneck.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/backandneck/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_backandneck/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/backandneck/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.baking.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME baking
SetEnv CLIENT_DISPLAYNAME baking.about.com
SetEnv DATABASE_NAME baking
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_baking
SetEnv NCF_WEB_ROOT http://adlistings.baking.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/baking/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_baking/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/baking/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.baltimore.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME baltimore
SetEnv CLIENT_DISPLAYNAME baltimore.about.com
SetEnv DATABASE_NAME baltimore
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_baltimore
SetEnv NCF_WEB_ROOT http://adlistings.baltimore.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/baltimore/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_baltimore/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/baltimore/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.bandb.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bandb
SetEnv CLIENT_DISPLAYNAME bandb.about.com
SetEnv DATABASE_NAME bandb
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_bandb
SetEnv NCF_WEB_ROOT http://adlistings.bandb.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/bandb/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_bandb/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/bandb/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.baseball.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME baseball
SetEnv CLIENT_DISPLAYNAME baseball.about.com
SetEnv DATABASE_NAME baseball
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_baseball
SetEnv NCF_WEB_ROOT http://adlistings.baseball.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/baseball/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_baseball/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/baseball/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.bbq.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bbq
SetEnv CLIENT_DISPLAYNAME bbq.about.com
SetEnv DATABASE_NAME bbq
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_bbq
SetEnv NCF_WEB_ROOT http://adlistings.bbq.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/bbq/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_bbq/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/bbq/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.beadwork.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME beadwork
SetEnv CLIENT_DISPLAYNAME beadwork.about.com
SetEnv DATABASE_NAME beadwork
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_beadwork
SetEnv NCF_WEB_ROOT http://adlistings.beadwork.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/beadwork/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_beadwork/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/beadwork/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.beauty.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME beauty
SetEnv CLIENT_DISPLAYNAME beauty.about.com
SetEnv DATABASE_NAME beauty
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_beauty
SetEnv NCF_WEB_ROOT http://adlistings.beauty.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/beauty/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_beauty/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/beauty/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.beginnersinvest.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME beginnersinvest
SetEnv CLIENT_DISPLAYNAME beginnersinvest.about.com
SetEnv DATABASE_NAME beginnersinvest
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_beginnersinvest
SetEnv NCF_WEB_ROOT http://adlistings.beginnersinvest.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/beginnersinvest/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_beginnersinvest/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/beginnersinvest/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.bicycling.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bicycling
SetEnv CLIENT_DISPLAYNAME bicycling.about.com
SetEnv DATABASE_NAME bicycling
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_bicycling
SetEnv NCF_WEB_ROOT http://adlistings.bicycling.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/bicycling/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_bicycling/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/bicycling/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.biology.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME biology
SetEnv CLIENT_DISPLAYNAME biology.about.com
SetEnv DATABASE_NAME biology
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_biology
SetEnv NCF_WEB_ROOT http://adlistings.biology.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/biology/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_biology/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/biology/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.biotech.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME biotech
SetEnv CLIENT_DISPLAYNAME biotech.about.com
SetEnv DATABASE_NAME biotech
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_biotech
SetEnv NCF_WEB_ROOT http://adlistings.biotech.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/biotech/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_biotech/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/biotech/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.bipolar.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bipolar
SetEnv CLIENT_DISPLAYNAME bipolar.about.com
SetEnv DATABASE_NAME bipolar
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_bipolar
SetEnv NCF_WEB_ROOT http://adlistings.bipolar.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/bipolar/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_bipolar/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/bipolar/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.birding.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME birding
SetEnv CLIENT_DISPLAYNAME birding.about.com
SetEnv DATABASE_NAME birding
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_birding
SetEnv NCF_WEB_ROOT http://adlistings.birding.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/birding/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_birding/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/birding/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.blues.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME blues
SetEnv CLIENT_DISPLAYNAME blues.about.com
SetEnv DATABASE_NAME blues
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_blues
SetEnv NCF_WEB_ROOT http://adlistings.blues.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/blues/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_blues/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/blues/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.boardgames.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME boardgames
SetEnv CLIENT_DISPLAYNAME boardgames.about.com
SetEnv DATABASE_NAME boardgames
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_boardgames
SetEnv NCF_WEB_ROOT http://adlistings.boardgames.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/boardgames/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_boardgames/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/boardgames/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.bodybuilding.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME bodybuilding
SetEnv CLIENT_DISPLAYNAME bodybuilding.about.com
SetEnv DATABASE_NAME bodybuilding
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_bodybuilding
SetEnv NCF_WEB_ROOT http://adlistings.bodybuilding.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/bodybuilding/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_bodybuilding/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/bodybuilding/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.boston.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME boston
SetEnv CLIENT_DISPLAYNAME boston.about.com
SetEnv DATABASE_NAME boston
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_boston
SetEnv NCF_WEB_ROOT http://adlistings.boston.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/boston/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_boston/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/boston/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.boxing.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME boxing
SetEnv CLIENT_DISPLAYNAME boxing.about.com
SetEnv DATABASE_NAME boxing
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_boxing
SetEnv NCF_WEB_ROOT http://adlistings.boxing.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/boxing/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_boxing/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/boxing/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.breastcancer.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME breastcancer
SetEnv CLIENT_DISPLAYNAME breastcancer.about.com
SetEnv DATABASE_NAME breastcancer
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_breastcancer
SetEnv NCF_WEB_ROOT http://adlistings.breastcancer.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/breastcancer/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_breastcancer/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/breastcancer/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.brooklyn.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME brooklyn
SetEnv CLIENT_DISPLAYNAME brooklyn.about.com
SetEnv DATABASE_NAME brooklyn
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_brooklyn
SetEnv NCF_WEB_ROOT http://adlistings.brooklyn.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/brooklyn/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_brooklyn/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/brooklyn/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.buddhism.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME buddhism
SetEnv CLIENT_DISPLAYNAME buddhism.about.com
SetEnv DATABASE_NAME buddhism
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_buddhism
SetEnv NCF_WEB_ROOT http://adlistings.buddhism.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/buddhism/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_buddhism/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/buddhism/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.budgettravel.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME budgettravel
SetEnv CLIENT_DISPLAYNAME budgettravel.about.com
SetEnv DATABASE_NAME budgettravel
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_budgettravel
SetEnv NCF_WEB_ROOT http://adlistings.budgettravel.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/budgettravel/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_budgettravel/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/budgettravel/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.businessmajors.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME businessmajors
SetEnv CLIENT_DISPLAYNAME businessmajors.about.com
SetEnv DATABASE_NAME businessmajors
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_businessmajors
SetEnv NCF_WEB_ROOT http://adlistings.businessmajors.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/businessmajors/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_businessmajors/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/businessmajors/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.businesssoft.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME businesssoft
SetEnv CLIENT_DISPLAYNAME businesssoft.about.com
SetEnv DATABASE_NAME businesssoft
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_businesssoft
SetEnv NCF_WEB_ROOT http://adlistings.businesssoft.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/businesssoft/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_businesssoft/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/businesssoft/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.businesstravel.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME businesstravel
SetEnv CLIENT_DISPLAYNAME businesstravel.about.com
SetEnv DATABASE_NAME businesstravel
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_businesstravel
SetEnv NCF_WEB_ROOT http://adlistings.businesstravel.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/businesstravel/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_businesstravel/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/businesstravel/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.busycooks.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME busycooks
SetEnv CLIENT_DISPLAYNAME busycooks.about.com
SetEnv DATABASE_NAME busycooks
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_busycooks
SetEnv NCF_WEB_ROOT http://adlistings.busycooks.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/busycooks/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_busycooks/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/busycooks/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.motorcycles.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME motorcycles
SetEnv CLIENT_DISPLAYNAME motorcycles.about.com
SetEnv DATABASE_NAME motorcycles
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_motorcycles
SetEnv NCF_WEB_ROOT http://adlistings.motorcycles.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/motorcycles/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_motorcycles/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/motorcycles/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName preview.btest1.thepirtgroup.com
ServerAlias btest1.thepirtgroup.com
ServerAlias www.btest1.thepirtgroup.com
ErrorDocument 404 http://www.btest1.thepirtgroup.com
DocumentRoot /mnt/www/sites/preview.btest1
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.btest1/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.btest1/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName preview.btest2.thepirtgroup.com
ServerAlias btest2.thepirtgroup.com
ServerAlias www.btest2.thepirtgroup.com
ErrorDocument 404 http://www.btest2.thepirtgroup.com
DocumentRoot /mnt/www/sites/preview.btest2
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.btest2/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.btest2/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName preview.btest3.thepirtgroup.com
ServerAlias btest3.thepirtgroup.com
ServerAlias www.btest3.thepirtgroup.com
ErrorDocument 404 http://www.btest3.thepirtgroup.com
DocumentRoot /mnt/www/sites/preview.btest3
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.btest3/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.btest3/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName preview.btest4.thepirtgroup.com
ServerAlias btest4.thepirtgroup.com
ServerAlias www.btest4.thepirtgroup.com
ErrorDocument 404 http://www.btest4.thepirtgroup.com
DocumentRoot /mnt/www/sites/preview.btest4
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.btest4/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.btest4/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName preview.btest5.thepirtgroup.com
ServerAlias btest5.thepirtgroup.com
ServerAlias www.btest5.thepirtgroup.com
ErrorDocument 404 http://www.btest5.thepirtgroup.com
DocumentRoot /mnt/www/sites/preview.btest5
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.btest5/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.btest5/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName preview.btest6.thepirtgroup.com
ServerAlias btest6.thepirtgroup.com
ServerAlias www.btest6.thepirtgroup.com
ErrorDocument 404 http://www.btest6.thepirtgroup.com
DocumentRoot /mnt/www/sites/preview.btest6
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.btest6/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.btest6/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName preview.btest7.thepirtgroup.com
ServerAlias btest7.thepirtgroup.com
ServerAlias www.btest7.thepirtgroup.com
ErrorDocument 404 http://www.btest7.thepirtgroup.com
DocumentRoot /mnt/www/sites/preview.btest7
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.btest7/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.btest7/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName preview.btest8.thepirtgroup.com
ServerAlias btest8.thepirtgroup.com
ServerAlias www.btest8.thepirtgroup.com
ErrorDocument 404 http://www.btest8.thepirtgroup.com
DocumentRoot /mnt/www/sites/preview.btest8
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.btest8/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.btest8/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName preview.btest9.thepirtgroup.com
ServerAlias btest9.thepirtgroup.com
ServerAlias www.btest9.thepirtgroup.com
ErrorDocument 404 http://www.btest9.thepirtgroup.com
DocumentRoot /mnt/www/sites/preview.btest9
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.btest9/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.btest9/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName preview.btest10.thepirtgroup.com
ServerAlias btest10.thepirtgroup.com
ServerAlias www.btest10.thepirtgroup.com
ErrorDocument 404 http://www.btest10.thepirtgroup.com
DocumentRoot /mnt/www/sites/preview.btest10
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.btest10/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.btest10/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName preview.motortrend.com
DocumentRoot /mnt/www/sites/preview.motortrend/motor/
SetEnv SITE_DIR_NAME "motortrend"
SetEnv SITE_DISPLAY_NAME "Motor Trend"
Options IncludesNOEXEC FollowSymLinks
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.motortrend/motor/cgi-bin
RewriteEngine On
RewriteRule ^/motor$ $1 [R,L]
RewriteRule ^/motor/(.*) /$1 [R,L]
RewriteRule ^/truck$ http://preview.trucktrend.com [R,L]
RewriteRule ^/truck/(.*) http://preview.trucktrend.com/$1 [R,L]
ServerName preview.trucktrend.com
DocumentRoot /mnt/www/sites/preview.motortrend/truck/
SetEnv SITE_DIR_NAME "trucktrend"
SetEnv SITE_DISPLAY_NAME "Truck Trend"
Options IncludesNOEXEC FollowSymLinks
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.motortrend/truck/cgi-bin
RewriteEngine On
RewriteRule ^/truck$ $1 [R,L]
RewriteRule ^/truck/(.*) /$1 [R,L]
RewriteRule ^/motor$ http://preview.motortrend.com [R,L]
RewriteRule ^/motor/(.*) http://preview.motortrend.com/$1 [R,L]
ServerName preview.surfermag.com
ServerAlias surfermag.com
ServerAlias www.surfermag.com
DocumentRoot /mnt/www/sites/preview.surfermag
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.surfermag/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.surfermag/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName preview.anaheim.com
ServerAlias anaheim.com
ServerAlias www.anaheim.com
ErrorDocument 404 http://www.anaheim.com
DocumentRoot /mnt/www/sites/preview.anaheim
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.anaheim/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.anaheim/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName preview.importtuner.com
ServerAlias importtuner.com
ServerAlias www.importtuner.com
DocumentRoot /mnt/www/sites/preview.importtuner
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.importtuner/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.importtuner/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName postad.sailmag.about.com
ServerAlias postad.sailmag.about.com
Redirect /classifieds_admin http://postad.sailmag.about.com/ad_manager
DocumentRoot /mnt/www/tools/sailmag_classifieds/
RewriteEngine on
RewriteRule ^/$ /ad_manager/ad_management
# SSLEnable
# SSLCertificateFile /usr/local/ssl/certs/postad.sailmag.about.com/cert.cer
# SSLCertificateKeyFile /usr/local/ssl/certs/postad.sailmag.about.com/key.pem
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME sailmag
SetEnv CLIENT_DISPLAYNAME sailmag.com
SetEnv DATABASE_NAME sailmag
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv APP_NAME classifieds
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://postad.sailmag.about.com/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/sailmag_classifieds/cgi/templates/
SetEnv upsell_enabled "1"
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_sailmag/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /dc/ /mnt/www/sites/al_sailmag/cincludes/
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Order Deny,Allow
Deny from all
ServerName ca.sailmag.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME sailmag
SetEnv CLIENT_DISPLAYNAME sailmag.com
SetEnv DATABASE_NAME sailmag
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_sailmag
SetEnv NCF_WEB_ROOT http://classifieds.sailmag.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://postad.sailmag.about.com/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/sailmag_classifieds/cgi/templates/
SetEnv upsell_enabled "1"
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_sailmag/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/classifieds/cgi/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ARMAccessControl Off
ARMAuthentication On
ARMAuthorization On
ARMAuthoritative On
ARMResourceString intra/classifieds/sailmag
AuthType ARM
require valid-user
ServerName ca.exercise.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME exercise
SetEnv CLIENT_DISPLAYNAME exercise.about.com
SetEnv DATABASE_NAME exercise
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_exercise
SetEnv NCF_WEB_ROOT http://adlistings.exercise.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/exercise/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_exercise/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/exercise/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.weightloss.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME weightloss
SetEnv CLIENT_DISPLAYNAME weightloss.about.com
SetEnv DATABASE_NAME weightloss
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_weightloss
SetEnv NCF_WEB_ROOT http://adlistings.weightloss.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/weightloss/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_weightloss/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/weightloss/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.austin.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME austin
SetEnv CLIENT_DISPLAYNAME austin.about.com
SetEnv DATABASE_NAME austin
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_austin
SetEnv NCF_WEB_ROOT http://adlistings.austin.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/austin/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_austin/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/austin/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.vintagecars.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME vintagecars
SetEnv CLIENT_DISPLAYNAME vintagecars.about.com
SetEnv DATABASE_NAME vintagecars
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_vintagecars
SetEnv NCF_WEB_ROOT http://adlistings.vintagecars.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/vintagecars/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_vintagecars/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/vintagecars/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.ecommerce.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME ecommerce
SetEnv CLIENT_DISPLAYNAME ecommerce.about.com
SetEnv DATABASE_NAME ecommerce
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_ecommerce
SetEnv NCF_WEB_ROOT http://adlistings.ecommerce.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/ecommerce/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_ecommerce/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/ecommerce/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName ca.email.about.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME email
SetEnv CLIENT_DISPLAYNAME email.about.com
SetEnv DATABASE_NAME email
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_email
SetEnv NCF_WEB_ROOT http://adlistings.email.about.com
SetEnv admin_email classifieds@about.com
SetEnv adman_url http://classifieds.about.com/email/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/about_classifieds/cgi/templates/
SetEnv upsell_enabled 1
SetEnv MERCHANT_ID aboutclass
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_email/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/about_classifieds/cgi/
Alias /dc/ /mnt/abwww/guide/email/dc/
Alias /z/ /mnt/abwww/vdir/z/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler cgi-script
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ServerName preview.sportrider.com
ServerAlias sportrider.com
ServerAlias www.sportrider.com
DocumentRoot /mnt/www/sites/preview.sportrider
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.sportrider/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.sportrider/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ServerName postad.primediaautomotive.about.com
Redirect /classifieds_admin http://postad.primediaautomotive.about.com/ad_manager
DocumentRoot /mnt/www/tools/primediaautomotive_classifieds/
RewriteEngine on
RewriteRule ^/$ /ad_manager/ad_management
# SSLEnable
# SSLCertificateFile /usr/local/ssl/certs/postad.primediaautomotive.about.com/cert.cer
# SSLCertificateKeyFile /usr/local/ssl/certs/postad.primediaautomotive.about.com/key.pem
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME primediaautomotive
SetEnv CLIENT_DISPLAYNAME primediaautomotive.com
SetEnv DATABASE_NAME primediaautomotive
SetEnv PGHOST bfdb1.ops.about.com
SetEnv PGUSER postgres
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv MERCHANT_ID autoclass
SetEnv APP_NAME classifieds
SetEnv admin_email auto.classifieds@primedia.com
SetEnv adman_url http://postad.primediaautomotive.about.com/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/primediaautomotive_classifieds/cgi/templates/
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_primediaautomotive/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /dc/ /mnt/www/sites/al_primediaautomotive/cincludes/
Alias /z/ /mnt/abwww/vdir/z/
Alias /gi/ /mnt/abwww/guide/primediaautomotive/gi/
AllowOverride None
PerlSetVar login_page /login.htm
PerlAccessHandler vfs_membercode::mem_directory
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
Order Deny,Allow
Deny from all
ServerName ca.primediaautomotive.com
DocumentRoot /mnt/www/tools/classifieds/cgi
SetEnv TOOLNAME classifieds
SetEnv TOOL_DISPLAYNAME Classifieds
SetEnv CLIENTNAME primediaautomotive
SetEnv CLIENT_DISPLAYNAME primediaautomotive.com
SetEnv DATABASE_NAME primediaautomotive
SetEnv APP_NAME classifieds
SetEnv ADMIN 1
SetEnv PGUSER postgres
SetEnv PGHOST bfdb1.ops.about.com
SetEnv CYBERSOURCE_SERVER ics2test.ic3.com
SetEnv MERCHANT_ID autoclass
SetEnv NCF_DOC_ROOT /mnt/www/sites/al_primediaautomotive
SetEnv NCF_WEB_ROOT http://classifieds.primediaautomotive.com
SetEnv admin_email auto.classifieds@primedia.com
SetEnv adman_url http://postad.primediaautomotive.about.com/ad_manager
SetEnv TEMPLATE_PATH /mnt/www/tools/primediaautomotive_classifieds/cgi/templates/
PerlSendHeader On
Alias /ad_images/ /mnt/output/pirt/classifieds/images/
Alias /cincludes/ /mnt/www/sites/al_primediaautomotive/cincludes/
Alias /dc/ /mnt/www/sites/al_primediaautomotive/cincludes/
Alias /images/ /mnt/www/sites/thepirtgroup/images/
Alias /postads/ /mnt/www/tools/classifieds/cgi/
Order allow,deny
Allow from all
DirectoryIndex classifieds_admin
Options +ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
Order allow,deny
Allow from all
Options +Includes
DirectoryIndex ad_management
Options +ExecCGI
#SetHandler cgi-script
SetHandler perl-script
PerlHandler Apache::Registry
ARMAccessControl Off
ARMAuthentication On
ARMAuthorization On
ARMAuthoritative On
ARMResourceString intra/classifieds/primediaautomotive
AuthType ARM
require valid-user
ServerName preview.in-newyorkmag.com
ServerAlias www.preview.in-newyorkmag.com
DocumentRoot /mnt/www/sites/innewyork/
Options IncludesNOEXEC FollowSymLinks
SetEnv SITE_DIR_NAME "innymag"
ARMAccessControl Off
ARMAuthentication On
ARMAuthorization On
ARMAuthoritative On
ARMResourceString "acc/innewyorkmag"
AuthType ARM
require valid-user
ServerName preview.autosoundmag.com
ServerAlias autosoundmag.com
ErrorDocument 404 http://www.autosoundmag.com
ServerAlias www.autosoundmag.com
DocumentRoot /mnt/www/sites/preview.autosoundmag
ProxyPass /cgi-bin http://primecgi.primedia.com/sites/preview.autosoundmag/cgi
ScriptAlias /cgi/ /mnt/www/sites/preview.autosoundmag/cgi/
Options IncludesNOEXEC FollowSymLinks
RewriteEngine Off
ARMAccessControl Off
ARMAuthentication On
ARMAuthorization On
ARMAuthoritative On
ARMResourceString "exnet/autoscms"
AuthType ARM
require valid-user
#=================================================
# LASITES
# The below "Include" should bring up all the LA sites. These include:
# 4wheeloffroad
# carcraft
# chevyhiperformance (note directory name is chevyhigh)
# circletrack
# corvettefever
# customclassictrucks (note directory name is customclassics)
# eurotuner
# fourwheeler
# highperformancepontiac (note directory name is hotrod)
# jpmagazine
# kitcarmag (note directory name is kitcar)
# moparmusclemagazine (note directory name is moparmuscle)
# mustang50magazine (note directory name is mustang50)
# mustangandfords (note directory name is mustangfords)
# mustangmonthly
# rodandcustommagazine (note directory name is rodandcustom)
# sporttruck
# stockcarracing
# superstreetonline (note directory name is superstreet)
#=================================================
#Include conf/hosts/lasites/preview/b-main.inc
#=================================================
# OUTOORS BEST
# www...com file directory name
#-------------------------------------------------
# alabamagameandfish alabamagameandfish
# arkansassportsmanmag arkansassportsman
# bowhunter bowhunter
# bowhuntingmag bowhuntingmag
# californiagameandfish californiagameandfish
# floridagameandfish floridagameandfish
# floridasportsman floridasportsman
# georgiasportsmanmag georgiasportsman
# greatplainsgameandfish greatplainsgameandfish
# gundogmag gundog
# gunsandammomag gunsandammo
# handgunsmag handgunsmag
# huntingmag huntingmag
# illinoisgameandfish illinoisgameandfish
# in-fisherman in-fisherman
# indianagameandfish indianagameandfish
# iowagameandfish iowagameandfish
# kentuckygameandfish kentuckygameandfish
# lagameandfish lagameandfish
# michigansportsmanmag michigansportsman
# midatlanticgameandfish midatlanticgameandfish
# minnesotasportsmanmag minnesotasportsman
# mississippigameandfish mississippigameandfish
# missourigameandfish missourigameandfish
# ncgameandfish ncgameandfish
# newenglandgameandfish newenglandgameandfish
# newyorkgameandfish newyorkgameandfish
# northamericanwhitetail naw
# ohiogameandfish ohiogameandfish
# oklahomagameandfish oklahomagameandfish
# outdoorsbest outdoorsbest
# pagameandfish pagameandfish
# rifleshootermag rifleshooter
# rmgameandfish rmgameandfish
# scgameandfish scgameandfish
# shallowwaterangler shallowwaterangler
# shootingtimes shootingtimes
# shotgunnews shotgunnews
# tennesseesportsmanmag tennesseesportsman
# texassportsmanmag texassportsman
# virginiagameandfish virginiagameandfish
# wildfowlmag wildfowl
# wisconsinsportsmanmag wisconsinsportsman
# wogameandfish wogameandfish
# wvgameandfish wvgameandfish
#Include conf/hosts/ob/preview/b-main.inc
#==================================================
Config-ApacheFormat-1.2/t/error_include.conf 0100644 0000764 0000765 00000000033 07571006351 017213 0 ustar sam sam Foo bar
foo
Config-ApacheFormat-1.2/incdir/ 0040755 0000764 0000765 00000000000 07752032264 014527 5 ustar sam sam Config-ApacheFormat-1.2/incdir/b.conf 0100644 0000764 0000765 00000000017 07742631744 015621 0 ustar sam sam
And you know
Config-ApacheFormat-1.2/incdir/a.conf 0100644 0000764 0000765 00000000034 07742636522 015616 0 ustar sam sam
Flying low...
As "a kite"
Config-ApacheFormat-1.2/incdir/c.conf 0100644 0000764 0000765 00000000035 07742636555 015627 0 ustar sam sam
And we know
Flying "High"
Config-ApacheFormat-1.2/MANIFEST 0100644 0000764 0000765 00000001107 07752031330 014375 0 ustar sam sam ApacheFormat.pm
Changes
MANIFEST
MANIFEST.SKIP
Makefile.PL
README
incdir/a.conf
incdir/b.conf
incdir/c.conf
t/01basic.t
t/02block.t
t/03leak.t
t/04include.t
t/05autoload.t
t/06validate.t
t/07largeconf.t
t/08error.t
t/09includedir.t
t/10fixbools.t
t/11expandvars.t
t/12setenvars.t
t/basic.conf
t/block.conf
t/error.conf
t/error_block.conf
t/error_include.conf
t/error_includer.conf
t/expandvars.conf
t/first.conf
t/fixbools.conf
t/httpd.conf
t/included.conf
t/includedir.conf
t/includer.conf
t/large.conf
t/second.conf
t/setenvars.conf
t/includer_with_root.conf
t/crazy_includer.conf
Config-ApacheFormat-1.2/Changes 0100644 0000764 0000765 00000004537 07752031717 014562 0 ustar sam sam Revision history for Config::ApacheFormat
1.0 Sun Nov 24 12:58:35 2002
- First version.
1.1 Tue Nov 26 12:00:00 2002
- Added new options 'valid_directives' and 'valid_blocks' to allow
the parser to produce syntax errors on invalid data. Thanks to
Rudy Lippan for the suggestion.
- Added filenames to error messages and added code to track
filenames and line numbers correctly across included files.
- Fixed bug where blocks with multi-part names couldn't be
accessed with block().
- Fixed spelling error in API. The wrong spelling of
"inheritance" as "inheritence" is now deprecated.
- Modified get() to avoid recursion when inheritance_support is
on for a small speedup.
- Optimized parsing for a 50% speedup on large files.
- Lowered memory usage.
1.2 Mon Oct 20 10:52:53 PDT 2003
- Nathan Wiger ported many features from Apache::ConfigFile in an
effort to combine the two modules. These features include:
o The fix_booleans option, which allows automatic conversion
of yes/on/true to 1 and no/off/false to 0
o The expand_vars option, allowing reuse of previously-defined
directives as $directive
o The setenv_vars option, which will automatically place
variables defined via the SetEnv directive into the %ENV
hash
o The hash_directives option, which allows proper handling of
directives where the first value is really a key
(ex. AddHandler).
o The duplicate_directives option, which allows the programmer
to choose how duplicate directives are handled (by default
the last one is kept, allowing subsequent configs to
override earlier Includes)
o Support for multiple blocks with the same name.
o Support for include directories and multiple include files
on a single line
o The root_directive option, which allows the user to define a
root for that config file which is prepended to relative
Include paths.
- Added include_directives option to allow for differently named
Include directives.
- Removed deprecated support for the wrong spelling of
inheritance_support as inheritence_support.
- Fixed bug preventing mixed-case valid_directives and
valid_blocks from working.
Config-ApacheFormat-1.2/MANIFEST.SKIP 0100644 0000764 0000765 00000000117 07571010712 015142 0 ustar sam sam Makefile$
Makefile\.old
CVS
~$
MANIFEST\.bak
tmon\.out
Config-ApacheFormat-.*$
Config-ApacheFormat-1.2/ApacheFormat.pm 0100644 0000764 0000765 00000104167 07752027443 016160 0 ustar sam sam package Config::ApacheFormat;
use 5.006001;
use strict;
use warnings;
our $VERSION = '1.2';
=head1 NAME
Config::ApacheFormat - use Apache format config files
=head1 SYNOPSIS
Config files used with this module are in Apache's format:
# comment here
RootDir /path/foo
LogDir /path/foo/log
Colors red green orange blue \
black teal
# override Colors inside block
Colors red blue black
Code to use this config file might look like:
use Config::ApacheFormat;
# load a conf file
my $config = Config::ApacheFormat->new();
$config->read("my.conf");
# access some parameters
$root_dir = $config->get("RootDir");
$log_dir = $config->get("LogDir");
@colors = $config->get("colors");
# using the autoloaded methods
$config->autoload_support(1);
$root_dir = $config->RootDir;
$log_dir = $config->logdir;
# access parameters inside a block
my $block = $config->block(Directory => "/path/foo");
@colors = $block->get("colors");
$root_dir = $block->get("root_dir");
=head1 DESCRIPTION
This module is designed to parse a configuration file in the same
syntax used by the Apache web server (see http://httpd.apache.org for
details). This allows you to build applications which can be easily
managed by experienced Apache admins. Also, by using this module,
you'll benefit from the support for nested blocks with built-in
parameter inheritance. This can greatly reduce the amount or repeated
information in your configuration files.
A good reference to the Apache configuration file format can be found
here:
http://httpd.apache.org/docs-2.0/configuring.html
To quote from that document, concerning directive syntax:
Apache configuration files contain one directive per line. The
back-slash "\" may be used as the last character on a line to
indicate that the directive continues onto the next line. There must
be no other characters or white space between the back-slash and the
end of the line.
Directives in the configuration files are case-insensitive, but
arguments to directives are often case sensitive. Lines that begin
with the hash character "#" are considered comments, and are
ignored. Comments may not be included on a line after a configuration
directive. Blank lines and white space occurring before a directive
are ignored, so you may indent directives for clarity.
And block notation:
Directives placed in the main configuration files apply to the entire
server. If you wish to change the configuration for only a part of the
server, you can scope your directives by placing them in ,
, , , , and
sections. These sections limit the application of the
directives which they enclose to particular filesystem locations or
URLs. They can also be nested, allowing for very fine grained
configuration.
This module will parse actual Apache configuration files, but you will need to set some options to non-default values. See L<"Parsing a Real Apache Config File">.
=head1 METHODS
=item $config = Config::ApacheFormat->new(opt => "value")
This method creates an object that can then be used to read configuration
files. It does not actually read any files; for that, use the C
method below. The object supports the following attributes, all of which
may be set through C:
=over 4
=item inheritance_support
Set this to 0 to turn off the inheritance feature. Block inheritance
means that variables declared outside a block are available from
inside the block unless overriden. Defaults to 1.
=item include_support
When this is set to 1, the directive "Include" will be treated
specially by the parser. It will cause the value to be treated as a
filename and that filename will be read in. If you use "Include"
with a directory, every file in that directory will be included.
This matches Apache's behavior and allows users to break up
configuration files into multiple, possibly shared, pieces.
Defaults to 1.
=item autoload_support
Set this to 1 and all your directives will be available as object
methods. So instead of:
$config->get("foo");
You can write:
$config->foo;
Defaults to 0.
=item case_sensitive
Set this to 1 to preserve the case of directive names. Otherwise, all
names will be Ced and matched case-insensitively. Defaults to 0.
=item fix_booleans
If set to 1, then during parsing, the strings "Yes", "On", and "True"
will be converted to 1, and the strings "No", "Off", and "False" will
be converted to 0. This allows you to more easily use C in
conditional statements.
For example:
# httpd.conf
UseCanonicalName On
Then in Perl:
$config = Config::ApacheFormat->new(fix_booleans => 1);
$config->read("httpd.conf");
if ($config->get("UseCanonicalName")) {
# this will get executed if set to Yes/On/True
}
This option defaults to 0.
=item expand_vars
If set, then you can use variable expansion in your config file by
prefixing directives with a C<$>. Hopefully this seems logical to you:
Website http://my.own.dom
JScript $Website/js
Images $Website/images
Undefined variables in your config file will result in an error. To
use a literal C<$>, simply prefix it with a C<\> (backslash). Like
in Perl, you can use brackets to delimit the variables more precisely:
Nickname Rob
Fullname ${Nickname}ert
Since only scalars are supported, if you use a multi-value, you will
only get back the first one:
Options Plus Minus "About the Same"
Values $Options
In this examples, "Values" will become "Plus". This is seldom a limitation
since in most cases, variable subsitution is used like the first example
shows. This option defaults to 0.
=item setenv_vars
If this is set to 1, then the special C directive will be set
values in the environment via C<%ENV>. Also, the special C
directive will delete environment variables.
For example:
# $ENV{PATH} = "/usr/sbin:/usr/bin"
SetEnv PATH "/usr/sbin:/usr/bin"
# $ENV{MY_SPECIAL_VAR} = 10
SetEnv MY_SPECIAL_VAR 10
# delete $ENV{THIS}
UnsetEnv THIS
This option defaults to 0.
=item valid_directives
If you provide an array of directive names then syntax errors will be
generated during parsing for invalid directives. Otherwise, any
directive name will be accepted. For exmaple, to only allow
directives called "Bar" and "Bif":
$config = Config::ApacheFormat->new(
valid_directives => [qw(Bar Bif)],
);
=item valid_blocks
If you provide an array of block names then syntax errors will be
generated during parsing for invalid blocks. Otherwise, any block
name will be accepted. For exmaple, to only allow "Directory" and
"Location" blocks in your config file:
$config = Config::ApacheFormat->new(
valid_blocks => [qw(Directory Location)],
);
=item include_directives
This directive controls the name of the include directive. By default
it is C<< ['Include'] >>, but you can set it to any list of directive
names.
=item root_directive
This controls what the root directive is, if any. If you set this to
the name of a directive it will be used as a base directory for
C processing. This mimics the behavior of C in
real Apache config files, and as such you'll want to set it to
'ServerRoot' when parsing an Apache config. The default is C.
=item hash_directives
This determines which directives (if any) should be parsed so that the
first value is actually a key into the remaining values. For example,
C is such a directive.
AddHandler cgi-script .cgi .sh
AddHandler server-parsed .shtml
To parse this correctly, use:
$config = Config::ApacheFormat->new(
hash_directives => [qw(AddHandler PerlSetVar)]
);
Then, use the two-argument form of C:
@values = $config->get(AddHandler => 'cgi-script');
This allows you to access each directive individually, which is needed
to correctly handle certain special-case Apache settings.
=item duplicate_directives
This option controls how duplicate directives are handled. By default,
if multiple directives of the same name are encountered, the last one
wins:
Port 8080
# ...
Port 5053
In this case, the directive C would be set to the last value, C<5053>.
This is useful because it allows you to include other config files, which
you can then override:
# default setup
Include /my/app/defaults.conf
# override port
Port 5053
In addition to this default behavior, C also supports
the following modes:
last - the value from the last one is kept (default)
error - duplicate directives result in an error
combine - combine values of duplicate directives together
These should be self-explanatory. If set to C, any duplicates
will result in an error. If set to C (the default), the last
value wins. If set to C, then duplicate directives are
combined together, just like they had been specified on the same line.
=back
All of the above attributes are also available as accessor methods. Thus,
this:
$config = Config::ApacheFormat->new(inheritance_support => 0,
include_support => 1);
Is equivalent to:
$config = Config::ApacheFormat->new();
$config->inheritance_support(0);
$config->include_support(1);
=over 4
=cut
use File::Spec;
use Carp qw(croak);
use Text::Balanced qw(extract_delimited extract_variable);
use Scalar::Util qw(weaken);
# this "placeholder" is used to handle escaped variables (\$)
# if it conflicts with a define in your config file somehow, simply
# override it with "$Config::ApacheFormat::PLACEHOLDER = 'whatever';"
our $PLACEHOLDER = "~PLaCE_h0LDeR_$$~";
# declare generated methods
use Class::MethodMaker
new_with_init => "new",
new_hash_init => "hash_init",
get_set => [ -noclear => qw/
inheritance_support
include_support
autoload_support
case_sensitive
expand_vars
setenv_vars
valid_directives
valid_blocks
duplicate_directives
hash_directives
fix_booleans
root_directive
include_directives
_parent
_data
_block_vals
/];
# setup defaults
sub init {
my $self = shift;
my %args = (
inheritance_support => 1,
include_support => 1,
autoload_support => 0,
case_sensitive => 0,
expand_vars => 0,
setenv_vars => 0,
valid_directives => undef,
valid_blocks => undef,
duplicate_directives=> 'last',
include_directives => ['Include'],
hash_directives => undef,
fix_booleans => 0,
root_directive => undef,
_data => {},
@_);
# could probably use a few more of these...
croak("Invalid duplicate_directives option '$self->{duplicate_directives}' - must be 'last', 'error', or 'combine'")
unless $args{duplicate_directives} eq 'last' or
$args{duplicate_directives} eq 'error' or
$args{duplicate_directives} eq 'combine';
return $self->hash_init(%args);
}
=item $config->read("my.conf");
=item $config->read(\*FILE);
Reads a configuration file into the config object. You must pass
either the path of the file to be read or a reference to an open
filehandle. If an error is encountered while reading the file, this
method will die().
Calling read() more than once will add the new configuration values
from another source, overwriting any conflicting values. Call clear()
first if you want to read a new set from scratch.
=cut
# read the configuration file, optionally ending at block_name
sub read {
my ($self, $file) = @_;
my @fstack;
# open the file if needed and setup file stack
my $fh;
if (ref $file) {
@fstack = { fh => $file,
filename => "",
line_num => 0 };
} else {
open($fh, "<", $file) or croak("Unable to open file '$file': $!");
@fstack = { fh => $fh,
filename => $file,
line_num => 0 };
}
return $self->_read(\@fstack);
}
# underlying _read, called recursively an block name for
# nested block objects
sub _read {
my ($self, $fstack, $block_name) = @_;
# pre-fetch for loop
my $case_sensitive = $self->{case_sensitive};
my $data = $self->{_data};
# pre-compute lookups for validation lists, if they exists
my ($validate_blocks, %valid_blocks,
$validate_directives, %valid_directives);
if ($self->{valid_directives}) {
%valid_directives = map { ($case_sensitive ? $_ : lc($_)), 1 }
@{$self->{valid_directives}};
$validate_directives = 1;
}
if ($self->{valid_blocks}) {
%valid_blocks = map { ($case_sensitive ? $_ : lc($_)), 1 }
@{$self->{valid_blocks}};
$validate_blocks = 1;
}
# pre-compute a regex to recognize the include directives
my $re = '^(?:' .
join('|', @{$self->{include_directives}}) . ')$';
my $include_re;
if ($self->{case_sensitive}) {
$include_re = qr/$re/;
} else {
$include_re = qr/$re/i;
}
# parse through the file, line by line
my ($name, $values, $line, $orig);
my ($fh, $filename) =
@{$fstack->[-1]}{qw(fh filename)};
my $line_num = \$fstack->[-1]{line_num};
LINE:
while(1) {
# done with current file?
if (eof $fh) {
last LINE if @$fstack == 1;
pop @$fstack;
($fh, $filename) =
@{$fstack->[-1]}{qw(fh filename)};
$line_num = \$fstack->[-1]{line_num};
}
# accumulate a full line, dealing with line-continuation
$line = "";
do {
no warnings 'uninitialized'; # blank warnings
$_ = <$fh>;
${$line_num}++;
s/^\s+//; # strip leading space
next LINE if /^#/; # skip comments
s/\s+$//; # strip trailing space
$line .= $_;
} while ($line =~ s/\\$// and not eof($fh));
# skip blank lines
next LINE unless length $line;
# parse line
if ($line =~ /^<\/(\w+)>$/) {
# end block
$orig = $name = $1;
$name = lc $name unless $case_sensitive; # lc($1) breaks on 5.6.1!
croak("Error in config file $filename, line $$line_num: " .
"Unexpected end to block '$orig' found" .
(defined $block_name ?
"\nI was waiting for $block_name>\n" : ""))
unless defined $block_name and $block_name eq $name;
# this is our cue to return
last LINE;
} elsif ($line =~ /^<(\w+)\s*(.*)>$/) {
# open block
$orig = $name = $1;
$values = $2;
$name = lc $name unless $case_sensitive;
croak("Error in config file $filename, line $$line_num: " .
"block '<$orig>' is not a valid block name")
unless not $validate_blocks or
exists $valid_blocks{$name};
my $val = [];
$val = _parse_value_list($values) if $values;
# create new object for block, inheriting options from
# this object, with this object set as parent (using
# weaken() to avoid creating a circular reference that
# would leak memory)
my $parent = $self;
weaken($parent);
my $block = ref($self)->new(
inheritance_support => $self->{inheritance_support},
include_support => $self->{include_support},
autoload_support => $self->{autoload_support},
case_sensitive => $case_sensitive,
expand_vars => $self->{expand_vars},
setenv_vars => $self->{setenv_vars},
valid_directives => $self->{valid_directives},
valid_blocks => $self->{valid_blocks},
duplicate_directives=> $self->{duplicate_directives},
hash_directives => $self->{hash_directives},
fix_booleans => $self->{fix_booleans},
root_directive => $self->{root_directive},
include_directives => $self->{include_directives},
_parent => $parent,
_block_vals => ref $val ? $val : [ $val ],
);
# tell the block to read from $fh up to the closing tag
# for this block
$block->_read($fstack, $name);
# store block for get() and block()
push @{$data->{$name}}, $block;
} elsif ($line =~ /^(\w+)(?:\s+(.+))?$/) {
# directive
$orig = $name = $1;
$values = $2;
$values = 1 unless defined $values;
$name = lc $name unless $case_sensitive;
croak("Error in config file $filename, line $$line_num: " .
"directive '$name' is not a valid directive name")
unless not $validate_directives or
exists $valid_directives{$name};
# parse out values, handling any strings or arrays
my @val;
eval {
@val = _parse_value_list($values);
};
croak("Error in config file $filename, line $$line_num: $@")
if $@;
# expand_vars if set
eval {
@val = $self->_expand_vars(@val) if $self->{expand_vars};
};
croak("Error in config file $filename, line $$line_num: $@")
if $@;
# and then setenv too (allowing PATH "$BASEDIR/bin")
if ($self->{setenv_vars}) {
if ($name =~ /^setenv$/i) {
croak("Error in config file $filename, line $$line_num: ".
" can't use setenv_vars " .
"with malformed SetEnv directive") if @val != 2;
$ENV{"$val[0]"} = $val[1];
} elsif ($name =~ /^unsetenv$/i) {
croak("Error in config file $filename, line $$line_num: ".
"can't use setenv_vars " .
"with malformed UnsetEnv directive") unless @val;
delete $ENV{$_} for @val;
}
}
# Include processing
# because of the way our inheritance works, we navigate multiple files in reverse
if ($name =~ /$include_re/) {
for my $f (reverse @val) {
# if they specified a root_directive (ServerRoot) and
# it is defined, prefix that to relative paths
my $root = $self->{case_sensitive} ? $self->{root_directive}
: lc $self->{root_directive};
if (! File::Spec->file_name_is_absolute($f) && exists $data->{$root}) {
# looks odd; but only reliable method is construct UNIX-style
# then deconstruct
my @parts = File::Spec->splitpath("$data->{$root}[0]/$f");
$f = File::Spec->catpath(@parts);
}
# this handles directory includes (i.e. will include all files in a directory)
my @files;
if (-d $f) {
opendir(INCD, $f)
|| croak("Cannot open include directory '$f' at $filename ",
"line $$line_num: $!");
@files = map { "$f/$_" } sort grep { -f "$f/$_" } readdir INCD;
closedir(INCD);
} else {
@files = $f;
}
for my $values (reverse @files) {
# just try to open it as-is
my $include_fh;
unless (open($include_fh, "<", $values)) {
if ($fstack->[0]{filename}) {
# try opening it relative to the enclosing file
# using File::Spec
my @parts = File::Spec->splitpath($filename);
$parts[-1] = $values;
open($include_fh, "<", File::Spec->catpath(@parts)) or
croak("Unable to open include file '$values' ",
"at $filename line $$line_num: $!");
} else {
croak("Unable to open include file '$values' ",
"at $filename line $$line_num: $!");
}
}
# push a new record onto the @fstack for this file
push(@$fstack, { fh => $fh = $include_fh,
filename => $filename = $values,
line_number => 0 });
# hook up line counter
$line_num = \$fstack->[-1]{line_num};
}
}
next LINE;
}
# for each @val, "fix" booleans if so requested
# do this *after* include processing so "include yes.conf" works
if ($self->{fix_booleans}) {
for (@val) {
if (/^true$/i or /^on$/i or /^yes$/i) {
$_ = 1;
} elsif (/^false$/i or /^off$/i or /^no$/i) {
$_ = 0;
}
}
}
# how to handle repeated values
# this is complicated because we have to allow a semi-union of
# the hash_directives and duplicate_directives options
if ($self->{hash_directives}
&& _member($orig,
$self->{hash_directives}, $self->{case_sensitive})){
my $k = shift @val;
if ($self->{duplicate_directives} eq 'error') {
# must check for a *specific* dup
croak "Duplicate directive '$orig $k' at $filename line $$line_num"
if $data->{$name}{$k};
push @{$data->{$name}{$k}}, @val;
}
elsif ($self->{duplicate_directives} eq 'last') {
$data->{$name}{$k} = \@val;
}
else {
# push onto our struct to allow repeated declarations
push @{$data->{$name}{$k}}, @val;
}
} else {
if ($self->{duplicate_directives} eq 'error') {
# not a hash_directive, so all dups are errors
croak "Duplicate directive '$orig' at $filename line $$line_num"
if $data->{$name};
push @{$data->{$name}}, @val;
}
elsif ($self->{duplicate_directives} eq 'last') {
$data->{$name} = \@val;
}
else {
# push onto our struct to allow repeated declarations
push @{$data->{$name}}, @val;
}
}
} else {
croak("Error in config file $filename, line $$line_num: ".
"unable to parse line");
}
}
return $self;
}
# given a string returns a list of tokens, allowing for quoted strings
# and otherwise splitting on whitespace
sub _parse_value_list {
my $values = shift;
my @val;
if ($values !~ /['"\s]/) {
# handle the common case of a single unquoted string
@val = ($values);
} elsif ($values !~ /['"]/) {
# strings without any quote characters can be parsed with split
@val = split /\s+/, $values;
} else {
# break apart line, allowing for quoted strings with
# escaping
while($values) {
my $val;
if ($values !~ /^["']/) {
# strip off a value and put it where it belongs
($val, $values) = $values =~ /^(\S+)\s*(.*)$/;
} else {
# starts with a quote, bring in the big guns
$val = extract_delimited($values, q{"'});
die "value string '$values' not properly formatted\n"
unless length $val;
# remove quotes and fixup escaped characters
$val = substr($val, 1, length($val) - 2);
$val =~ s/\\(['"])/$1/g;
# strip off any leftover space
$values =~ s/^\s*//;
}
push(@val, $val);
}
}
die "no value found for directive\n" unless @val;
return wantarray ? @val : \@val;
}
# expand any $var stuff if expand_vars is set
sub _expand_vars {
my $self = shift;
my @vals = @_;
for (@vals) {
local $^W = 0; # shuddup uninit
s/\\\$/$PLACEHOLDER/g; # kludge but works (Text::Balanced broken)
s/\$\{?(\w+)\}?/
my $var = $1;
my $val = $self->get($var);
die "undefined variable '\$$var' seen\n" unless defined $val;
$val;
/ge;
s/$PLACEHOLDER/\$/g; # redo placeholders, removing escaping
}
return @vals;
}
sub _member {
# simple "in" style sub
my($name, $hdir, $case) = @_;
$name = lc $name unless $case;
return unless $hdir && ref $hdir eq 'ARRAY';
for (@$hdir) {
$_ = lc $_ unless $case;
return 1 if $name eq $_;
}
return;
}
=item C<< $value = $config->get("var_name") >>
=item C<< @vals = $config->get("list_name") >>
=item C<< $value = $config->get("hash_var_name", "key") >>
Returns values from the configuration file. If the directive contains
a single value, it will be returned. If the directive contains a list
of values then they will be returned as a list. If the directive does
not exist in the configuration file then nothing will be returned
(undef in scalar context, empty list in list context).
For example, given this confiuration file:
Foo 1
Bar bif baz bop
The following code would work as expected:
my $foo = $config->get("Foo"); # $foo = 1
my @bar = $config->get("Bar"); # @bar = ("bif", "baz", "bop")
If the name is the name of a block tag in the configuration file then
a list of available block specifiers will be returned. For example,
given this configuration file:
Size 10
Size 1
This call:
@sites = $config->get("Site");
Will return C<([ Site => "big"], [ Site => "small" ])>. These arrays
can then be used with the block() method described below.
If the directive was included in the file but did not have a value,
1 is returned by get().
Calling get() with no arguments will return the names of all available
directives.
Directives declared in C require a key value:
$handler = $config->get("AddHandler", "cgi-script");
C is available as an alias for C.
=cut
# get a value from the config file.
*directive = \&get;
sub get {
my ($self, $name, $srch) = @_;
# handle empty param call
return keys %{$self->{_data}} if @_ == 1;
# lookup name in _data
$name = lc $name unless $self->{case_sensitive};
my $val = $self->{_data}{$name};
# Search through up the tree if inheritence is on and we have a
# parent. Simulated recursion terminates either when $val is
# found or when the root is reached and _parent is undef.
if (not defined $val and
$self->{_parent} and
$self->{inheritance_support}) {
my $ptr = $self;
do {
$ptr = $ptr->{_parent};
$val = $ptr->{_data}{$name};
} while (not defined $val and $ptr->{_parent});
}
# didn't find it?
return unless defined $val;
# for blocks, return a list of valid block identifiers
my $type = ref $val;
my @ret; # tmp to avoid screwing up $val
if ($type) {
if ($type eq 'ARRAY' and
ref($val->[0]) eq ref($self)) {
@ret = map { [ $name, @{$_->{_block_vals}} ] } @$val;
$val = \@ret;
} elsif ($type eq 'HASH') {
# hash_directive
if ($srch) {
# return the specific one
$val = $val->{$srch};
} else {
# return valid keys
$val = [ keys %$val ];
}
}
}
# return all vals in list ctxt, or just the first in scalar
return wantarray ? @$val : $val->[0];
}
=item $block = $config->block("BlockName")
=item $block = $config->block(Directory => "/foo/bar")
=item $block = $config->block(Directory => "~" => "^.*/bar")
This method returns a Config::ApacheFormat object used to access the
values inside a block. Parameters specified within the block will be
available. Also, if inheritance is turned on (the default), values
set outside the block that are not overwritten inside the block will
also be available. For example, given this file:
MaxSize 100
Size 10
Size 1
this code:
print "Max: ", $config->get("MaxSize"), "\n";
$block = $config->block(Site => "big");
print "Big: ", $block->get("Size"), " / ",
$block->get("MaxSize"), "\n";
$block = $config->block(Site => "small");
print "Small: ", $block->get("Size"), " / ",
$block->get("MaxSize"), "\n";
will print:
Max: 100
Big: 10 / 100
Small: 1 / 100
Note that C does not require any particular number of
parameters. Any number will work, as long as they uniquely identify a
block in the configuration file. To get a list of available blocks,
use get() with the name of the block tag.
This method will die() if no block can be found matching the specifier
passed in.
=cut
# get object for a given block specifier
sub block {
my $self = shift;
my($name, @vals) = ref $_[0] eq 'ARRAY' ? @{$_[0]} : @_;
$name = lc $name unless $self->{case_sensitive};
my $data = $self->{_data};
# make sure we have at least one block named $name
my $block_array;
croak("No such block named '$name' in config file")
unless ($block_array = $data->{$name} and
ref($block_array) eq 'ARRAY' and
ref($block_array->[0]) eq ref($self));
# find a block matching @vals. If Perl supported arbitrary
# structures as hash keys this could be more efficient.
my @ret;
BLOCK:
foreach my $block (@{$block_array}) {
if (@vals == @{$block->{_block_vals}}) {
for (local $_ = 0; $_ < @vals; $_++) {
next BLOCK unless $vals[$_] eq $block->{_block_vals}[$_];
}
return $block unless wantarray; # saves time
push @ret, $block;
}
}
return @ret if @ret;
# redispatch to get() if just given block type ($config->block('location'))
#return $self->get(@_) unless @vals;
croak("No such block named '$name' with values ",
join(', ', map { "'$_'" } @vals), " in config file");
}
=item $config->clear()
Clears out all data in $config. Call before re-calling
$config->read() for a fresh read.
=cut
sub clear {
my $self = shift;
delete $self->{_data};
$self->{_data} = {};
}
=item $config->dump()
This returns a dumped copy of the current configuration. It can be
used on a block object as well. Since it returns a string, you should
say:
print $config->dump;
Or:
for ($config->block(VirtualHost => '10.1.65.1')) {
print $_->dump;
}
If you want to see any output.
=cut
sub dump {
my $self = shift;
require Data::Dumper;
$Data::Dumper::Indent = 1;
return Data::Dumper::Dumper($self);
}
# handle autoload_support feature
sub DESTROY { 1 }
sub AUTOLOAD {
our $AUTOLOAD;
my $self = shift;
my ($name) = $AUTOLOAD =~ /([^:]+)$/;
croak(qq(Can't locate object method "$name" via package ") .
ref($self) . '"')
unless $self->{autoload_support};
return $self->get($name);
}
1;
__END__
=back
=head1 Parsing a Real Apache Config File
To parse a real Apache config file (ex. C) you'll need to
use some non-default options. Here's a reasonable starting point:
$config = Config::ApacheFormat->new(
root_directive => 'ServerRoot',
hash_directives => [ 'AddHandler' ],
include_directives => [ 'Include',
'AccessConfig',
'ResourceConfig' ],
setenv_vars => 1,
fix_booleans => 1);
=head1 TODO
Some possible ideas for future development:
=over 4
=item *
Add a set() method. (useless?)
=item *
Add a write() method to create a new configuration file. (useless?)
=back
=head1 BUGS
I know of no bugs in this software. If you find one, please create a
bug report at:
http://rt.cpan.org/
Include the version of the module you're using and a small piece of
code that I can run which demonstrates the problem.
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2002-2003 Sam Tregar
This program is free software; you can redistribute it and/or modify
it under the same terms as Perl 5 itself.
=head1 AUTHORS
=item Sam Tregar
Original author and maintainer
=item Nathan Wiger
Porting of features from L
=head1 SEE ALSO
L
L
=cut
Config-ApacheFormat-1.2/README 0100644 0000764 0000765 00000010323 07752032151 014126 0 ustar sam sam Config::ApacheFormat 1.2
========================
CHANGES
- Nathan Wiger ported many features from Apache::ConfigFile in an
effort to combine the two modules. These features include:
o The fix_booleans option, which allows automatic conversion
of yes/on/true to 1 and no/off/false to 0
o The expand_vars option, allowing reuse of previously-defined
directives as $directive
o The setenv_vars option, which will automatically place
variables defined via the SetEnv directive into the %ENV
hash
o The hash_directives option, which allows proper handling of
directives where the first value is really a key
(ex. AddHandler).
o The duplicate_directives option, which allows the programmer
to choose how duplicate directives are handled (by default
the last one is kept, allowing subsequent configs to
override earlier Includes)
o Support for multiple blocks with the same name.
o Support for include directories and multiple include files
on a single line
o The root_directive option, which allows the user to define a
root for that config file which is prepended to relative
Include paths.
- Added include_directives option to allow for differently named
Include directives.
- Removed deprecated support for the wrong spelling of
inheritance_support as inheritence_support.
- Fixed bug preventing mixed-case valid_directives and
valid_blocks from working.
INSTALLATION
To install this module type the following:
perl Makefile.PL
make
make test
make install
DEPENDENCIES
This module requires these other modules and libraries:
Carp
Class::MethodMaker 1.08
Text::Balanced 1.89
File::Spec 0.82
Scalar::Util
DESCRIPTION
This module is designed to parse a configuration file in the same syntax
used by the Apache web server (see http://httpd.apache.org for details).
This allows you to build applications which can be easily managed by
experienced Apache admins. Also, by using this module, you'll benefit
from the support for nested blocks with built-in parameter inheritance.
This can greatly reduce the amount or repeated information in your
configuration files.
A good reference to the Apache configuration file format can be found
here:
http://httpd.apache.org/docs-2.0/configuring.html
To quote from that document, concerning directive syntax:
Apache configuration files contain one directive per line. The
back-slash "\" may be used as the last character on a line to
indicate that the directive continues onto the next line. There must
be no other characters or white space between the back-slash and the
end of the line.
Directives in the configuration files are case-insensitive, but
arguments to directives are often case sensitive. Lines that begin
with the hash character "#" are considered comments, and are
ignored. Comments may not be included on a line after a configuration
directive. Blank lines and white space occurring before a directive
are ignored, so you may indent directives for clarity.
And block notation:
Directives placed in the main configuration files apply to the entire
server. If you wish to change the configuration for only a part of the
server, you can scope your directives by placing them in ,
, , , , and
sections. These sections limit the application of the
directives which they enclose to particular filesystem locations or
URLs. They can also be nested, allowing for very fine grained
configuration.
This module will parse actual Apache configuration files, but you will
need to set some options to non-default values. See the section on
"Parsing a Real Apache Config File" in the module documentation
for more details.
COPYRIGHT AND LICENSE
Copyright (C) 2002-2003 Sam Tregar
This program is free software; you can redistribute it and/or modify
it under the same terms as Perl 5 itself.
Config-ApacheFormat-1.2/Makefile.PL 0100644 0000764 0000765 00000001102 07752025334 015220 0 ustar sam sam use ExtUtils::MakeMaker;
use 5.006001;
WriteMakefile(
NAME => 'Config::ApacheFormat',
VERSION_FROM => 'ApacheFormat.pm',
PREREQ_PM => {
'Class::MethodMaker' => "1.08",
'Carp' => 0,
'Text::Balanced' => "1.89",
'File::Spec' => "0.82",
'Scalar::Util' => 0,
},
ABSTRACT_FROM => 'ApacheFormat.pm',
AUTHOR => 'Sam Tregar ',
);