Can't locate object method dir_config via package Apache::RegistryFilter

2001-12-18 Thread Gerald Menzel
Hi, I have a problem with Apache::RegistryFilter. I can't get it to work. If I try to use it I allways get this error message: [error] Can't locate object method dir_config via package Apache::RegistryFilter ยด (perhaps you forgot to load Apache::RegistryFilter?) at

Authentications fails after upgrade to 1.3.22

2001-12-18 Thread BeerBong
Hello all! I use Apache::AuthenRadius for authorization - all worked fine until I upgrade Apache to 1.3.22 and mod_perl to 1.26 from Apache 1.3.19 and mod_perl 1.25 In config file ### IfDefine power # - I use this for determination which

ANNOUNCE: Log::Dispatch::Config 0.06

2001-12-18 Thread Tatsuhiko Miyagawa
Log::Dispatch::Config provides a way to configure Log::Dispatch with various config file (default AppConfig, but you can plug your own!). Newest version 0.06 is now on its way to CPAN. 0.06 Tue Dec 18 21:27:51 JST 2001 --- developer API change --- * Added

using Apache::ReadConfig to configure from perl scripts

2001-12-18 Thread Issac Goldstand
Hi all... I'm trying to put the finishing touches on Apache::UploadMeter, but am running into a minor problem. Due to the complexity of the configuration, I'm trying to use the Apache::ReadConfig namespace from mod_perl_start.pl to dynamically configure the upload-meter (by setting some

Re: Can't locate object method dir_config via package Apache::RegistryFilter

2001-12-18 Thread Gerald Menzel
Sorry Anand, but this don't help me, because I want to use Apache::Filter for parsing the output of cgi-scripts. bb, Gerald Menzel. This should help you, Files *.cgi SetHandler perl-script PerlHandler Apache::Registry Options +ExecCGI PerlSendHeader On /Files Regards, Anand

Re: using Apache::ReadConfig to configure from perl scripts

2001-12-18 Thread Geoffrey Young
Issac Goldstand wrote: Hi all... I'm trying to put the finishing touches on Apache::UploadMeter, but am running into a minor problem. Due to the complexity of the configuration, I'm trying to use the Apache::ReadConfig namespace from mod_perl_start.pl to dynamically configure the

[modperl site design challenge] and the winner is...

2001-12-18 Thread Stas Bekman
The mod_perl design contest's voting process took 12 days and is over now. and the winner is # Design by Votes -- 1. Thomas Klausner 86 2. Carlos Ramirez 50 3. Allan Juul 31 -- Total 167 Congratulation to the three

modperl questions

2001-12-18 Thread Alastair Stuart
hello world, I have been eavesdropping on this list for a while and have enjoyed the general discussion. I have been working on a perl based application for about a year now, and am longing to migrate to mod_perl. I build a few simple commercial sites with mod perl previously and loved it. My

Re: [modperl site design challenge] and the winner is...

2001-12-18 Thread Stas Bekman
That's said I suggest that any further discussion on this topic is to be made on the modperl-site list, so not to clutter the modperl users list with unnecessary noise. I've originaly posted here, because I wanted to reach as many caring users as possible. But now those interested in the

Re: modperl questions

2001-12-18 Thread Maarten Koskamp
- Original Message - From: Alastair Stuart [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, December 18, 2001 3:38 PM Subject: modperl questions [snip] -- how to add new aliases to httpd.conf or ./conf/clients.pl without having to restart apache ?? Why not use a perl handler?

Re: modperl questions

2001-12-18 Thread Perrin Harkins
as it stands, the cgi structure looks like this https://www.foo.co.za/cgi-bin/client1/index.pl https://www.foo.co.za/cgi-bin/client2/index.pl it would be better if it was https://www.foo.co.za/client1 https://www.foo.co.za/client2 You can just use this in your httpd.conf:

Re: libapreq. Apache::Cookie returns different 'expires' than CGI::Cookie?

2001-12-18 Thread Alexei Danchenkov
Hello, darren, Friday, December 14, 2001, 9:39:46 PM, you wrote: dc Alexei Danchenkov [EMAIL PROTECTED] said something to this effect on 12/14/2001: Hello, All! I wonder why my '$cookie-expires' for this code returns a different result than the similar one with CGI::Cookie (commented). The

Re: mod_perl book status

2001-12-18 Thread Robert Landrum
At 9:58 AM + 12/18/01, Ged Haywood wrote: Hi all, On Mon, 17 Dec 2001, Stas Bekman wrote (privately, discussing a book review:): Ged wrote: book_extract If you want to use CApache::DBI but you have both situations on one machine, at the time of writing the only solution is to run

Re: mod_perl book status

2001-12-18 Thread Geoffrey Young
From one of Geoffrey's digests: You can disable Apache::DBI database handle persistence on the fly by changing DBI-connect() to the undocumented 5 parameter call $dbh = DBI-connect($dbase, $user, $pass, \%attr, undef, connect) || die $DBI::errstr;

Re: using Apache::ReadConfig to configure from perl scripts

2001-12-18 Thread Issac Goldstand
Well, I'm getting some of the stuff to work... Just not all three Locations and I can't figure out what keeps breaking. It's really weird... When I had the first two handlers set to PerlInitHandler and the third to PostReadRequestHandler (Which ought not work in a Location) only the third

Re: Apache::Cooke reserved chars

2001-12-18 Thread darren chamberlain
[EMAIL PROTECTED] [EMAIL PROTECTED] said something to this effect on 12/17/2001: I'm recording a url at the beginning of an app to restore the entrance url: sub set_referer { my $self = shift; if ($self-{R}) { require Apache::Cookie;

RE: file upload process

2001-12-18 Thread eCap
I've tried the HOOK routine but it doesn't appear to work too well. I'm most likely doing something wrong but would be interested in seeing your UploadMeter application. Care to share? Kirk -Original Message- From: Issac Goldstand [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December

Mason vs embperl

2001-12-18 Thread Lihn, Horng-Twu
Hi, I am planning a website and considering either using Mason or using embperl. I already digged into Mason and am reading embperl manual. Can someone shed some light about these two tools with regard to ease of use, current development effort, and the future support level? Thanks, Steve Lihn

Re: Mason vs embperl

2001-12-18 Thread Kee Hinckley
At 11:39 AM -0500 12/18/01, Lihn, Horng-Twu wrote: Hi, I am planning a website and considering either using Mason or using embperl. I already digged into Mason and am reading embperl manual. Can someone shed some light about these two tools with regard to ease of use, current development effort,

Re: modperl questions

2001-12-18 Thread Scott Alexander
On Tue, 18 Dec 2001, Alastair Stuart wrote: question one There is a need to add new client profiles to the centralised database, which create new application filesystems, new database structures and CGI trees. Thus a new profile can be created and activated with the push of a few buttons,

Re: Apache::Cooke reserved chars

2001-12-18 Thread dbohling
darren chamberlain wrote: [EMAIL PROTECTED] [EMAIL PROTECTED] said something to this effect on 12/17/2001: I'm recording a url at the beginning of an app to restore the entrance url: sub set_referer { my $self = shift; if ($self-{R}) { require Apache::Cookie;

PerlAccessHandler and LimitExcept question.

2001-12-18 Thread Joe Pearson
When I put a PerlAccessHandler inside a LimitExcept, it does not seem to work within the LimitExcept. It behaves as if there was no LimitExcept. For instance, I wrote a simple access handler for webdav that only allows users into their own directories. So user joe can only get to

Re: Mason vs embperl

2001-12-18 Thread C.Hauser - IT assistance GmbH
Basel, Dienstag, 18. Dezember 2001, 19:02:12 . *see original email below* Hello Horng-Twu I was evaluating tools like silverstream then I dropped over Mason. I rejoiced a) Perl is my native IT language b) the system is not a blackbox like the products

