in reply to Re: mod_perl, IE and DWIM
in thread mod_perl, IE and DWIM

Same file with different extension (.pl changed to .plx) works as expected, so the problem doesn't seem to be the content of the file, just what it's called! Here is one of the test programs from Practical Mod_Perl
#!/perl/bin/perl # # mod_perl_rules1.pl use strict; use warnings; use diagnostics; print "Content-type: text/plain\n\n"; print "mod_perl rules!\n";
which runs as a .plx, but not as a .pl!

--hsm

"Never try to teach a pig to sing...it wastes your time and it annoys the pig."

Replies are listed 'Best First'.
Re: Re: Re: mod_perl, IE and DWIM
by liz (Monsignor) on Jul 20, 2003 at 20:47 UTC
    Just for fun: could you try with the extension .nl ?

    The reason why I'm asking this, is that .pl is also the tld for Poland, and is also used as an identifier for Polish as a language, so there may be an issue with Content-Negotiation. If .nl gives the same problem, then it's probably related to that. If not, ask Bill. ;-)

    Liz

      Works fine!

      --hsm

      "Never try to teach a pig to sing...it wastes your time and it annoys the pig."