Re: HTML::Mason and path_info

2000-04-24 Thread Kevin Murphy
"Alexei V. Barantsev" wrote: Hello, All! I have the followin problem: HTML::Mason dhandler could not define path_info, it tries to select only first part. For example, if my request is http://server/test/hello/world and dhandler is in /test it decides that $r-path_info is /hello/. This

Re: Problems with custom configuration handlers

2000-04-13 Thread Kevin Murphy
Doug MacEachern wrote: what options did you give mod_perl's Makefile.PL? perl Makefile.PL \ APACHE_PREFIX=/usr/local/apache/ \ APACHE_SRC=/usr/local/apache/src\ DO_HTTPD=1 \ USE_APACI=1 \ APACI_ARGS='--enable-module=rewrite --enable-module=so --enable-module=proxy' \

Problems with custom configuration handlers

2000-04-12 Thread Kevin Murphy
I've written an access handler which takes some custom configuration directives based on the instructions in chaper 8 of the Eagle book. Everything makes and installs fine, and I am able to load the module with a PerlModule directive, but when I try to use the directives defined in my module I

Re: Apache::Request weirdness

2000-02-08 Thread Kevin Murphy
Ilya Obshadko wrote: Hello, I've discovered the following. Suggest that you use Apache::Request object in both fixup handler and registry script. So we have: 1) unpredictable segmentation faults I had the same problem. I think there must be some problems in libapreq (which

HELP! Core dumps using $r-pnotes().

2000-02-05 Thread Kevin Murphy
I'm getting occasional segfaults when calling the $r-pnotes() method. There are no errors in the error log, until I get a line like this: [Sat Feb 5 19:36:58 2000] [notice] child pid 19989 exit signal Segmentation fault (11), possible coredump in /backend/scratch (I ran the mod_perl server on

Byteserving, Range: headers and assorted foo.

1999-11-17 Thread Kevin Murphy
I'm attempting to use the byteserving methods of Apache::File, but I'm getting strange results. Apache 1.3.9, mod_perl 1.21. Here's the request (entered via telnet to port 80): GET /image/1000/foo.gif HTTP/1.1 Host: www.eorbit.net Range: bytes=0-50 Here's a code snippet: . . . unless

Re: Byteserving, Range: headers and assorted foo.

1999-01-16 Thread Kevin Murphy
Atipat Rojnuckarin wrote: Hi, If /image/1000/foo.gif does not map to an actual file on the server, you will need to have content length set for set_byterange to work. Otherwise, check out the C source for ap_set_byterange in http_protocol.c (in Apache distribution). dak Thanks. That