>How do I get the CVS version?
see
perldoc CVS.pod
Gerald
--
Gerald Richter ecos electronic communication services gmbh
IT-Securitylösungen * dynamische Webapplikationen * Consulting
Post: Tulpenstrasse 5 D-55276 Di
Gerald,
How do I get the CVS version?
Also, I'm getting an error when I start Apache:
Starting httpd: [Mon Mar 31 20:34:36 2003] [error] Can't locate Apache.pm in
@INC (@INC contains: /usr/lib/perl5/5.8.0/i386-linux-thread-multi
/usr/lib/perl5/5.8.0 /usr/lib/perl5/site_perl/5.8.0/i386-linux-thre
>I just tried Perl -MCPAN -e shell
> install HTML::Embperl
>and it pulled down 2.0b8.
Perl 5.8.0 requires the newest Embperl version from the cvs to work
Gerald
--
Gerald Richter ecos electronic communication services gmbh
IT-Secu
>
> That does not help either.. any more ideas? Or could somebody
> send me a working sample configuration for Apache2 ?
>
Does make test work for you?
If yes you have a woring configuration in test/conf/httpd.conf
Gerald
--
Gerald Ri
I'm installing on RH8.0 (Perl 5.8.0), Apache (httpd-2.0.40-11.i386.rpm),
Mod_Perl (mod_perl-1.99_05-3.i386.rpm).
I just tried Perl -MCPAN -e shell
> install HTML::Embperl
and it pulled down 2.0b8.
Here's where it blows up:
Testing offline mode...
#0 ascii... ok
#1 pure.htm.
On Mon, Mar 31, 2003 at 08:05:48AM +0200, Gerald Richter wrote:
> > When I try directives like
> > EMBPERL_DEBUG 1
> > I get "Invalid command 'EMBPERL_DEBUG', perhaps mis-spelled or defined
> > by a module not included in the server configuration".
>
> Do you have a ClearModuleList anywhere in you
Hi,
I am not sure but it could be due to the tie implementation of %udat wich has
also other issues and limitations.
In my login page, when I want to clean %udat I simply iterate on each value,
ex:
foreach (keys %udat) {
delete $udat{$_};
}
Regards,
Luiz Fernando B. Ribeiro
Engenho S
Sorry, needs more info.
> But when I reach login.epl, %udat is still fully populated. Does the
> relocation have this influence?
Not all the time. Sometimes it is, sometimes not. I print %udat from
base.tepl, but that shouldn't make any difference (?)
I'm using 2.0b9 from cvs (taken a couple of
I have a logout.epl file with this construct:
%udat = () ;
my $prot = "http://";;
if ($forceHttps and $ENV{HTTPS} ne 'on') {
$prot = "https://";;
}
my $fn = "login.epl";
$fn = $prot . $ENV{HTTP_HOST} . $basedir . $fn;
$http_headers_out{'Location'} = $fn
But when I reach login.ep