Hi!
>
> I have in Apache mod_perl content handler
> sub SHOW
> {
> ....
>
> $res=&HTML::Embperl::Execute ({ inputfile  => $r->filename,mtime=>undef,
>
> escmode=>0,options=>16,req_rec=>$request,fdat=>{},ffld=>[],
>                                         output     => \$of_content });
> ....
> }
>
> (actually any of options do not change behaviour I describe)
>
> and it started behave weird somehow. in that sub are after that block
stored
> some POSTed values. And somehow it hangs when I do Execute and some data
is
> POSTed. As soon as I close browser window which posted data it runs
normally
> on again.
> It doesnt appear when I use GET method.
> Any ideas?
>


I guess you have already read in the poisted values. They can only be read
once, on the second try Apache hangs. You need to set optDisableFormData
i.e.

options => 256 + 16,

if you need your form data in %fdat, pass it from your handle via the fdat
parameter to execute.

Gerald

P.S. I am off for holiday for next days, so I will not be able to answer
before the next weekend


-------------------------------------------------------------
Gerald Richter    ecos electronic communication services gmbh
Internetconnect * Webserver/-design/-datenbanken * Consulting

Post:       Tulpenstrasse 5         D-55276 Dienheim b. Mainz
E-Mail:     [EMAIL PROTECTED]         Voice:    +49 6133 925131
WWW:        http://www.ecos.de      Fax:      +49 6133 925152
-------------------------------------------------------------



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to