Re: Referencing Directives

2002-05-29 Thread Ian D. Stewart
On 2002.05.28 01:23 Per Einar Ellefsen wrote: Or... maybe you could try using Apache class methods inside Perl sections (like document_root) -- however I think that'd be pretty shaky. Hmm...something to tinker with as time permits... Thanx, Ian

Referencing Directives

2002-05-27 Thread Ian D. Stewart
Is it possible to reference the value of one Directive within another Directive (e.g., PerlSetVar VariableName ${DocumentRoot}/subdir) ? Thanx, Ian

Re: Referencing Directives

2002-05-27 Thread Per Einar Ellefsen
At 21:13 27.05.2002, Ian D. Stewart wrote: Is it possible to reference the value of one Directive within another Directive (e.g., PerlSetVar VariableName ${DocumentRoot}/subdir) ? If you use Perl sections, yes. Perl $DocumentRoot = '/home/httpd/htdocs'; push @PerlSetVar, [ VariableName =

Re: Referencing Directives

2002-05-27 Thread Ian D. Stewart
On 2002.05.27 15:39 Per Einar Ellefsen wrote: At 21:13 27.05.2002, Ian D. Stewart wrote: Is it possible to reference the value of one Directive within another Directive (e.g., PerlSetVar VariableName ${DocumentRoot}/subdir) ? If you use Perl sections, yes. Perl $DocumentRoot =