That's awesome!
Are you open sourcing it?
On Thu, Oct 1, 2015 at 4:12 PM, viva marai wrote:
> Sorry if these kinds of messages are against the guidelines (I didn't see
> anything prohibiting announcing projects built on mod_perl).
> I built a Hacker News clone for books as my pet project on mod_
Sorry if these kinds of messages are against the guidelines (I didn't see
anything prohibiting announcing projects built on mod_perl).
I built a Hacker News clone for books as my pet project on mod_perl and
wanted to shamelessly plug it here :-)
I would love some feedback: https://news.ycombinator
(posted with wrond id, re-posting)
On Thu, 1 Oct 2015 19:59:34 +0200
"A. Warnier" wrote:
>
> sub handler : FilterRequestHandler {
>
> What I am missing ?
>
I get the same error when I add ': FilterRequestHandler'.
Using just 'sub handler {' instead works
FilterRequestHandler is assumed wh
Hi.
I am trying to write an Apache2 request filter.
According to the online tutorial
(http://perl.apache.org/docs/2.0/user/handlers/filters.html#Output_Filters). I have this
so far :
package MyFilter;
...
use base qw(Apache2::Filter);
...
use constant BUFF_LEN => 4096;
sub handler : FilterRe