ed on this game, so I'll have to
explain...
Anyway, sorry for the trouble.
Thank You,
petr.
Stas Bekman wrote:
Petr Duchon wrote:
Hello everybody,
Please don't stone me, if my problem is too silly, but this is what I
get when running make test:
ulimit -c unlimited; /usr/bin/perl
Appending some config info:
perl -v: v5.8.4 built for i686-linux-thread-multi
uname -a: Linux sodomizatko 2.6.8.1 #2 Wed Sep 15 01:20:54 UTC 2004 i686
AMD Athlon(TM) XP 2200+ AuthenticAMD GNU/Linux
--
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/mo
Hello everybody,
Please don't stone me, if my problem is too silly, but this is what I
get when running make test:
ulimit -c unlimited; /usr/bin/perl5.8.4 /inst/mod_perl-1.99_16/t/TEST
-bugreport -verbose=0
[warning] root mode: changing the files ownership to 'nobody' (65534:65534)
[warning] tes
I think your problem really is that you are doing the rewrite in the
wrong phase. You must do it in the PerlTransHandler. The Authen phase is
too late for that purpose. That's why you get things messed up.
I've double checked rewriting in the transhandler works just fine in mp2.
OK, Thank You.
Randal L. Schwartz wrote:
"Petr" == Petr Duchon <[EMAIL PROTECTED]> writes:
Petr> ScriptAlias /awstats "/usr/local/awstats/wwwroot/cgi-bin/"
One rule of thumb (occasionally violated but only when carefully
considered) is that if the left side of Alias
Stas Bekman wrote:
Petr Duchon wrote:
well, I see it in the browser.
I'm requesting URL http://server/name/awstats,
but the mozilla URL line will show /awstats/awstats.pl/?config=$name,
instaed of /awstats/awstats.pl?config=$name.
Aha! Now I get it. Can we see the relevant parts of
the guide implies that the trailing slash is *not* added.
This is what bothers me. it looks like a mystery to me.
The URL rewriting directives are all disabled.
Petr.
Stas Bekman wrote:
Petr Duchon wrote:
When i put
$r->uri('/awstats/awstats.pl');
$r->args("config=$na
When i put
$r->uri('/awstats/awstats.pl');
$r->args("config=$name");
into my authen handler,
the result is /awstats/awstats.pl/?config=$name,
and not /awstats/awstats.pl?config=$name, as it should be.
What do you mean by "result", Petr. please show us the code that you
have the problem wit
Hello folks!
I've run into an horrible problem.
When i put
$r->uri('/awstats/awstats.pl');
$r->args("config=$name");
into my authen handler, the result is /awstats/awstats.pl/?config=$name,
and not /awstats/awstats.pl?config=$name, as it should be.
It's the trailing slash problem.
My mod_per