Re: Trouble with AxKit at runtime - XML parsing stage

2000-12-14 Thread Owen Stenseth
I believe that the Bizzar copy of array problem is related to a bug in Perl 5.6 that was patched a while ago. Make sure you are running the latest version of perl5.6 Also there is an AxKit users mailing list that you can post these questions to: [EMAIL PROTECTED] -- Owen [Snip] [AxKit] :

Re: Trouble with AxKit at runtime - XML parsing stage

2000-12-14 Thread Owen Stenseth
Dave Rolsky wrote: On Thu, 14 Dec 2000, Owen Stenseth wrote: I believe that the Bizzar copy of array problem is related to a bug in Perl 5.6 that was patched a while ago. Make sure you are running the latest version of perl5.6 The latest version of 5.6 _is_ 5.6.0. The bizarre

PerlChildInitHandler called twice on startup?

1999-12-18 Thread Owen Stenseth
How many times is PerlChildInitHandler suposed to be called on child startup? On my server startup (under httpd -X as well) I see two calls to it. I have wrapped my code so it does not do the initailization twice now but this kind of caught me by suprise. With a carp in my anonymous handler I

Embperl Subroutines

1999-11-23 Thread Owen Stenseth
Hello Everyone, I am in the process of developing an Embperl/Mysql site and have a couple of questions. One thing that I am doing now is making use of Embperl [$ sub $] [$ endsub $] for defining subroutines. If I read the documentation correctly these subroutines will be 'imported' into any

Re: Embperl - where are the cookies ?

1999-10-29 Thread Owen Stenseth
George, This problem was mentioned in a previous post because it is wrong in the documentation (it may be fixed now). The setting of $ENV{EMBPERL...} variables in this case need to be inside a BEGIN block at the start of the script. This is because the value of these variables are used to

Re: Does Embperl work with Apache::Filter?

1999-10-27 Thread Owen Stenseth
"G.Richter" wrote: I'd like to know if the latest Embperl works with Apache::Filter? I.e. can I use Apache::Filter to make redirection calls in Embperl documents work when using a chain? I'm thinking of PerlHandler MyChain::Embperl MyChain::Gzip where MyChain::Embperl and

Re: Problems with Embperl Session Tracking

1999-10-27 Thread Owen Stenseth
I have found the problem over the weekend. It apears to be a problem with my EmbperlFilter and ApacheSSI. I forgot to mention this important piece of information. Looking back through the list I found reference to the fact that Cookies and Embperl do not work well through the filter. Looking

Problems with Embperl Session Tracking

1999-10-23 Thread Owen Stenseth
Hello, I am having a problem getting Embperl session tracking working properly. When I start apache I get the SES message stating that session tracking is enabled but I get no Cookies being set when I make modifications to %udat. In fact the only way I can get cookies to be set is to put them

Apache::EmbperlFilter - Subtle Problem Solved

1999-10-03 Thread Owen Stenseth
First thanks to Mike for figuring out how to use Embperl with Apache::Filter. A couple of subtle things are still causing problems. I have a solution for one but not for the others. The following line needs to be added as part of the params sent to Execute: $param{inputfile} = $r-filename;