RE: problems with disabling scanning of HTML tags

2000-05-03 Thread Gerald Richter
> > 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

problems with disabling scanning of HTML tags

2000-05-03 Thread Ragnar Hakonarson
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

RE: help resolve complex mod_perl EPL framework

2000-05-03 Thread Gerald Richter
> > 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

RE: help resolve complex mod_perl EPL framework

2000-05-03 Thread Ilia Lobsanov
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

RE: help resolve complex mod_perl EPL framework

2000-05-03 Thread Gerald Richter
> > 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

RE: Install Problems

2000-05-03 Thread Gerald Richter
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

Install Problems

2000-05-03 Thread Anthony Gardner
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...

RE: help resolve complex mod_perl EPL framework

2000-05-03 Thread Ilia Lobsanov
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

RE: help resolve complex mod_perl EPL framework

2000-05-03 Thread Ilia Lobsanov
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