in reply to Upload Progress bar with mod_perl2

There's Apache::UploadMeter and Apache2::UploadProgress.

Replies are listed 'Best First'.
Re^2: Upload Progress bar with mod_perl2
by jdrago_999 (Hermit) on Oct 16, 2008 at 22:54 UTC

    Apache2::UploadProgress looks good, but it also looks a bit monolithic for my needs.

    I have yet to delve into Apache's Bucket Brigade API. Looks like that might be the way to go on this one.

      but it also looks a bit monolithic for my needs.
      Can you elaborate?

        By "monolithic" I mean it doesn't look like I can subclass it or configure it to do things like:

        • Check user permissions before allowing upload.
        • Filter by file type, size, etc.
        • Get information about the file that was uploaded.
        • etc

        I'm updating Apache2::ASP and searching for a way to *not* depend on libapreq2 because of its low "installability" score.