RE: What hapened to AxKit.com?

2001-10-08 Thread Matt Sergeant
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] I finally convinced some of my colleagues to look at AxKit as a replacement for Cocoon. But when we try to go to the website, it times out. An nslookup of 'www.axkit.com' and 'www.axkit.org' and 'axkit.org',

RE: Apache::Gallery

2001-10-08 Thread Matt Sergeant
A few suggestions for improvements... Have you seen Stonehenge::Pictures from Randal's WT column? It's kinda neat, and I use it on home.sergeant.org (which is down right now). It allows you to add captions to the images, which it think is something you're sorely missing. And it paginates the

Can't locate object method cleanup_for_exec via package Apache

2001-10-08 Thread Mike P. Mikhailov
Hi list, I'm understood that fork'ing from mod_perl is not very good idea, but we have no choice. Because it is up to user to decide to launch job which syncronize data in the two database sources. And this job may take a long time. I'm has no expirience before in using fork

Re: Can't locate object method cleanup_for_exec via package Apache

2001-10-08 Thread wsheldah
You might be able to do what you want without forking, and without tying up your apache process while the database sync takes place. Just write a server process using something like IO::Socket or POE (see http://poe.perl.org). Have the mod_perl handler send a message to the separate server

Re: proxy block list module?

2001-10-08 Thread Hans Poo
Mark Tiramani wrote: I was looking for an Apache module to handle access control via URL/regex that reads a list of rules from file. I find it hard to believe no-one has done this yet so appologies in advance if I just didn't search properly. I tried searching all the usual sources but

Re: piece of code in mod_perl guide

2001-10-08 Thread Stas Bekman
pascal barbedor wrote: [ ] config.pm file - package AFPA::Evolif::Config ; use XML::LibXML () ; use XML::LibXSLT () ; use XML::XPath () ; use XML::Simple () ; use DBI () ; [ ... ] Hi, Could it be that XML::XPath does file tests on the

Re: Apache::Gallery

2001-10-08 Thread Michael Legart
On Mon, Oct 08, 2001 at 09:38:25AM +0100, Matt Sergeant wrote: Have you seen Stonehenge::Pictures from Randal's WT column? It's kinda neat, and I use it on home.sergeant.org (which is down right now). It allows you Nope, I had no idea that module existed... will look into it though. :-) to

Re: Can't locate object method cleanup_for_exec via package Apache

2001-10-08 Thread Stas Bekman
Mike P. Mikhailov wrote: Hi list, I'm understood that fork'ing from mod_perl is not very good idea, but we have no choice. Because it is up to user to decide to launch job which syncronize data in the two database sources. And this job may take a long time. I'm has no

Re: piece of code in mod_perl guide

2001-10-08 Thread Stas Bekman
Stas Bekman wrote: pascal barbedor wrote: [ ] config.pm file - package AFPA::Evolif::Config ; use XML::LibXML () ; use XML::LibXSLT () ; use XML::XPath () ; use XML::Simple () ; use DBI () ; [ ... ] Hi, Could it be that

Re: Apache::Gallery

2001-10-08 Thread Ged Haywood
HI Randal, On 8 Oct 2001, Randal L. Schwartz wrote: Matt [snip] I'd like to see added [snip] Matt is the images displayed on a .html page with... I'm planning a rewrite that will do exactly that. When? :) 73, Ged.

httpd looking for httpd.conf in wrong path

2001-10-08 Thread Henigan, Timothy
Title: httpd looking for httpd.conf in wrong path I'm attempting to build/install Apache and mod_perl from source (running as root). I can build Apache stand-alone with no trouble using the following commands: - cd /my/src/dir/apache_1.3.20 - ./configure --prefix=/home/apache - make

Redirections after printing content

2001-10-08 Thread Hans Poo
Hi I'am new to the list, and i've been looking for a solution for buffering, in order to decide to make a redirect after the printing of HTML content. It seems that $| don't work fot this. I take a look around and this capacity seem to appear in Apache:ASP at this time i can't use this module,

Apache::Cookie bug with value = undef

2001-10-08 Thread Dave Rolsky
If I do this: Apache::Cookie-new( $r, -name = 'foo', -value = { will_break = '', completely_borked = 1 } )-bake; and then I later try to read the cookie in and do this: my %c = Apache::Cookie-fetch; my %cookie = $c{foo}-value; print

Re: Apache::Request UPLOAD_HOOK

2001-10-08 Thread Joe Schaefer
Issac Goldstand [EMAIL PROTECTED] writes: The documentation on how to use this feature is a bit sketchy... Yes, I agree. Doc patches are always welcome. Comments below are from memory since I last tested this feature about 6 months ago. Can anyone explain: 1) What the variables passed

Re: httpd looking for httpd.conf in wrong path

