You are viewing a plain text version of this content. The canonical link for it is here.
Posted to embperl@perl.apache.org by Dist-List <di...@LEXUM.UMontreal.CA> on 2004/04/22 21:28:48 UTC

error during installation of Embperl-2.0b11 (using CPAN)

Setup : 
My setup : redhat entrerprise V3
apache : httpd-2.0.46-32.ent
mod_perl : mod_perl-1.99_09-10.ent

During the installation we have the following error : 

Starting httpd...       pid = 16333  ok
Testing mod_perl mode...
#0 ascii...                   ok
#1 pure.htm...                ok
#2 nooutput.htm...            ok
#3 nooutput.htm...            ok
#4 plain.htm...               ok
#5 plain.htm...               ok
#6 plain.htm...               ok
#7 plainblock.htm...          ok
#8 plainblock.htm...          ok
#12 error.htm...
Expected 4 more error(s) in logfile
Input:          test/html/error.htm
Output:         test/tmp/out.htm
Log:            test/tmp/test.log
Testparameter:
  errors = 5
  version = 2
  repeat = 3
 ERRORS detected! NOT all test have been passed successfully
make: *** [test_dynamic] Error 1
  /usr/bin/make test -- NOT OK
Running make install
  make test had returned bad status, won't install without force


any idea ??
THanks

---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
For additional commands, e-mail: embperl-help@perl.apache.org


Re: error during installation of Embperl-2.0b11 (using CPAN)

Posted by Derrick Spell <de...@suran.com>.
I just had this same error not three days ago on my Redhat 9.0 
installation.  Here's the remedy:

Replace line 1605 in test.pl with the following two lines:

my @cnt = split/(?:\\n)+/;
$cnt -= @cnt;

Apparently there is an issue with new line characters in the log files 
on RedHat.  Gerald sent me those two lines of code and everything went 
smoothly after that.  Oh yeah, the test.pl file is in the root of the 
installation directory.

Good Luck!
-Derrick


On Apr 22, 2004, at 3:28 PM, Dist-List wrote:

> Setup :
> My setup : redhat entrerprise V3
> apache : httpd-2.0.46-32.ent
> mod_perl : mod_perl-1.99_09-10.ent
>
> During the installation we have the following error :
>
> Starting httpd...       pid = 16333  ok
> Testing mod_perl mode...
> #0 ascii...                   ok
> #1 pure.htm...                ok
> #2 nooutput.htm...            ok
> #3 nooutput.htm...            ok
> #4 plain.htm...               ok
> #5 plain.htm...               ok
> #6 plain.htm...               ok
> #7 plainblock.htm...          ok
> #8 plainblock.htm...          ok
> #12 error.htm...
> Expected 4 more error(s) in logfile
> Input:          test/html/error.htm
> Output:         test/tmp/out.htm
> Log:            test/tmp/test.log
> Testparameter:
>   errors = 5
>   version = 2
>   repeat = 3
>  ERRORS detected! NOT all test have been passed successfully
> make: *** [test_dynamic] Error 1
>   /usr/bin/make test -- NOT OK
> Running make install
>   make test had returned bad status, won't install without force
>
>
> any idea ??
> THanks
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
> For additional commands, e-mail: embperl-help@perl.apache.org
>



---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
For additional commands, e-mail: embperl-help@perl.apache.org


Re: error during installation of Embperl-2.0b11 (using CPAN)

Posted by Gerald Richter <ri...@ecos.de>.
Robert wrote:
> it helped to recompile apache with
>
> % CFLAGS="-DAP_UNSAFE_ERROR_LOG_UNESCAPED" ./configure ...
>
> apparently new apache escapes everything, see
>
> http://perl.apache.org/docs/2.0/user/install/install.html#Apache
>

The patch for Embperl is now in the CVS version, so next release of EMbperl
will handle both, escaped and unescaped, logs correctly

Gerald