Re: Mason vs embperl

2001-12-18 Thread Ajit Deshpande
[..] I am planning a website and considering either using Mason or using embperl. I already digged into [..] Take a look at Perrin Harkin's article on Choosing a Templating System http://www.perl.com/pub/a/2001/08/21/templating.html Ajit

Re: Apache::Cooke reserved chars

2001-12-18 Thread darren chamberlain
[EMAIL PROTECTED] [EMAIL PROTECTED] said something to this effect on 12/18/2001: Use escape_uri and unescape_uri, or some other pair of reversable functions. For example, store it as: Tried this and it appears that Apache::Util escapes the same characters that Apache::Cookie does when it

Re: [modperl site design challenge] and the winner is...

2001-12-18 Thread Thomas Klausner
Hi! On Tue, Dec 18, 2001 at 10:28:04PM +0800, Stas Bekman wrote: # Design by Votes -- 1. Thomas Klausner 86 yeah! Since Thomas' design has won the gold, I suggest that we incorporate the constructive comments (attached) into his design, with David Harris'

RE: Mason vs embperl

2001-12-18 Thread Lihn, Horng-Twu
I have a library of perl routine that I call in cgi-bin environment where I usually require. I could not find any way to require it and use it in Embperl. I can not find any doc describing how this is done. (I can require it in the Mason handler.pl) Can you shed a light? I think it has

