Apache::SharedMem 0.07 installation problem

2001-10-02 Thread Alexei Barantsev
I have problems with Apache::SharedMem 0.07 installation. Here is my configuration: bash$ uname -a Linux dallas 2.2.14-5.0 #1 Tue Mar 7 21:07:39 EST 2000 i686 unknown bash$ perl -v This is perl, v5.6.1 built for i686-linux And here is 'make test' report: bash$ make test

Re: Apache::SharedMem 0.07 installation problem

2001-10-02 Thread Olivier Poitrey
What this command return on your system: $ perl -MIPC::SysV -e 'print IPC::SysV::ftok($ENV{PWD}, $), \n' best regards -- ___ O l i v i e rP o i t r e y USA disaster support http://www.osdn.com/911.shtml

FW: Apache_1.3.19/mod_perl-1.24_01/perl5.6.1 on Solaris 2.6/Sun OS 5.6

2001-10-02 Thread Yeo Puay Hoon
Hi! I have been trying to install the subj combination with no luck. I have gone exactly through the steps suggested in the apache readme file: # gunzip apache_1.3.19.tar.gz # tar -xvf apache_1.3.19.tar # gunzip mod_perl-1.24_01.tar.gz # tar -xvf mod_perl-1.24.01.tar # cd

RE: Apache::SharedMem 0.07 installation problem

2001-10-02 Thread Alexei Barantsev
Nothing, sir! :) The matter is that $ENV{PWD} is empty. Neither works this one: $ perl -MIPC::SysV -e 'print IPC::SysV::ftok(`pwd`, $), \n' This variant works though: $ perl -MIPC::SysV -e 'chomp($pwd = `pwd`); print IPC::SysV::ftok($pwd, $), \n' -1760399103 -Original Message- From:

Re: Apache::SharedMem 0.07 installation problem

2001-10-02 Thread Olivier Poitrey
Ok, the test failed because your $ENV{PWD} is empty, I'll trap this error on 0.08. By the way, why is your $ENV{PWD} empty ? regards -- ___ O l i v i e rP o i t r e y USA disaster support

RE: Apache::SharedMem 0.07 installation problem

2001-10-02 Thread Alexei Barantsev
Actually, it is strange. bash$ echo $PWD /home/barancev bash$ perl -e 'print $ENV{PWD}' bash$ perl -e 'print Oops!\n unless exists $ENV{PWD}' Oops! bash$ By the way, `env` command does not show PWD variable too. Somebody khows what the reason can be? Once again my system configuration is

Re: axkit segfaults

2001-10-02 Thread Robin Berjon
On Sunday 30 September 2001 18:20, [EMAIL PROTECTED] wrote: I read th FAQ but no succes: kampen@eureka:/w20/htdocs/xmltest strings /w20/bin/httpd |grep -i XML kampen@eureka:/w20/htdocs/xmltest I removed ssl and php4 from the build and only concentrated on modperl 1.26 and apache

testing modules under apache

2001-10-02 Thread clayton cottingham
hiya recently here at work ive been asked to start providing test scripts for my projects perl modules ive found that its kinda hard to figure out which way to testcertain paradigms i was wondering what sort of help/tips/tricks anyone out there in modperl land could help me with here is

DB_File needs compatible versions

2001-10-02 Thread [EMAIL PROTECTED]
Hi, I just installed apache 1.3.20, mod_perl 1.26 on a Redhat 7.1 perl 5.6.0 When I go to start apache with my startup.pl file it fails and says DB_File needs compatible versions of libdb db.h you have db.h version 3.1.17 and libdb version 2.4.14 Any pointers? thanks in advance

RE: CGI.pm params not being cleared?

2001-10-02 Thread Alex Harper
OK, here's what I've found: If I install Apache::Sizelimit as a cleanup handler, neither Apache::SizeLimit::exit_if_too_big() or CGI::_reset_globals() are ever called. CGI::initialize_globals (which is what _reset_globals calls) is called once, at compile time for CGI.pm. When I removed

[OT] Re: DB_File needs compatible versions

2001-10-02 Thread Robin Berjon
On Tuesday 02 October 2001 20:19, [EMAIL PROTECTED] wrote: When I go to start apache with my startup.pl file it fails and says DB_File needs compatible versions of libdb db.h you have db.h version 3.1.17 and libdb version 2.4.14 Go to http://www.sleepycat.com, grab the latest

Knowledge Base design/proposal

2001-10-02 Thread James G Smith
I have an initial *very rough* draft of a design document and project proposal for the knowledge base. Please do not consider it final. http://www.jamesmith.com/code/perlkb/ There are links to both PostScript and PDF versions, uncompressed and gzip'd. Comments are welcome on general

RE: ANNOUNCE: Apache::OpenIndex

2001-10-02 Thread Clinton Gormley
OpenIndex provides a file manager for an Apache modperl web site using a web browser. Looks good George any plans to add better authentication (eg certificates) and to set it up for secure SSL file transfers? Clinton Gormley

Apache::DBI

