>
> Embperl continues to scan HTML tags although I have disabled scanning of
> these.
>
> The code is as follows:
>
>
>
> [- $optDisableHTMLScan = 1 -]
>
Simple spelling error, must be
$optDisableHtmlScan
see ht
Embperl continues to scan HTML tags although I have disabled scanning of
these.
The code is as follows:
[- $optDisableHTMLScan = 1 -]
// some code
client.innerHTML = "| client address |
// some more code
[- $optDisableHTMLScan = 0 -]
...
I am trying to let EmbP
>
> I see... the problem is that I don't want to modify the pm ($r->content
> etc)... there are many of them. The whole point of me doing all this
> backwards is to make as little changes as possible to the legacy pm's.
> Is it possible to somehow refill STDIN...?
>
No, you can't refill stdin. Yo
I see... the problem is that I don't want to modify the pm ($r->content
etc)... there are many of them. The whole point of me doing all this
backwards is to make as little changes as possible to the legacy pm's.
Is it possible to somehow refill STDIN...?
thank you.
ilia.
> -Original Message
>
> sorry, forgot one more thing in step 4... pm reads $r->content or
> $r->args.
> The former fails.
>
And that's your error! CGI_lite has already read the form data, you cannot
read it again with $r -> content ($r -> content tries to read the form data
from stdin, where CGI_lite has them alread
All,
>
> Having a few probs installing Embperl version 1.2.1
>
> I have tried without support for Apache mod_perl but still the
> same problem
> so that's narrowed things down a tad.
>
> After running make test, I get the following. Is it to do with DSO?
> I'm open to suggestions.
>
> loadin
All,
Having a few probs installing Embperl version 1.2.1
I have tried without support for Apache mod_perl but still the same problem
so that's narrowed things down a tad.
After running make test, I get the following. Is it to do with DSO?
I'm open to suggestions.
loading...
sorry, forgot one more thing in step 4... pm reads $r->content or $r->args.
The former fails.
ilia.
> -Original Message-
> From: Ilia Lobsanov [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, May 03, 2000 11:55 AM
> To: Gerald Richter; [EMAIL PROTECTED]
> Subject: RE: help resolve complex m
Dear Gerald,
Still no luck... However, now $optDisableFormData is 0, even though I have
options => 256 (also tried options => HTML::Embperl::optDisableFormData).
I am lost here...
Let me describe my process better:
1. Get form data using CGI_Lite into %IN
2. Pass fdat => \%IN and options => HTM