Re: Dealing with apache timeout in Perl

2013-09-04 Thread Michael Brader
27;t there any other way? On Wed, Sep 4, 2013 at 9:48 PM, jbiskofski <mailto:jbiskof...@gmail.com>> wrote: You need to fix this in Apache not in your web-app. The setting is called TimeOut in your httpd.conf - this is the number of seconds Apache will wait before sending

Re: Dealing with apache timeout in Perl

2013-09-04 Thread Chankey Pathak
Sorry I can't do that. Isn't there any other way? On Wed, Sep 4, 2013 at 9:48 PM, jbiskofski wrote: > You need to fix this in Apache not in your web-app. The setting is called > TimeOut in your httpd.conf - this is the number of seconds Apache will wait > before sending

Re: Dealing with apache timeout in Perl

2013-09-04 Thread jbiskofski
You need to fix this in Apache not in your web-app. The setting is called TimeOut in your httpd.conf - this is the number of seconds Apache will wait before sending a timeout error and ending the request. - Jose from Mexico. On Wed, Sep 4, 2013 at 4:49 AM, Chankey Pathak wrote: > In my

Dealing with apache timeout in Perl

2013-09-04 Thread Chankey Pathak
ments and then use Archive::Zip to create Zip file. It works fine. But if the user had selected a lot of documents then the create_zip subroutine takes a lot of time, and if it takes more than 4 minutes (240 seconds) then apache timeout occurs causing the 503 error, but in the backend the subro

Apache::Session::MySQL - connection closing

2013-07-22 Thread Phil Smith
I've tried posting this to the perl-mysql mailing list but that list doesn't seem to have any traffic, so I'm hoping maybe someone on this list has some experience with Apache::Session::MySQL. Does anyone know if a call to untie on a tied hash to Apache::Session::MySQL will clo

OT: Apache vulnerability

2011-08-25 Thread Ramprasad Prasad
Will the apache DOS vulnerability affect servers just running CGI scripts , no php , tomcat etc( usually those are the ones causing all security concerns ) http://www.networkworld.com/news/2011/082411-apache-warns-web-server-admins-250075.html Are there any mitigation scripts

Re: Galbraith, P., 2009, "Developing Web Applications with Apache, MySQL, memcached, and Perl"

2011-06-06 Thread David Christensen
nd up rather than learning any particular framework. I'm considering buying: - Galbraith, P., 2009, "Developing Web Applications with Apache, MySQL, memcached, and Perl", http://www.wiley.com/WileyCDA/WileyTitle/productCd-0470414642.html . Has anyone read this book? Any com

Re: How to recognize apache authentication

2011-04-07 Thread Olof Johansson
On 2011-04-06 15:59 +0300, Shlomit Afgin wrote: > I want to build a script that only authenticate users can access. > The authentication I want to use is Apache authentication. > During the script I need to know the exact person that login. > > Is there any environment variable

Re: How to recognize apache authentication

2011-04-07 Thread terry
于 2011-4-6 20:59, Shlomit Afgin 写道: I want to build a script that only authenticate users can access. The authentication I want to use is Apache authentication. During the script I need to know the exact person that login. Is there any environment variable that keep this information? You

How to recognize apache authentication

2011-04-07 Thread Shlomit Afgin
Hi, I want to build a script that only authenticate users can access. The authentication I want to use is Apache authentication. During the script I need to know the exact person that login. Is there any environment variable that keep this information? Thanks, Shlomit.

Re: Can't locate object method "TIEHASH" via package " Apache::Session::MySQL

2010-04-19 Thread Uri Guttman
> "MC" == Mimi Cafe writes: MC> yes, probably the space was the cause of the issue. I did not MC> notice it untill I went back to change the quotes. hopefully you have learned a lesson about quoting strings. but you haven't about quoting emails. my entire email was quoted below your repl

Re: Can't locate object method "TIEHASH" via package " Apache::Session::MySQL

2010-04-19 Thread Mimi Cafe
yes, probably the space was the cause of the issue. I did not notice it untill I went back to change the quotes. Mimi On 19 April 2010 19:16, Uri Guttman wrote: > > "MC" == Mimi Cafe writes: > > MC> Hmm, the single quotes did help. I am used to double quotes as > MC> they make me feel I

Re: Can't locate object method "TIEHASH" via package " Apache::Session::MySQL

