Subject: | Argument isn't numeric in addition (+) at Net/Server/HTTP.pm line 151. |
There is a wrongly placed parenthesis.
Argument "Content-type: text/html\r\n" isn't numeric in addition (+)
at /usr/local/share/perl/5.8.8/Net/Server/HTTP.pm line 151.
line 151 is:
$request_info->{'response_header_size'} +=
length($headers->{'parsed'}+2);
ist should read: }) + 2;
Kind regards, ska