Can't locate object method header_in via package Apache::Compress

2002-09-11 Thread Dirk Lutzebaeck
Hi, I get the following error sporadically on modperl 1.27 and apache 1.3.26 and Apache::Compress 1.003 either under RH7.x or Solaris 7: Can't locate object method header_in via package Apache::Compress (perhaps you forgot to load Apache::Compress?) at

Archive::Tar

2002-09-11 Thread john.buwa
Hello, I am trying to use the following program to archive directories of large files but I can not get any wildcard combination to work: #!/usr/bin/perl use Archive::Tar; Archive::Tar-create_archive (test.tar, 9, backup/*.*); print join \n, Archive::Tar-list_archive (test.tar), ; How can I

Re: Archive::Tar

2002-09-11 Thread Lupe Christoph
Waay offtopic. But here goes: On Wednesday, 2002-09-11 at 04:06:20 -0500, [EMAIL PROTECTED] wrote: I am trying to use the following program to archive directories of large files but I can not get any wildcard combination to work: Archive::Tar does not do Wildcards. #!/usr/bin/perl use

RE: Can't locate object method header_in via packageApache::C ompress

2002-09-11 Thread Narins, Josh
I'd hazard a guess that, somewhere in the code, some snippet is calling Apache::Compress-handler (as a class method) which means that the string Apache::Compress is the first argument, not the Apache::Request object you expect. Try... sub handler { my $r = shift; print STDERR r is a . (ref

Re: Morning bug w/out using Apache::DBI?

2002-09-11 Thread Perrin Harkins
Your problem doesn't sound like something that Apache::DBI would cause. Deadlock problems are caused by conflicting updates, which could only be coming from your code. I'm not positive but maybe it seemed like there were stale handlers lying around that weren't being closed If you put

Re: performance regarding mod_perl vs mod_c with embedded perl

2002-09-11 Thread Perrin Harkins
Pierre Laplante wrote: If I compiled a c module that embed a perl interpreter and I benchmark this again the same module in mod_perl I got a big difference in favor of mod_c. It will be hard for anyone to give you a good answer unless you post the code that you benchmarked. At a guess, I

Re:AxKit under Win32

2002-09-11 Thread [EMAIL PROTECTED]
Does anybody know where I can find information for installing and running AxKit under windows (is this possible?). I looked on axkit.org but didn't find any guidance. Thanks PC there is a ppm available at theoryx5.uwinnipeg.ca/ppmpackages but on win32 there is no cache of pages possible

AxKit under Win32

2002-09-11 Thread Prakash Chatterjee
Does anybody know where I can find information for installing and running AxKit under windows (is this possible?). I looked on axkit.org but didn't find any guidance. Thanks PC

Re: AxKit under Win32

2002-09-11 Thread Tom Hukins
On Wed, Sep 11, 2002 at 03:42:13PM +0100, Prakash Chatterjee wrote: Does anybody know where I can find information for installing and running AxKit under windows (is this possible?). Searching Google for axkit windows leads to: http://axkit.org/faq.xml (see Can I run AxKit on Windows?)

Re: AxKit under Win32

2002-09-11 Thread Randy Kobes
On Wed, 11 Sep 2002, Prakash Chatterjee wrote: Does anybody know where I can find information for installing and running AxKit under windows (is this possible?). I looked on axkit.org but didn't find any guidance. We have a ppm package of it in http://theoryx5.uwinnipeg.ca/ppmpackages/

RE: NTLM module

2002-09-11 Thread Harnish, Joe
Title: RE: NTLM module True, it will be awesome if it can be fixed. But to get Adam going he can implement some sort of Sessions (which he already has), use $r-headers_out-set(Connection = 'close'); (to force a new connection), and a whole lot of duct tape. I think I may tweak that patch I

Re: Archive::Tar

2002-09-11 Thread Anthony E.
not sure about Archive::Tar...but here's the command line, you can call this in your perl script. tar czf ./test.tar.gz ./backups --files-from ./include.txt If you wanted to include only *.pl, just put *.pl in your include.txt file. (same goes for exclusion, use --exlude-from instead) ---

Re: AxKit under Win32

2002-09-11 Thread Anthony E.
From the Axkit site: Can I run AxKit on Windows? Yes, although it is not considered a primary platform, so you are mostly on your own with this. You can install it via ActiveState's PPM as follows: ppm install

Re: Archive::Tar

2002-09-11 Thread Steven Lembark
-- Anthony E. [EMAIL PROTECTED] How can I get this to tar the entire backup directory? And if I wanted to say pic out all file based on extensions later on like .pl *.pl how to do that as well with this? gnu cpio will write tar: find $dir | cpio -ov -Htar | gzip --best

Re: AxKit under Win32

2002-09-11 Thread Randy Kobes
On Wed, 11 Sep 2002, Anthony E. wrote: From the Axkit site: Can I run AxKit on Windows? Yes, although it is not considered a primary platform, so you are mostly on your own with this. You can install it via ActiveState's PPM as follows: ppm install

Re: AxKit under Win32

2002-09-11 Thread Anthony E.
...neither have much info. --- Randy Kobes [EMAIL PROTECTED] wrote: On Wed, 11 Sep 2002, Anthony E. wrote: From the Axkit site: Can I run AxKit on Windows? Yes, although it is not considered a primary platform, so you are mostly on your own with this. You can install it via

HTML::Mason + Apache::Session problem

2002-09-11 Thread Ufuk Yuzereroglu
Hi I am running a RedHat 7.3 server with kernel 2.4.18, Apache 1.3.26, mod_perl 1.26-5 and Apache::Session and HTML:Mason-1.05 modules. When I try to start apache i get the error message Starting httpd: Subroutine status_mason redefined at

Re: NTLM module and POST

2002-09-11 Thread Gerald Richter
RE: NTLM moduleHi, I just tried AuthenNTLM and POST and it works for me. I would like to be able to reproduce the problem here to create the right fix. I am using IE 5.5SP2. Does the POST problem occurs always or only sometime or only with some browsers or OSs? Gerald P.S. Adding some kind of

Re: Archive::Tar

2002-09-11 Thread Randy J. Ray
Most of the replies have focused on how to do this with external calls to tar or cpio, without actually addressing the original writer's problem, how to do it with Archive::Tar. The first respondent noted that Archive::Tar doesn't do wildcarding. Or, as it is called in the Perl docs,

Documentation for Apache::exit()?

2002-09-11 Thread Francisco Corella
Hello, The Modules book by Lincoln Stein and Doug MacEachern (pp.464-465) says that Apache::exit() can be used to halt script execution without terminating the process and without logging an error. The User Guide at http://perl.apache.org/docs/1.0/guide/index.htmlhas a section

Re: performance regarding mod_perl vs mod_c with embedded perl

2002-09-11 Thread Pierre Laplante
On Wed, 11 Sep 2002, Perrin Harkins wrote: Pierre Laplante wrote: If I compiled a c module that embed a perl interpreter and I benchmark this again the same module in mod_perl I got a big difference in favor of mod_c. It will be hard for anyone to give you a good answer unless you

Re: AxKit under Win32

2002-09-11 Thread Randy Kobes
On Wed, 11 Sep 2002, Anthony E. wrote: [ snip references to axkit.org ] ...neither have much info. The quick start guide at http://www.axkit.org/docs/quick_start.dkb should be enough to get going -- best regards, randy kobes