in reply to Re: CGI::Ajax gives 'null' scriptname
in thread CGI::Ajax gives 'null' scriptname

Quite the opposite, as I read it the documentation is "all about running it under mod_perl".
We have added support for other CGI handler/decoder modules, like CGI::Simple or CGI::Minimal, but we can't test these since we run mod_perl2 only here.
For the grandparent, have you tried contacting the authors? They're quite helpful. (It's such a new module few people have much if any experience with it)

--
In Bob We Trust, All Others Bring Data.

  • Comment on Re^2: CGI::Ajax gives 'null' scriptname

Replies are listed 'Best First'.
Re^3: CGI::Ajax gives 'null' scriptname
by APvanKampen (Initiate) on Dec 21, 2005 at 21:30 UTC
    I Checked out Brian Thomas. As you can see, he came up with a patch. Maybe notice the problem with passing sub by ref.. I had to make some detour, and I am still not quite sure what I am pasing .. Arnold van Kampen
    my $ref_show = \&Show_HTML; my $show = $ref_show->($env); print $pjx->build_html( $cgi, $show);

    In stead of

    <code> print $pjx->build_html( $cgi, \$Show_HTML($env) );