2001-10-02 Thread Markus Linke
Hi, we have a problem with Apache::DBI ... after activating it in httpd.conf the server-start fails when using Apache::DBI. The installation of mod_perl and mod_ssl brought up no error messages. Perl itself works fine Perl DBI works fine Appache works fine Apache Mod_SSL works fine Apache

RE: ANNOUNCE: Apache::OpenIndex

2001-10-02 Thread George Sanderson
At 07:37 PM 10/2/2001 +0100, you wrote: OpenIndex provides a file manager for an Apache modperl web site using a web browser. Looks good George any plans to add better authentication (eg certificates) and to set it up for secure SSL file transfers? Clinton Gormley Authentication and any

RE: CGI.pm params not being cleared?

2001-10-02 Thread Ken Williams
Hi all, It doesn't much matter whether you're using stacked handlers or not, or pushing vs. replacing, because the $r-child_terminate method seems to simply call the C exit(0) function under certain conditions (Win32, old version of apache, anything else?). Not much chance of any further

Re: CGI.pm params not being cleared?

2001-10-02 Thread Perrin Harkins
It doesn't much matter whether you're using stacked handlers or not, or pushing vs. replacing, because the $r-child_terminate method seems to simply call the C exit(0) function under certain conditions (Win32, old version of apache, anything else?). Not much chance of any further action if

Re: Apache::DBI

2001-10-02 Thread victor
Are you using redhat 7.1? Tor. Markus Linke wrote: Hi, we have a problem with Apache::DBI ... after activating it in httpd.conf the server-start fails when using Apache::DBI. The installation of mod_perl and mod_ssl brought up no error messages. Perl itself works fine Perl DBI works

Re: [OT] Re: DB_File needs compatible versions

2001-10-02 Thread victor
I have seen this one before, you will have to recompile DB_File.pm. Maybe someone can shade some light of why this happen, anyways here's how I fix it. 1) I changed the symlink of db.h under /usr/include (btw, I'm using redhat 7.1) and point it to db2/db.h i.e. lrwxrwxrwx1 root root

segfault on start....

2001-10-02 Thread Derek Balling
I seem to have something boned... I can't even run an apachectl configtest without segfaulting. # ../bin/apachectl start ../bin/apachectl: line 171: 16563 Segmentation fault $HTTPD ../bin/apachectl start: httpd could not be started Removing the Apache::Registry call from my httpd.conf

Re: [OT] Re: DB_File needs compatible versions

2001-10-02 Thread Adi Fairbank
I had this problem also with redhat 7.1, and I fixed it the same way. I believe it is caused by loading two different versions of the same shared object into the Apache webserver. In my case, I was loading one version (db2) of berkeley db with: LoadModule db_auth_module

What hourly rate to charge for programming?

2001-10-02 Thread Philip Mak
I've had about two years of experience with perl, and one year of experience with mod_perl and MySQL. I've been doing contract programming jobs for people and charged by the hour. The rate I currently charge them ($40) was kind of chosen randomly. I'd like to find out if this figure is too

Re: What hourly rate to charge for programming?

2001-10-02 Thread Michael Bacarella
I've had about two years of experience with perl, and one year of experience with mod_perl and MySQL. I've been doing contract programming jobs for people and charged by the hour. The rate I currently charge them ($40) was kind of chosen randomly. I'd like to find out if this figure is too

Re: [VOT] What hourly rate to charge for programming?

