Re: Errors trying to port (old) mod_perl software

2003-08-22 Thread Stas Bekman
Harold Martin wrote: Hello, I'm trying to get some old mod_perl software (namely ProMP3 http://promp3.sourceforge.net/) to work under mod_perl2. It uses Apache::Constants, but it couldn't find that module (duh), so I too a stab in the dark and changed it to Apache::Const. When I try to run that I g

PATCH porting.pod "First Mystery"

2003-08-22 Thread nobull
In private mail Stas Bekman <[EMAIL PROTECTED]> writes: > oops, that should be the modperl list... at modperl-docs we discuss > mostly site/docs techical issues and there are very few people on this > list to get enough exposure for this kind of feedback request. Patch for "The First Mystery" sec

ANNOUNCE: Loggerithim 6.4.0

2003-08-22 Thread Cory 'G' Watson
Loggerithim is a package for monitoring, visualizing, and managing your systems using remote agents and a web interface. Changes in this version: - Autoconf & make installer - New agent (Solaris and Linux) utilizing SSL for communication - Group based permissions - Improvements to graphing co

Errors trying to port (old) mod_perl software

2003-08-22 Thread Harold Martin
Hello, I'm trying to get some old mod_perl software (namely ProMP3 http://promp3.sourceforge.net/) to work under mod_perl2. It uses Apache::Constants, but it couldn't find that module (duh), so I too a stab in the dark and changed it to Apache::Const. When I try to run that I get the error: Can't l

Re: temporary installation directory for mp1's make install

2003-08-22 Thread Udo Rader
Am Fri, 22 Aug 2003 17:34:40 + schrieb Stas Bekman: > Udo Rader wrote: >> hi all, >> >> for one of our webprojects I have to setup the typical >> apache1-mod_perl-mod_ssl httpd, which is not too difficult. Our sysadmin >> rules however require me to set this up as _one_ nice RPM package, whic

Re: Apache 2.0, mod_perl filter question

2003-08-22 Thread Ilia Rassadzin
Hello, I am trying to use as a proxy Apache 2.0 which includes mod_proxy and mod_ssl. I am trying to use mod_perl for parsing/changing decrypted plain text HTML data passed over SSL. maybe there are other ways to do this, let me know. The script shows that it is theoretically possibly to parse/mo

Use of uninitialized valued in concatenation....

2003-08-22 Thread B. Fongo
Title: Use of uninitialized valued in concatenation Hello I have a file (output_tab.pm) that I use to generate tables dynamically. Even though it serves its purpose, it goes on generating this error: “Script_name.pl: Use of uninitialized value in concatenation (.) or string at output_

Re: Apache::Session

2003-08-22 Thread Marcel Greter
All the information that comes from the user-agent can be faked. So the session id is as insecure as any other identifier you get from the Browser. The only thing that could be used is the IP address, and as somebody said earlier, some ISPs and big company LANs may use different proxies for dif

Re: Apache 2.0, mod_perl filter question

2003-08-22 Thread Gedanken
To the best of my knowledge, the 'proxy' that is used in LWP still cannot support CONNECT style SSL proxies, meaning its very hit or miss if it works - roughly 50/50 for the few hundred proxies ive checked recently. try replacing *all* your $UA->proxy lines with $ENV{HTTPS_PROXY} = "http://loc

Re: Apache 2.0, mod_perl filter question

2003-08-22 Thread Stas Bekman
Ilia Rassadzin wrote: Hello, I am trying to filter DECRYPTED, PLAIN TEXT data. I attached my two configuration files. If more information needed i can send my logs. Ideally I want to make a setup where encryption/decryption being done twice in order to filter DECRYPTED, PLAIN TEXT data(correct me

problem with mod_perl 2.0 + apache 2.0 and proxyreq

2003-08-22 Thread John Chiu
Thanks in advance. I've tried all the archives and google'd but I have not found anything that would help.   I'm running RH 8.0, httpd-2.0.40-11.5 and mod_perl-1.99_05-3 from the RedHat distribution. I'm trying to create a small proxy module that will check a non-proxy request and dependi

Re: Apache 2.0, mod_perl filter question

2003-08-22 Thread Ilia Rassadzin
Hello, I am trying to filter DECRYPTED, PLAIN TEXT data. I attached my two configuration files. If more information needed i can send my logs. Ideally I want to make a setup where encryption/decryption being done twice in order to filter DECRYPTED, PLAIN TEXT data(correct me if I am wrong) Like S

Re: temporary installation directory for mp1's make install

2003-08-22 Thread Stas Bekman
Udo Rader wrote: hi all, for one of our webprojects I have to setup the typical apache1-mod_perl-mod_ssl httpd, which is not too difficult. Our sysadmin rules however require me to set this up as _one_ nice RPM package, which should not be too difficult either, but of course there has to be some p

Re: temporary installation directory for mp1's make install

2003-08-22 Thread Udo Rader
I digged a bit further into the issue and found that there is a "pure_install" target in the Makefile for mod_perl-1.28 that probably fits better than the plain install target. However this still installs file in outside the temporary build root, so even a % make pure_install PREFIX=/var/tmp/mod_

temporary installation directory for mp1's make install

2003-08-22 Thread Udo Rader
hi all, for one of our webprojects I have to setup the typical apache1-mod_perl-mod_ssl httpd, which is not too difficult. Our sysadmin rules however require me to set this up as _one_ nice RPM package, which should not be too difficult either, but of course there has to be some problem. The enti