Re: Making perl handlers handle non-Perl

2002-02-27 Thread Nico Erfurth
a subrequest. Now it could intercept the output (written to the handle) and do changes, or tidy it up, whatever you want.. And at least, it should return DECLINE, if it isn't the main-request I'm not sure if this will work, because of the needed tie of the outputhandle and so on,

Debugging mod_perl

2002-03-12 Thread Nico Erfurth
any hooks inside of mod_perl i could use? Do i need to debug apache itself? Where could i start such debugging? -- Mit freundlichen Grüßen - Nico Erfurth Headlight Housingfactory GmbH Email: [EMAIL PROTECTED] -

Re: Creating a proxy using mod_perl

2002-03-15 Thread Nico Erfurth
dler("mod-proxy"), (or maybe "proxy" or "mod_proxy", just check the docs and look for the needed AddHandler directive) ciao -- Mit freundlichen Grüßen ----- Nico Erfurth Headlight Housingfactory GmbH Email: [EMAIL PROTECTED] -

Getting the output-filehandle

2002-05-13 Thread Nico Erfurth
Hi, I'm wondering if it's possible to retrieve some kind of FH from the Request-object, because i want to pass the output-filehandle to HTML::Template, so it can write while it parses a template. STDOUT doesn't work (would be too easy ;)) I thought about creating my own FH, tied to a simple c

[OT+RFC] Template.pm-patch

2002-06-11 Thread Nico Erfurth
Hi, some weeks ago i did a little "improvement" to HTML::Template, at least i think it is a improvement ;) It changes the way arrays/loops are handled. 1.) If you pass in a array-reference, it will be not dereferenced anymore I did this, so i can use a small Wrapper-class, which allows me to

Re: [OT+RFC] Template.pm-patch

2002-06-11 Thread Nico Erfurth
On Tue, 11 Jun 2002, Sam Tregar wrote: > On Tue, 11 Jun 2002, Nico Erfurth wrote: > > > It changes the way arrays/loops are handled. > > 1.) If you pass in a array-reference, it will be not dereferenced anymore > > I did this, so i can use a small Wrapper-c

Re: [OT+RFC] Template.pm-patch

2002-06-11 Thread Nico Erfurth
On Tue, 11 Jun 2002, Sam Tregar wrote: > > I thought about this, and i'm wondering how much ppl realy use it in > > this way. IMHO it should be a "Don't try this, it will break", instead > > introducing this copy-"workaround". But i think i will use this patch > > only for my private-version,

[OT] Programming Language Benchmarks

2002-06-12 Thread Nico Erfurth
http://www.bagley.org/~doug/shootout/ It's nice to see perl compared to php ;) ciao

Re: User process ownership

2002-09-04 Thread Nico Erfurth
John Stauffacher wrote: > All, > > I've run into an interesting problem which I can't seem to figure out. > Here it is: I have created a web form/perl script that sets up a users > vacation file and .forward for them. Which works. The only problem is, I > cannot write to their home directory (bec

VirtualHosts-Config inside of modules

2001-11-22 Thread Nico Erfurth
Hi, i made a small script to configure an Apache-Webserver via LDAP-entries. First i put everything in a -Section, it worked. Now i want to put it inside a module, and everything works, EXCEPT, that i can't add VirtualHosts. in the -Version i used use vars(%VirtualHost,@NameVirtualHost), but in