2001-10-02 Thread Gunther Birznieks
Hey guys..MASSIVELY OFF TOPIC!! :( :( :( At 12:24 AM 10/3/2001 -0400, Michael Bacarella wrote: I've had about two years of experience with perl, and one year of experience with mod_perl and MySQL. I've been doing contract programming jobs for people and charged by the hour. The

Re: What hourly rate to charge for programming?

2001-10-02 Thread Medi Montaseri
Well put...and one more itemwhen you invoice your customer, say net 30, they intentially sit on it for 60 days, then cut and date the check on the 61st day, then keep it in their desk for another two weeks, so what out for cash flow and future value of money On Wed, 3 Oct 2001, Michael

Re: What hourly rate to charge for programming?

2001-10-02 Thread Bryan T. Schmidt
I've had about two years of experience with perl, and one year of experience with mod_perl and MySQL. I've been doing contract programming jobs for people and charged by the hour. The rate I currently charge them ($40) was kind of chosen randomly. I'd like to find out if this figure is too

Re: segfault on start....

2001-10-02 Thread Stas Bekman
Derek Balling wrote: I seem to have something boned... I can't even run an apachectl configtest without segfaulting. # ../bin/apachectl start ../bin/apachectl: line 171: 16563 Segmentation fault $HTTPD ../bin/apachectl start: httpd could not be started Removing the

Re: segfault on start....

2001-10-02 Thread Derek Balling
At 1:01 PM +0800 10/3/01, Stas Bekman wrote: Derek Balling wrote: I seem to have something boned... I can't even run an apachectl configtest without segfaulting. # ../bin/apachectl start ../bin/apachectl: line 171: 16563 Segmentation fault $HTTPD ../bin/apachectl start: httpd could not be

Re: DB_File needs compatible versions

2001-10-02 Thread rise
On Tue, 2 Oct 2001, [EMAIL PROTECTED] wrote: I just installed apache 1.3.20, mod_perl 1.26 on a Redhat 7.1 perl 5.6.0 When I go to start apache with my startup.pl file it fails and says DB_File needs compatible versions of libdb db.h you have db.h version 3.1.17 and libdb version

Re: segfault on start....

2001-10-02 Thread Joshua Chamas
Derek Balling wrote: Did that. THAT's the output I get, nothing more. Make test, and the test server all check out 100% and run fine, its only when I put it in production that it takes a dump, and leaves absolutely nothing except what you see there. Lots of the segfault stuff in SUPPORT

Re: Installation of Apache Weblogic

2001-10-02 Thread Joshua Chamas
Azimul Haque wrote: Hi! I am wondering for installation of Apache weblogic? Could you please tell me what is the exact address for Apache web logic? What is the installation process in Windows machine? Your kind cooperation would highly appeciated This is the mailing list for

Re: segfault on start....

2001-10-02 Thread Derek Balling
At 10:38 PM -0700 10/2/01, Joshua Chamas wrote: Derek Balling wrote: Did that. THAT's the output I get, nothing more. Make test, and the test server all check out 100% and run fine, its only when I put it in production that it takes a dump, and leaves absolutely nothing except what you

Re: site copies under the one httpd

2001-10-02 Thread Joshua Chamas
raptor wrote: hi, I have a site, it has two copies one that is on the Dev server (dev-copy) and the other Production one. So what I want ? I want to have the Production site on my dev machine ... ( i'm arraging that the DB and all dependant stuff get copied after some time passes). But

Re: FW: Apache_1.3.19/mod_perl-1.24_01/perl5.6.1 on Solaris 2.6/Sun OS 5.6

2001-10-02 Thread Joshua Chamas
Yeo Puay Hoon wrote: /expat-lite -DNO_DL_NEEDED `../../apaci` os.c gcc -c -I../../os/unix -I../../include -DSOLARIS2=260 -DUSE_EXPAT -I../../lib /expat-lite -DNO_DL_NEEDED `../../apaci` os-inline.c rm -f libos.a ar cr libos.a os.o os-inline.o make[3]: ar: Command not found make[3]:

Re: segfault on start....

2001-10-02 Thread Thomas Eibner
On Tue, Oct 02, 2001 at 10:46:45PM -0700, Derek Balling wrote: Run your httpd in -X mode without the help of the apachectl start script. You can get that under gdb. -X mode runs in single process mode, and is most handy for diagnosing problems such as these. I guess I'm dense: #

Re: segfault on start....

2001-10-02 Thread Joshua Chamas
Derek Balling wrote: Run your httpd in -X mode without the help of the apachectl start script. You can get that under gdb. -X mode runs in single process mode, and is most handy for diagnosing problems such as these. I guess I'm dense: # ../bin/httpd -X -f conf/httpd.conf.mod_perl

Re: segfault on start....

2001-10-02 Thread Derek Balling
Joshua meant for you to run it in gdb with that option, but it might not be very helpfull if you didn't compile with CFLAGS=-g Well, I did PERL_DEBUG=1, which allegedly does that. :) But you can try it anyay: gdb ../bin/httpd (gdb) run -X likely to give a segmentation fault (gdb) bt and

Re: Apache::DBI

2001-10-02 Thread Joshua Chamas
Markus Linke wrote: /usr/local/apache/bin: apachectl configtest Syntax error on line 1235 of /usr/local/apache/conf/httpd.conf: Can't load '/usr/local/lib/perl5/site_perl/5.6.1/sun4-solaris/auto/DBI/DBI.so' for module DBI: ld.so.1: /usr/local/apache/bin/httpd: fatal: relocation error:

Re: testing modules under apache

2001-10-02 Thread Stas Bekman
clayton cottingham wrote: [the gist of the clayton's request: The code needs to be tested under live httpd with mod_perl. How? ] Apache-Test framework developed for mod_perl 2.0 is *exactly* what you want. See how httpd-2.0 uses it (http://httpd.apache.org/test/ look for 'Perl

cvs commit: modperl-2.0/t/response/TestApache conftree.pm

2001-10-02 Thread stas
stas01/10/02 06:30:32 Modified:perl-framework/Apache-Test/lib/Apache TestConfigPerl.pm t/apisend_fd.t sendfile.t t/filter input_msg.t t/response/TestApache conftree.pm Log: - use the cached Apache::Test::config() instead of

cvs commit: modperl-2.0/todo api.txt missing_old_features.txt

2001-10-02 Thread stas
stas01/10/02 06:36:10 Modified:todo api.txt missing_old_features.txt Log: - Perl{Set|Add}Var and dir_config are implemented Revision ChangesPath 1.7 +0 -3 modperl-2.0/todo/api.txt Index: api.txt