please help me.

2002-06-03 Thread Tran Van Quan

Dear Mr/Mrs.
Please help me I have trouble with perl configuration in
apache config file (httpd.conf) I had install
ActivePerl-5.6.1.631-MSWin32-x86 and my computer's win2k.
Please help me how to config in order I can run perl page.
Your help will be appreciated. Thanks you very much.
ps: please look at my config file.


#
# Based upon the NCSA server configuration files originally by Rob McCool.
#
# This is the main Apache server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See URL:http://www.apache.org/docs/ for detailed information about
# the directives.
#
# Do NOT simply read the instructions in here without understanding
# what they do.  They're here only as hints or reminders.  If you are unsure
# consult the online docs. You have been warned.  
#
# After this file is processed, the server will look for and process
# F:/Program Files/Apache Group/Apache/conf/srm.conf and then F:/Program Files/Apache 
Group/Apache/conf/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.
#
# NOTE: Where filenames are specified, you must use forward slashes
# instead of backslashes (e.g., c:/apache instead of c:\apache).
# If a drive letter is omitted, the drive on which Apache.exe is located
# will be used by default.  It is recommended that you always supply
# an explicit drive letter in absolute paths, however, to avoid
# confusion.
#

### 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.
#
ServerRoot F:/Program Files/Apache Group/Apache

#
# PidFile: The file in which the server should record its process
# identification number when it starts.
#
PidFile logs/httpd.pid

#
# ScoreBoardFile: File used to store internal server process information.
# Not all architectures require this.  But if yours does (you'll know because
# this file will be  created when you run Apache) then you *must* ensure that
# no two invocations of Apache share the same scoreboard file.
#
ScoreBoardFile logs/apache_runtime_status

#
# 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

#
# Apache on Win32 always creates one child process to handle requests.  If it
# dies, another child process is created automatically.  Within the child
# process multiple threads handle incoming requests.  The next two
# directives

Re: please help me.

2002-06-03 Thread pascal barbedor

hi
but what is the  problem ?

if you are running normal cgi script, then the first line of the file script
called must contain

#!path_path_to_perl

and this is just a comment to remind you in httpd.conf :

# Apache parses all CGI scripts for the shebang line by default.
# This comment line, the first line of the script, consists of the symbols
# pound (#) and exclamation (!) followed by the path of the program that
# can execute this specific script.  For a perl script, with perl.exe in
# the C:\Program Files\Perl directory, the shebang line should be:

#!F:/Perl/bin/perl.exe


if you are running modperl there should a loadmodule perlmodule... somewhere
pascal


- Original Message -
From: Tran Van Quan [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, June 03, 2002 10:54 AM
Subject: please help me.


 Dear Mr/Mrs.
 Please help me I have trouble with perl configuration in
 apache config file (httpd.conf) I had install
 ActivePerl-5.6.1.631-MSWin32-x86 and my computer's win2k.
 Please help me how to config in order I can run perl page.
 Your help will be appreciated. Thanks you very much.
 ps: please look at my config file.





Newbie: Please help me in installing mod_perl

2001-06-20 Thread VIDYASAGAR R NALLU

Hi,

I'm completely new to mod_perl. So please don't scold me too hard if i'm
asking silly question. Basically i installed and configured Apache web
server, working fine with out any problem. Now i would like to install
mod_perl. According to documentation using ppm i installed ppd file of
mod_perl. Successfully copied mod_perl.so into the modules directory of
Apache webserver.

I included the following statements into httpd.conf file:

Alias /Perl/ /vnallu/http/perl
  
  PerlModule Apache::Registry
  Location /httpd
SetHandler perl-script
PerlHandler Apache::Registry
Options ExecCGI
PerlSendHeader On
allow from all
  /Location

When i started the server i'm ended up with the following error message:

Invalid module PerlModule perhaps mis-spelled or defined by a module not
included in the server configuration.

Is this problem anyway related to mod_perl-1.25.tar.gz. Totally confused.
Please someone kind enough to solve my problem.

Thanks in advance
vnallu



Re: Newbie: Please help me in installing mod_perl

2001-06-20 Thread Robin Berjon

On Wednesday 20 June 2001 17:49, VIDYASAGAR R NALLU wrote:
 According to documentation using ppm i installed ppd file of
 mod_perl. Successfully copied mod_perl.so into the modules directory of
 Apache webserver.

 When i started the server i'm ended up with the following error message:

 Invalid module PerlModule perhaps mis-spelled or defined by a module not
 included in the server configuration.

You need to add (before any mod_perl directive):

LoadModule perl_module modules/mod_perl.so

Note that I'm guessing that it ought to be mod_perl.so, I haven't used 
mod_perl on win32 in ages and back then it was ApacheModulePerl.dll.

-- 
___
Robin Berjon [EMAIL PROTECTED] -- CTO
k n o w s c a p e : // venture knowledge agency www.knowscape.com
---
To err is human, to purr feline.




Please help me get out of the list

2001-01-11 Thread Assil

It is unbelievable !

Am not able to get out of this list.
Unsubscribe emails say:"You are not on the list ..."

Please help, please help  !!!



Assil




Re: Please help me get out of the list

2001-01-11 Thread Peter Farmer

Assil,

From [EMAIL PROTECTED]

 If despite following these instructions, you do not get the
 desired results, please contact my owner at
 [EMAIL PROTECTED] Please be patient, my owner is a
 lot slower than I am ;-)

HTH


Peter

Peter Farmer
Systems Engineer
blueyonder
ICQ - 55297879

- Original Message - 
From: "Assil" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, January 10, 2001 9:24 PM
Subject: Please help me get out of the list


 It is unbelievable !
 
 Am not able to get out of this list.
 Unsubscribe emails say:"You are not on the list ..."
 
 Please help, please help  !!!
 
 
 
 Assil
 




Need mod_Perl developers in Austin, Texas. Contract or Direct Please help me out if you can.

2000-09-07 Thread Kirk Gould

Hello,

I need to help a partner organization find mod_Perl developers for an
Austin, Texas company, so that they can finish a project for me.  Please
contact me if you can help out.  I don't know if they will need relocation
perm or temp, perhaps not for contract.

Sincerely,

Kirk

Kirk J. Gould
Program Manager - Interact.com
Interact Commerce Corporation
8800 North Gainey Center Drive
Suite 200
Scottsdale, Arizona 85258

1-480-368-3825 phone
1-480-627-3500 fax

[EMAIL PROTECTED]

Doesn't everyone Interact?