At 05:22 PM 3/31/00 -0800, you wrote:
>how are you sending your headers?
>$r->send_cgi_header OR $r->send_http_header('text/html');
>
i dont use CGI.pm.

all output is first sent to a single variable: $HTTP
ie,

$HTTP .= "Content-type: text/html\n\n";
$HTTP .= "<HTML>\n";

$HTTP .= "</HTML>\n";

then at the very end:
print $HTTP;

>is the child that serves the request surviving or is it
>dying directly after?

err... how do i find that out?

what do you mean by dying? for one thing, If I use a test
script with the classic "my() subroutine problem" it will
show up. <- i guess that means, the child is surviving
right?

jaime
>
>cliff rayman
>genwax.com
>
>Jaime Teng wrote:
>
>> At 05:05 PM 3/31/00 -0800, Cliff Rayman wrote:
>> >these are all generated thru embperl.
>> >
>> >cliff
>> >
>> >
>>
>> I guess i'll have to install HTML::Embperl to see if it solves my problem.
>>
>> Unless anyone can show me a solution using Apache::Registry
>>
>> i prefer to use strict perl program to generate the HTML pages.
>> I grew accustomed to it already.
>>
>> jaime
> 

Reply via email to