> - r.
>
> Dist-List wrote:
>
>> Setup :
>> My setup : redhat entrerprise V3
>> apache : httpd-2.0.46-32.ent
>> mod_perl : mod_perl-1.99_09-10.ent
>>
>> During the installation we have the following error :
>>
>> Starting httpd...       pid = 16333  ok
>> Testing mod_perl mode...
>> #0 ascii...                   ok
>> #1 pure.htm...                ok
>> #2 nooutput.htm...            ok
>> #3 nooutput.htm...            ok
>> #4 plain.htm...               ok
>> #5 plain.htm...               ok
>> #6 plain.htm...               ok
>> #7 plainblock.htm...          ok
>> #8 plainblock.htm...          ok
>> #12 error.htm...
>> Expected 4 more error(s) in logfile
>> Input:          test/html/error.htm
>> Output:         test/tmp/out.htm
>> Log:            test/tmp/test.log
>> Testparameter:
>>  errors = 5
>>  version = 2
>>  repeat = 3
>> ERRORS detected! NOT all test have been passed successfully
>> make: *** [test_dynamic] Error 1
>>  /usr/bin/make test -- NOT OK
>> Running make install
>>  make test had returned bad status, won't install without force
>>
>>
>> any idea ??
>> THanks
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
>> For additional commands, e-mail: embperl-help@perl.apache.org
>>
>>
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
> For additional commands, e-mail: embperl-help@perl.apache.org

---------------------------------------------------------------------------
Gerald Richter            ecos electronic communication services gmbh
IT-Securitylösungen * Webapplikationen mit Apache/Perl/mod_perl/Embperl

Post:       Tulpenstrasse 5          D-55276 Dienheim b. Mainz
E-Mail:     richter@ecos.de          Voice:   +49 6133 939-122
WWW:        http://www.ecos.de/      Fax:     +49 6133 939-333
---------------------------------------------------------------------------
Besuchen Sie uns auf der KOMCOM 2004 in Mannheim
25. bis 27. Mai 2004  Stand K11a   www.komcom.de

ECOS BB-5000 Firewall- und IT-Security Appliance: www.bb-5000.info
---------------------------------------------------------------------------


---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
For additional commands, e-mail: embperl-help@perl.apache.org


Re: error during installation of Embperl-2.0b11 (using CPAN)

Posted by Robert <ro...@robert.cz>.
it helped to recompile apache with

% CFLAGS="-DAP_UNSAFE_ERROR_LOG_UNESCAPED" ./configure ...

apparently new apache escapes everything, see 

http://perl.apache.org/docs/2.0/user/install/install.html#Apache

- r.

Dist-List wrote:

>Setup : 
>My setup : redhat entrerprise V3
>apache : httpd-2.0.46-32.ent
>mod_perl : mod_perl-1.99_09-10.ent
>
>During the installation we have the following error : 
>
>Starting httpd...       pid = 16333  ok
>Testing mod_perl mode...
>#0 ascii...                   ok
>#1 pure.htm...                ok
>#2 nooutput.htm...            ok
>#3 nooutput.htm...            ok
>#4 plain.htm...               ok
>#5 plain.htm...               ok
>#6 plain.htm...               ok
>#7 plainblock.htm...          ok
>#8 plainblock.htm...          ok
>#12 error.htm...
>Expected 4 more error(s) in logfile
>Input:          test/html/error.htm
>Output:         test/tmp/out.htm
>Log:            test/tmp/test.log
>Testparameter:
>  errors = 5
>  version = 2
>  repeat = 3
> ERRORS detected! NOT all test have been passed successfully
>make: *** [test_dynamic] Error 1
>  /usr/bin/make test -- NOT OK
>Running make install
>  make test had returned bad status, won't install without force
>
>
>any idea ??
>THanks
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
>For additional commands, e-mail: embperl-help@perl.apache.org
>
>  
>

---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
For additional commands, e-mail: embperl-help@perl.apache.org