Re: Embperl install error

2003-03-31 Thread Gerald Richter
>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

Re: Embperl install error

2003-03-31 Thread Scott Chapman
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

Re: Embperl install error

2003-03-31 Thread Gerald Richter
>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

Re: Empberl::Object on Apache 2

2003-03-31 Thread Gerald Richter
> > 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

Embperl install error

2003-03-31 Thread Scott Chapman
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.

Re: Empberl::Object on Apache 2

2003-03-31 Thread Andre Landwehr
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

Re: Does udat always work?

2003-03-31 Thread Luiz Fernando Bernardes Ribeiro
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

Re: Does udat always work?

2003-03-31 Thread Kaare Rasmussen
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

Does udat always work?

2003-03-31 Thread Kaare Rasmussen
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