2001-10-08 Thread Luciano Miguel Ferreira Rocha
I don't know why the APACHE_PREFIX isn't being honored for the configuration files (it's been a long time since I last compiled mod_perl). But you can resolve the problem by creating a symbolic link of /usr/local/apache to /home/apache or by specifying the root directory with -d /home/apache or

RE: httpd looking for httpd.conf in wrong path

2001-10-08 Thread Henigan, Timothy
Title: RE: httpd looking for httpd.conf in wrong path Thanks for the tips. I found another way to correct the problem. If I create a makepl_args.mod_perl file in my mod_perl-1.26 directory with APACHE_PREFIX defined as /home/apache/, the build runs normally and I am able to start the server

Re: Apache::Cookie bug with value = undef

2001-10-08 Thread Ged Haywood
Hi Dave, On Mon, 8 Oct 2001, Dave Rolsky wrote: Apache::Cookie-new( $r, -name = 'foo', -value = { will_break = '', completely_borked = 1 } )-bake; Have you tried doing Apache::Cookie-new( $r, -name = 'foo',

Re: POST and GET and getting multiple unsynced requests

2001-10-08 Thread Luciano Miguel Ferreira Rocha
Hello I've just created a form like that just for testing and it worked fine, (form name=zbr method=POST action=/cgi-bin/printenv/zbr/?zbr=t) I got only one POST /cgi-bin/printenv/zbr/?zbr=t and the ENV was correct: REQUEST_METHOD=POST QUERY_STRING=zbr=t PATH_INFO=zbr CONTENT_LENGTH=42

Re: Apache::Cookie bug with value = undef

2001-10-08 Thread Dave Rolsky
On Mon, 8 Oct 2001, Ged Haywood wrote: Have you tried doing Apache::Cookie-new( $r, -name = 'foo', -value = { wont_break = '1', not_at_all_borked = '' } )-bake; instead? I can hardly control the order in which values are written out to the cookie via

Re: POST and GET and getting multiple unsynced requests

2001-10-08 Thread Perrin Harkins
I've just created a form like that just for testing and it worked fine, (form name=zbr method=POST action=/cgi-bin/printenv/zbr/?zbr=t) I think that's just a coincidence. IIRC, the spec doesn't require this to work, and it doesn't work in all browsers. The only real solution is to not do it.

Re: POST and GET and getting multiple unsynced requests

2001-10-08 Thread Mark Maunder
I think that's just a coincidence. IIRC, the spec doesn't require this to work, and it doesn't work in all browsers. The only real solution is to not do it. PATH_INFO was a good suggestion. I'd go with that if it can't be added to the POST data. Thanks. I've taken your advice and am

Re: What hourly rate to charge for programming?

2001-10-08 Thread Franck PORCHER
Hello, Many factors are to be taken into account to establish a base line. As you say, experience is one. It determines the experience you will provide your client with: your ability to solve their problems, to meet their requirements, to react to constraints, be technical or not, to innovate,

cvs commit: modperl-2.0/lib/ModPerl WrapXS.pm

2001-10-08 Thread dougm
dougm 01/10/08 10:04:46 Modified:lib/ModPerl WrapXS.pm Log: default to Apache::XSLoader if class does not have its own (e.g. ModPerl::) Revision ChangesPath 1.24 +3 -0 modperl-2.0/lib/ModPerl/WrapXS.pm Index: WrapXS.pm

cvs commit: modperl-2.0/xs/tables/current/ModPerl FunctionTable.pm

2001-10-08 Thread dougm
dougm 01/10/08 10:39:54 Modified:xs/tables/current/ModPerl FunctionTable.pm Log: sync Revision ChangesPath 1.33 +10 -2 modperl-2.0/xs/tables/current/ModPerl/FunctionTable.pm Index: FunctionTable.pm

cvs commit: modperl-2.0/src/modules/perl modperl_util.c modperl_util.h

2001-10-08 Thread dougm
dougm 01/10/08 16:34:07 Modified:src/modules/perl modperl_util.c modperl_util.h Log: add modperl_perl_exit() function Revision ChangesPath 1.25 +8 -0 modperl-2.0/src/modules/perl/modperl_util.c Index: modperl_util.c

cvs commit: modperl-2.0/xs/ModPerl/Util - New directory

2001-10-08 Thread dougm
dougm 01/10/08 10:57:28 modperl-2.0/xs/ModPerl/Util - New directory

cvs commit: modperl-2.0/xs/tables/current/ModPerl FunctionTable.pm

2001-10-08 Thread dougm
dougm 01/10/08 10:58:17 Modified:lib/Apache compat.pm xs/maps modperl_functions.map xs/tables/current/ModPerl FunctionTable.pm Log: integrate ModPerl::Util and add Apache::untaint compat functionality Revision ChangesPath 1.19 +3 -0

cvs commit: modperl-2.0/todo api.txt

2001-10-08 Thread dougm
dougm 01/10/08 11:41:10 Modified:todo api.txt Log: 2.0 has removed r-content_language Revision ChangesPath 1.10 +0 -4 modperl-2.0/todo/api.txt Index: api.txt === RCS file:

cvs commit: modperl-2.0/t/response/TestModperl - New directory

2001-10-08 Thread dougm
dougm 01/10/08 13:36:47 modperl-2.0/t/response/TestModperl - New directory