2010-04-19 Thread Uri Guttman
> "MC" == Mimi Cafe writes: MC> Hmm, the single quotes did help. I am used to double quotes as MC> they make me feel I am properly quoting, but now I have learnt the MC> hard way. there is no reason single vs double quotes would make any difference as there was no interpolation going o

RE: Can't locate object method "TIEHASH" via package " Apache::Session::MySQL

2010-04-19 Thread Mimi Cafe
Subject: AW: Can't locate object method "TIEHASH" via package " Apache::Session::MySQL Owen wrote: > On Mon, 19 Apr 2010 00:14:44 +0100 > Mimi Cafe wrote: > > > I get following error when trying to open a session using > > Apache::Session::M

AW: Can't locate object method "TIEHASH" via package " Apache::Session::MySQL

2010-04-19 Thread Thomas Bätzler
Owen wrote: > On Mon, 19 Apr 2010 00:14:44 +0100 > Mimi Cafe wrote: > > > I get following error when trying to open a session using > > Apache::Session::MySQL. > > > > > > > > Here is what I have > > > > > > > > 38

Re: Can't locate object method "TIEHASH" via package " Apache::Session::MySQL

2010-04-19 Thread Owen
On Mon, 19 Apr 2010 00:14:44 +0100 Mimi Cafe wrote: > I get following error when trying to open a session using > Apache::Session::MySQL. > > > > Here is what I have > > > > 38 tie %session, " Apache::Session::MySQL", undef,{ >

Can't locate object method "TIEHASH" via package " Apache::Session::MySQL

2010-04-18 Thread Mimi Cafe
I get following error when trying to open a session using Apache::Session::MySQL. Here is what I have 38 tie %session, " Apache::Session::MySQL", undef,{ 39 Handle => $dbh, 40 LockHandle => $dbh 41 }; Could not create ne

Re: how to add support of Msql and CGI in Apache.

2009-04-13 Thread Gunnar Hjalmarsson
Gunnar Hjalmarsson wrote: Raheel Hassan wrote: I am facing problems in executing cgi programs, on Apache web server, can any body tell me how i can configure my Apache server so that it can support CGI and Msql. I also wanted to enable ssl support in the Apache server. http

Re: how to add support of Msql and CGI in Apache.

2009-04-13 Thread Gunnar Hjalmarsson
Raheel Hassan wrote: I am facing problems in executing cgi programs, on Apache web server, can any body tell me how i can configure my Apache server so that it can support CGI and Msql. I also wanted to enable ssl support in the Apache server. http://httpd.apache.org/docs/2.0/howto/cgi.html

how to add support of Msql and CGI in Apache.

2009-04-13 Thread Raheel Hassan
Hello, I am facing problems in executing cgi programs, on Apache web server, can any body tell me how i can configure my Apache server so that it can support CGI and Msql. I also wanted to enable ssl support in the Apache server. Thanks in advance. Regards, Raheel.

Re: Apache mod_perl concept

2008-10-24 Thread Jeff Pang
2008/10/23 howa <[EMAIL PROTECTED]>: > Hello, > > As described in the mod_perl documents, Apache can share variable > (i.e. data) if they are declared during Apache start up. > > So if I have a shared variable during startup, storing the DBI > handler, I assume all the p

Apache mod_perl concept

2008-10-24 Thread howa
Hello, As described in the mod_perl documents, Apache can share variable (i.e. data) if they are declared during Apache start up. So if I have a shared variable during startup, storing the DBI handler, I assume all the process is sharing this same handler? So if one Apache is doing query, is

Apache not running perl

2008-10-08 Thread Pat Rice
HI all getting the following when i try and run this in Apache Error GETing http://commit.website.com/commit_emea.html: Can't connect to commit.vmware.com:80 (Bad hostname 'commit.website.com') at /var/www/cgi-bin/commitCountries2.pl line 21 Troubleshooing done line 21 is just $a

Re: Persistent Data with HTTP, Apache and Perl

2007-12-20 Thread Tom Phoenix
On 12/20/07, Nigel Peck <[EMAIL PROTECTED]> wrote: > I'm looking for some recommendations of ways to have http sessions using > Apache and Perl. Then you probably want a forum about http sessions, Apache, and Perl. Even if you're not using mod_perl (but you proba

Persistent Data with HTTP, Apache and Perl

2007-12-20 Thread Nigel Peck
Hi all, I'm looking for some recommendations of ways to have http sessions using Apache and Perl. I have (will have) a shopping application that needs to work across user's visits to static html pages, so passing a session id in the page is not viable. I don't want to

Re: Configuring Apache::DBI in Apache2

2007-10-19 Thread Subhash
On Oct 18, 5:03 pm, [EMAIL PROTECTED] (Matthew Whipple) wrote: > Subhash Chandran wrote: > > Hi > > > Can anyone help me to configure Apache::DBI to the Apache2 server. > > System config: > > OS Windows XP > > Perl 5.8.8 > > Apache 2.2.4 > > m

Re: Configuring Apache::DBI in Apache2

2007-10-18 Thread Matthew Whipple
Subhash Chandran wrote: > Hi > > Can anyone help me to configure Apache::DBI to the Apache2 server. > System config: > OS Windows XP > Perl 5.8.8 > Apache 2.2.4 > mod_perl: 2.0.3 > Apache::DBI 1.06 > > I was able to make mod_perl and now the server is mod_perl

Re: Configuring Apache::DBI in Apache2

2007-10-17 Thread Jeff Pang
On 10/17/07, Subhash Chandran <[EMAIL PROTECTED]> wrote: > I was able to make mod_perl and now the server is mod_perl enabled. But as > per the README in Apache::DBI if the httpd.conf is set as below > PerlModule Apache::DBI >the server doesnt start. I ge

Configuring Apache::DBI in Apache2

2007-10-17 Thread Subhash Chandran
Hi Can anyone help me to configure Apache::DBI to the Apache2 server. System config: OS Windows XP Perl 5.8.8 Apache 2.2.4 mod_perl: 2.0.3 Apache::DBI 1.06 I was able to make mod_perl and now the server is mod_perl enabled. But as per the README in Apache::DBI if the httpd.conf is set as

Re: Apache startup problem

2007-09-10 Thread Foo JH
It looks like there's another application hogging port 443. Shut that down so you can move on. Praveena Vittal wrote: Hi All, This is not related to Perl .But I am using a Apache Webserver for my perl application. I have newly setting up web server with the virtual host listening in

Re: Off-topic (Re: Apache startup problem)

2007-09-07 Thread Tom Phoenix
On 9/7/07, Praveena Vittal <[EMAIL PROTECTED]> wrote: > ExecCGI is off in this directory: > /opt/SUNWTeleAlarm/www_live/cgi-bin/frontpage.cgi Have you considered turning it on? Have you tried consulting Apache folks? We're Perl folks, but you can easily find mailing lists

Re: Off-topic (Re: Apache startup problem)

2007-09-07 Thread Praveena Vittal
Folks , thanks for ur suggestionI ran the script as root ,apache got started but it is throwing error as below when accessing the home page of the site [Fri Sep 7 10:38:25 2007] [error] [client 129.158.71.40] Options ExecCGI is off in this directory: /opt/SUNWTeleAlarm/www_live

Apache startup problem

2007-09-07 Thread Praveena Vittal
Hi All, This is not related to Perl .But I am using a Apache Webserver for my perl application. I have newly setting up web server with the virtual host listening in the port 3032(with SSL enabled).When starting the apache ,following error is displayed. *"permission denied make

Re: Apache ate my hard drive! (and questions)

2007-07-18 Thread Mr. Shawn H. Corey
Inventor wrote: While enthusiastically writing my new program, I was having so much fun coding and reading www.perl.com articles that I didn't notice a slow, creeping horror that was gradually building up on my machine. Luckily I was reading about Apache and the log files when I remembered

Re: Apache ate my hard drive! (and questions)

2007-07-18 Thread Jeff Pang
--- Inventor <[EMAIL PROTECTED]> wrote: > While enthusiastically writing my new program, I was > having so much > fun coding and reading www.perl.com articles that I > didn't notice a > slow, creeping horror that was gradually building up > on my machine. > Luckil

Re: Apache ate my hard drive! (and questions)

2007-07-18 Thread Rob Dixon
Inventor wrote: [snip Apache tragedy] My program accesses small text configuration files, allowing the user to change them with a CGI interface before writing them out and doing its compute thing. The problem is that each user needs to have their own set of configuration files so that the

Apache ate my hard drive! (and questions)

2007-07-18 Thread Inventor
While enthusiastically writing my new program, I was having so much fun coding and reading www.perl.com articles that I didn't notice a slow, creeping horror that was gradually building up on my machine. Luckily I was reading about Apache and the log files when I remembered that someone

Re: Apache::Authcookie

2007-07-10 Thread Tom Phoenix
On 7/9/07, Alma <[EMAIL PROTECTED]> wrote: Its working fine as for the first time when we restart apache server but if we provide invalid users it dispalys the source code of the index.html for which i have this leftpanel-login.mas as a part. If your webserver is sending source code i

Apache::Authcookie

2007-07-10 Thread Alma
this lines Its working fine as for the first time when we restart apache server but if we provide invalid users it dispalys the source code of the index.html for which i have this leftpanel-login.mas as a part. How to handle if the user has entered the invalid users then i want it to redirect i

Re: How Perl script Can know I authorize to Apache

2007-01-04 Thread Owen Cook
On Fri, Jan 05, 2007 at 09:20:55AM +0200, Shlomit Afgin wrote: > > I have a directory that define in a http.conf of apache as password > protected (with AuthUserFile, AuthName, etc) > > When a user arrive to this directory he get few links to a perl > script. > > I wan

How Perl script Can know I authorize to Apache

2007-01-04 Thread Shlomit Afgin
Hi, I have a directory that define in a http.conf of apache as password protected (with AuthUserFile, AuthName, etc) When a user arrive to this directory he get few links to a perl script. I want to know, if there is a way in perl to check if the user past okay the authorization to that

Perl and Apache

2006-08-23 Thread Adilson
Hi All. How can i config Apache to run perl? I tryied to put the correct string, but do not work. My perl is installed into c:\perl Thx Adilson

Perl Postgres Apache problem

2006-08-01 Thread Perlguru
Hi This works from command line but with Apache not, what configuration I have to change or do I need to do more users or rights? #!/usr/bin/perl # print "Content-type: text/plain\n\n" ; use DBI; use strict; my $dbh; my $sth; my @vetor; my $field; $dbh = DBI->connect('

Apache::Session Error.

2006-06-27 Thread Mike Blezien
Hello, we've been using the Apache/Session module for quiet sometime in many applications, for managing cookie/session management and it works great. But now all of a sudden we've noticed the following error quiet often over the last few days. -- [Tue Jun 2

Help needed to Execute CGI on a Apache Server?

2006-05-15 Thread sudeepta ganguly
Hello, This is my first mail to the group. Let me introduce myself. I am Deep, currently working as a Tech Support Engineer in India. I am new to Perl and CGI.I have a few questions regarding the configuration of Apache Server on a Windows 2000 Server? I faced the following issues when I was

Re: A problem with apache installation http://localhost issue

2006-02-22 Thread zhou jian
hrough > > http://127.0.0.0/ or http://localhost/ > > > > It looks bizzare to me, if I can't view it through > > http://localhost, then I couldn't install the > httpd > > related perlmodules because they require the > testing. > > > Apache only

Re: A problem with apache installation http://localhost issue

2006-02-22 Thread Hans Meier (John Doe)
lhost is present. > However, I couldn't view the webpage through > http://127.0.0.0/ or http://localhost/ > > It looks bizzare to me, if I can't view it through > http://localhost, then I couldn't install the httpd > related perlmodules because they requi

A problem with apache installation http://localhost issue

2006-02-22 Thread zhou jian
Hello perl fellows: I encountered a problem when I was installing a perl module. The httpd server related module was hanging overnight when it was trying to test http://localhost:X... Today, I tested with my httpd server installation. I found that I can view the webpage after I started httpd

Re: Can't locate object method "TIEHASH" via package "Apache::Session::MySQL"

2006-01-31 Thread The Ghost
Are you sure that a. the module is installed in a directory that is in @INC and b. that you are using the module (ie use Apache::Session::MySQL;). Given that fact that it worked before, but not now I would assume that it is a module installation problem, not a code problem. a yes b oddly

Re: Can't locate object method "TIEHASH" via package "Apache::Session::MySQL"

2006-01-31 Thread Chas Owens
On 1/31/06, The Ghost <[EMAIL PROTECTED]> wrote: > All the sudden I'm having problems with this module. Ever since I > switched servers. > > # perl -v > > This is perl, v5.8.7 built for i386-freebsd-64int > > Apache::Session is up to date (1.80). > Apac

Can't locate object method "TIEHASH" via package "Apache::Session::MySQL"

2006-01-31 Thread The Ghost
All the sudden I'm having problems with this module. Ever since I switched servers. # perl -v This is perl, v5.8.7 built for i386-freebsd-64int Apache::Session is up to date (1.80). Apache::Session::MySQL is up to date (1.01). DBD::mysql is up to date (3.0002). oh, my code:

Re: regd. cgi -apache

2005-09-19 Thread Wiggins d'Anconia
[EMAIL PROTECTED] wrote: > Hi perlers > > I am having IBM http server installed on my unix machine.. > But ro run cgi perl files I think we need apache. > Though http server supports apache functions. > But stillI am facing problem could u please

regd. cgi -apache

2005-09-19 Thread mayank . ahuja
Hi perlers I am having IBM http server installed on my unix machine.. But ro run cgi perl files I think we need apache. Though http server supports apache functions. But stillI am facing problem could u please tell me what to do Actuallly I am totally new to cgi

Re: Re-starting Apache

2005-07-05 Thread dave.w.turner
the "star spangled banner" (yes, that is a reference to H2G2) (no, don't try it - I was joking) On 7/5/05, Chris Devers <[EMAIL PROTECTED]> wrote: > On Tue, 5 Jul 2005, Ron Smith wrote: > > > My OS stats are: > > > > Apache/2.0.52 (Win32) PHP/4.3.10 mo

Re: Re-starting Apache

2005-07-05 Thread Chris Devers
On Tue, 5 Jul 2005, Ron Smith wrote: My OS stats are: Apache/2.0.52 (Win32) PHP/4.3.10 mod_perl/1.99_18 Perl/v5.8.6 Server at localhost Port 80 This is running on "Win XP Pro". When I try to create a user-defined ENV variable in 'httpd.conf', I'm unable to do a

Re-starting Apache

2005-07-05 Thread Ron Smith
Hi everyone, My OS stats are: Apache/2.0.52 (Win32) PHP/4.3.10 mod_perl/1.99_18 Perl/v5.8.6 Server at localhost Port 80 This is running on "Win XP Pro". When I try to create a user-defined ENV variable in 'httpd.conf', I'm unable to do a re-start of Apache. The ser

FW: PERL/Apache

2005-05-20 Thread Nilay Puri, Noida
> Hi All, > > What are the necessary settings required in httpd.conf to use perl cgi > file thru Apache. > > > Thanks in advance > > > > Disclaimer: This message and any attachment(s) contained here are information that is confidential,propri

Re: PERL/Apache

2005-05-20 Thread Wiggins d'Anconia
Nilay Puri, Noida wrote: > Hi All, > > What are the necessary settings required in httpd.conf to use perl cgi file > thru Apache. > > > Thanks in advance > This is really more an Apache question than a Perl question since CGI can be written in any language, but

PERL/Apache

2005-05-20 Thread Nilay Puri, Noida
Hi All, What are the necessary settings required in httpd.conf to use perl cgi file thru Apache. Thanks in advance Disclaimer: This message and any attachment(s) contained here are information that is confidential,proprietary to HCL Technologies and its customers, privileged or otherwise

RE: Problems accessing oracle via cgi and apache

2005-05-19 Thread brian . barto
Bob you are brilliant. Apache didn't have the environment but my user did. I set the environmental variables in the script like you suggested and it works great! Thanks, Brian -Original Message- From: Bob Showalter [mailto:[EMAIL PROTECTED] Sent: Thursday, May 19, 2005 1:45

RE: Problems accessing oracle via cgi and apache

2005-05-19 Thread Bob Showalter
[EMAIL PROTECTED] wrote: > Hi all. I think I have some sort of permissions problem here i'm > hoping to get help for. > > I'm running apache on HP-UX. I have a perl script that accesses a > database (local) and displays the results in a HTML table format. > Pret

Problems accessing oracle via cgi and apache

2005-05-19 Thread brian . barto
Hi all. I think I have some sort of permissions problem here i'm hoping to get help for. I'm running apache on HP-UX. I have a perl script that accesses a database (local) and displays the results in a HTML table format. Pretty simple. I've done lots of database scripting befo

"Invalid method in request" errors in Apache error log, was Re: error

2005-04-27 Thread Chris Devers
7;s a Perl script, turn on CGI::Carp [1] so that the crash information is directed to the browser in addition to the Apache log; you can add print() statements to help pin down where in the program things are going wrong; you can add better "foo() or die( 'Cannot foo(): $!' )"

Re: apache log parsing

2005-04-11 Thread Michele Ouellet
-- There exist some apps to make statistics from apache logs, -- e.g. awstats (awstats.sourceforge.net), analog, Webalizer and more. -- But don't know which one is the best, sorry. I don't know which is best either but I have been using awstats for an Intranet; it is reasonab

Re[2]: apache log parsing

2005-04-03 Thread John
From: John Doe <[EMAIL PROTECTED]> To: beginners@perl.org Date: Thursday, March 31, 2005, 7:42:03 PM Subject: apache log parsing Thursday, March 31, 2005, 7:42:03 PM, you wrote: > Am Donnerstag, 31. März 2005 15.36 schrieb John: > [...] > Hi John >> I found the a

Re: apache log parsing

2005-03-31 Thread John W. Krahn
John wrote: hello Hello, I want to split the datetime of apache log i tried this code with no success @fields=split(/[/:]/, $datetime); ### DD/MM/:HH:MM:SS has anyone tried anything like that? my @fields = $datetime =~ /\d+/g; John -- use Perl; program fulfillment -- To unsubscribe, e-mail

Re: apache log parsing

2005-03-31 Thread John Doe
Am Donnerstag, 31. März 2005 15.36 schrieb John: [...] Hi John > I found the a module Apache::Regexp can parse apache logs > but i am afraid it cannot output statistics just does what > i am trying to do subsrt the datetime, hosts, etc. There exist some apps to make statistics from ap

Re[2]: apache log parsing

2005-03-31 Thread John
From: John Doe <[EMAIL PROTECTED]> To: beginners@perl.org Date: Thursday, March 31, 2005, 2:24:24 PM Subject: apache log parsing Thursday, March 31, 2005, 2:24:24 PM, you wrote: > Am Donnerstag, 31. März 2005 11.08 schrieb John: >> hello >> >> I want to split

Re: apache log parsing

2005-03-31 Thread Offer Kaye
On Thu, 31 Mar 2005 13:24:24 +0200, John Doe wrote: > > [2] use another "delimiter" (don't know the english term at the moment) > "Delimiter" is the correct term. See "perldoc perlop", the beginning of the section titled "Quote and Quote-like Operators". -- Offer Kaye -- To unsubscribe, e-mail

Re: apache log parsing

2005-03-31 Thread John Doe
Am Donnerstag, 31. März 2005 11.08 schrieb John: > hello > > I want to split the datetime of apache log > > i tried this code with no success > > @fields=split(/[/:]/, $datetime); ### DD/MM/:HH:MM:SS > > has anyone tried anything like that? Always use "use st

apache log parsing

2005-03-31 Thread John
hello I want to split the datetime of apache log i tried this code with no success @fields=split(/[/:]/, $datetime); ### DD/MM/:HH:MM:SS has anyone tried anything like that? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <h

Re: configuring apache

2005-02-12 Thread Wiggins d'Anconia
vishwas bhakit wrote: Dear Sirs, I don't know whether i should ask this query here or not. Because its not perl query its related apache configuration. But if I am right plz help me. I don't have any knowledge over configuring apache for web sites. First time I had tried to configu

configuring apache

2005-02-12 Thread vishwas bhakit
Dear Sirs, I don't know whether i should ask this query here or not. Because its not perl query its related apache configuration. But if I am right plz help me. I don't have any knowledge over configuring apache for web sites. First time I had tried to configure one web site on li

RE: Apache needs permissions to create file

2005-02-07 Thread Bob Showalter
) and the > file, survey.txt, does NOT get created. When running from the command > line the file DOES get created. > If I create the file in question, survey.txt, ahead of time and give > it the permission 666, the webserver (Apache) can then write records > to the file and the sc

Apache needs permissions to create file

2005-02-07 Thread Elliot Holden
nning from the command line the file DOES get created. If I create the file in question, survey.txt, ahead of time and give it the permission 666, the webserver (Apache) can then write records to the file and the script runs with no problem. Alot of people have been telling me that the we

Apache needs permission to create afile

2005-02-06 Thread Elliot Holden
I need to know how to give Apache (in OSX Panther) permission to create a file. In other words, in my script I am using the "open" command to create the file. But it doesn't get created. It works from the command line. Here is my example below: open(OUTFILE, ">

Fwd: RE: configuration steps for perl with apache to support cgi-file

2005-02-05 Thread vishwas bhakit
ner online.--- Begin Message --- httpd.conf == - Hope you Servername dorective is already correct - Add(or uncomment) ScriptAlias /cgi-bin/ "/path/to/Apache/cgi-bin/" - Add(or uncomment) AllowOverride None Options ExecCGI -Original Message- From: vishwas b

RE: configuration steps for perl with apache to support cgi-file

2005-02-04 Thread Manav Mathur
httpd.conf == - Hope you Servername dorective is already correct - Add(or uncomment) ScriptAlias /cgi-bin/ "/path/to/Apache/cgi-bin/" - Add(or uncomment) AllowOverride None Options ExecCGI -Original Message- From: vishwas bhakit [mailto:[EMAIL PROTECTED] Se

configuration steps for perl with apache to support cgi-file

2005-02-04 Thread vishwas bhakit
hello i need to do following. Will anybody help me configuration steps for perl with apache to support cgi-file thnx in advance Yahoo! India Matrimony: Find your life partneronline.

configuration steps for perl with apache to support cgi-file

2005-02-04 Thread vishwas bhakit
hello i need to do following. Will anybody help me configuration steps for perl with apache to support cgi-file thnx in advance Yahoo! India Matrimony: Find your life partneronline.

OT: Re: apache

2004-10-19 Thread Wiggins d Anconia
> Hey! > I am a perl newcomer, and now i have to program webapplications...so i > need a webserver... > how do i see if there is a apache webserver installed on unix? > blame on me:( > regards Eva > Ask the server admin? This isn't really Perl related, yet. h

apache

2004-10-19 Thread E.Horn
Hey! I am a perl newcomer, and now i have to program webapplications...so i need a webserver... how do i see if there is a apache webserver installed on unix? blame on me:( regards Eva -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <h

Re: use lib(''); Apache httpd.conf

2004-06-08 Thread Wiggins d Anconia
swers at the top of the listing... > How might I make Apache aware of ~/my/lib from the httpd.conf so that the > following: > > PerlModule HTML::Mason::ApacheHandler > > will load? What is the equivalent for the httpd.conf of use > lib('/my/lib'); ? >

RE: use lib(''); Apache httpd.conf

2004-06-08 Thread NYIMI Jose (BMB)
> -Original Message- > From: Alex Newby [mailto:[EMAIL PROTECTED] > Sent: Tuesday, June 08, 2004 9:54 AM > To: [EMAIL PROTECTED] > Subject: use lib(''); Apache httpd.conf > > > Hi, > > I have a rather simple question that Google hasn&#x

use lib(''); Apache httpd.conf

2004-06-08 Thread Alex Newby
Hi, I have a rather simple question that Google hasn't produced answers for. Basically, I am installing Mason in a virtual host under mod_perl. The libraries I need are housed in ~/my/lib How might I make Apache aware of ~/my/lib from the httpd.conf so that the following: PerlModule

Re: different versions of same Perl module in different Apache vh osts

2004-06-07 Thread Andrew Gaffney
Bob Showalter wrote: Andrew Gaffney wrote: I will end up having more than 2 vhosts, most of which will need a custom version of this particular module. In that case, I think you'll need to give the modules different names. You could write your handler in such a way that it would recompile the modu

RE: different versions of same Perl module in different Apache vh osts

2004-06-07 Thread Bob Showalter
Andrew Gaffney wrote: > I will end up having more than 2 vhosts, most of which will need a > custom version of this particular module. In that case, I think you'll need to give the modules different names. You could write your handler in such a way that it would recompile the module (switching fla

Re: different versions of same Perl module in different Apache vh osts

2004-06-07 Thread Andrew Gaffney
Bob Showalter wrote: Andrew Gaffney wrote: I didn't really know where to post this since it isn't specifically Apache or Perl, so I'm posting herejust because :) I run 2 vhosts under Apache 1.3.29 (needed for mod_perl-1.x which is needed by HTML::Mason) on my Gentoo server. O

RE: different versions of same Perl module in different Apache vh osts

2004-06-07 Thread Bob Showalter
Andrew Gaffney wrote: > I didn't really know where to post this since it isn't specifically > Apache or Perl, so I'm posting herejust because :) > > I run 2 vhosts under Apache 1.3.29 (needed for mod_perl-1.x which is > needed by HTML::Mason) on my Gentoo se

Re: different versions of same Perl module in different Apache vhosts

2004-06-05 Thread Andrew Gaffney
Philipp Traeder wrote: On Saturday 05 June 2004 HH:18:16, Andrew Gaffney wrote: I didn't really know where to post this since it isn't specifically Apache or Perl, so I'm posting herejust because :) I run 2 vhosts under Apache 1.3.29 (needed for mod_perl-1.x which is needed by

Re: different versions of same Perl module in different Apache vhosts

2004-06-05 Thread Philipp Traeder
On Saturday 05 June 2004 HH:18:16, Andrew Gaffney wrote: > I didn't really know where to post this since it isn't specifically Apache > or Perl, so I'm posting herejust because :) > > I run 2 vhosts under Apache 1.3.29 (needed for mod_perl-1.x which is needed >

different versions of same Perl module in different Apache vhosts

2004-06-05 Thread Andrew Gaffney
I didn't really know where to post this since it isn't specifically Apache or Perl, so I'm posting herejust because :) I run 2 vhosts under Apache 1.3.29 (needed for mod_perl-1.x which is needed by HTML::Mason) on my Gentoo server. One vhost is the current production site

RE: Perl on Apache

2004-05-04 Thread B. Fongo
essage- ||> From: Sumanth Sharma [mailto:[EMAIL PROTECTED] ||> Sent: Tuesday, May 04, 2004 2:07 PM ||> To: [EMAIL PROTECTED] ||> Subject: Perl on Apache ||> ||> Hi All, ||> ||>Pls Bare with me If I am scratching so

RE: Perl on Apache

2004-05-04 Thread B. Fongo
essage- ||> From: Sumanth Sharma [mailto:[EMAIL PROTECTED] ||> Sent: Tuesday, May 04, 2004 2:07 PM ||> To: [EMAIL PROTECTED] ||> Subject: Perl on Apache ||> ||> Hi All, ||> ||>Pls Bare with me If I am scratching so

Re: Perl on Apache

2004-05-04 Thread Sumanth Sharma
Hi Philipp, Thanks a lot. It works. As you could make out, I am nascent to Apache. So It was really useful. Be prepared for more of this kind. Regards, Sumanth === "Philipp Traeder" <[EMAIL PROTECTED]> wrote in message news:

RE: Perl on Apache

2004-05-04 Thread Traeder, Philipp
> Now, I placed a file called host.pl, in the cgi-bin folder > > but when I invoke http://127.0.0.1/cgi-bin/host.pl > My browser tries to download this file. > > But I expected Apache/ or Perl to have executed this script. Maybe you're missing some entries in your apa

Perl on Apache

2004-05-04 Thread Sumanth Sharma
. So, to I plan to use some Perl/CGI to manage this. I have Installed "Apache 2.0" on D:\\ApacheGroup\Apache2". I have also Installed mod_perl over Activestate 5.8.3 build 509 " } I have also configured loop-back i.e 127.0.0.1:80

Re: Fwd: Re: Daemon configuration for Apache

2004-04-28 Thread amrahsa
le, I have reached till the steps where i can look for /etc/rc.d/rc3.d for httpd and apache files but seems for each vendor these files are written differently and i can not found the exact httpd.conf file. Please suggest what you say. Thanks, --- drieux wrote: > > On Apr 24, 2004, a

Re: Daemon configuration for Apache

2004-04-25 Thread amrahsa
information to the user So that they can directly change their configuration rather than editing the file, I have reached till the steps where i can look for /etc/rc.d/rc3.d for httpd and apache files but seems for each vendor these files are written differently and i can not found the exact httpd.conf

Re: Daemon configuration for Apache

2004-04-25 Thread drieux
On Apr 24, 2004, at 2:46 AM, amrahsa wrote: [..] 1) When the system boots up I found in which run level System boots up and go to corresponding directory e.g. /etc/rc.d/rc3.d 2) I look for Sxxapache or Sxxhttp file to see if apache startup file is there Now my problem is one apache startup The

  1   2   3   4   >