Re: Apache::Cooke reserved chars

2001-12-18 Thread dbohling
darren chamberlain wrote: [EMAIL PROTECTED] [EMAIL PROTECTED] said something to this effect on 12/18/2001: Use escape_uri and unescape_uri, or some other pair of reversable functions. For example, store it as: Tried this and it appears that Apache::Util escapes the same characters that

Re: Comparison of different caching schemes

2001-12-18 Thread Bill Moseley
Ok, I'm a bit slow... At 03:05 PM 12/12/01 +1100, Rob Mueller (fastmail) wrote: Just thought people might be interested... Seems like they were! Thanks again. I didn't see anyone comment about this, but I was a bit surprised by MySQLs good performance. I suppose caching is key. I

[DIGEST] mod_perl digest 2001/12/15

2001-12-18 Thread James G Smith
-- mod_perl digest December 1, 2001 - December 15, 2001 -- Recent happenings in the mod_perl world... With many

Re: [DIGEST] mod_perl digest 2001/12/15

2001-12-18 Thread Ged Haywood
Hi James, On Tue, 18 Dec 2001, James G Smith wrote: With many thanks to Geoffrey Young for his work on this digest in the past, I will try and continue the job for a while. Good man! 73, Ged.

Compile error trying to build libapreq-0.33

2001-12-18 Thread Bob Kramer
When trying to build Bundle::Apache, I am getting a compile error with libapreq-0.33, regarding a typemap missing an entry. A script showing what I'm doing and the subsequent error follows. Any pointers would be greatly appreciated (including this belongs in another forum, as this is my first

embperl [* *] does not work

2001-12-18 Thread Lihn, Horng-Twu
I am trying [* *] tag and the code as simple as this does not work. I am using embperl 1.3.2 build from theoryx5.uwinnipeg.ca for Windows. H3Test/H3 [* $c = 5; *] count: [+ $c +] [* $c++; *] count: [+ $c +] - Steve Lihn FIS Database

Re: [modperl site design challenge] and the winner is...[getting OT]

2001-12-18 Thread allan
hello all a few comments from me regarding the competion. first of all a big thank to stas for invoking it. it was quite fun and challenging but also hard work getting the job done (learning TT + doc-set). secondly. thomas (and carlos), congratulations! i liked both your solutions. also

XSLT templating Re: Mason vs embperl

2001-12-18 Thread dapi
BTW. Does anybody use XSLT templating realy? I found it is rather useful and want to make new projects templates with it. Perhaps, I didn't see some difficulties and it will be problems in the future. Doesn't any body comment this thing? I hope this is not badly off topic. Thank you. --

Re: [modperl site design challenge] and the winner is...

2001-12-18 Thread Carlos Ramirez
Thomas Klausner wrote: # Design by Votes -- 1. Thomas Klausner 86 yeah! Congrats Thomas! (and Allan). Ideally if Thomas, Carlos and Allan could take the best of each other's work and produce the perfect design, that That would be OK for me, Carlos, Allan??

mixing script in virtual hosts

2001-12-18 Thread Yuri A. Kabaenkov
Hello, I am using Apache/1.3.22 (Unix) AuthMySQL/2.20 mod_auth_pgsql/0.9.9 PHP/4.1.0 mod_perl/1.26 mod_ssl/2.8.5 OpenSSL/0.9.6a on FreeBSD 4.4-STABLE And have some problems with mode_perl cache. I have some scripts which requires own modules via 'use' I

Re: [modperl site design challenge] and the winner is...

2001-12-18 Thread anandr
Hi ALL, I did love the result and I too go by,.. Ideally if Thomas, Carlos and Allan could take the best of each other's work and produce the perfectdesign, I am willing to help you guys,. Congrats Thomas and other participents. With best regards, Anand R [EMAIL PROTECTED] Quoting