public
Description: Upload progress module for apache
Homepage: http://drogomir.com/blog/2008/6/18/upload-progress-bar-with-mod_passenger-and-apache
Clone URL: git://github.com/drogus/apache-upload-progress-module.git
Search Repo:
Click here to lend your support to: apache-upload-progress-module and make a donation at www.pledgie.com !
name age message
folder .gitignore Mon Jun 16 09:32:16 -0700 2008 Ignoring files from build [drogus]
folder MIT-LICENSE Tue Jun 17 00:47:46 -0700 2008 Bla bla boring. License. [drogus]
folder README Wed Jul 02 09:57:53 -0700 2008 updated README [drogus]
folder mod_upload_progress.c Wed Jul 02 09:50:21 -0700 2008 Don't copy key if there was error with allocati... [drogus]
README
Apache upload progress module. Works with mod_passenger (aka mod_rails). It's MIT license.

more info here: http://drogomir.com/blog/2008/6/18/upload-progress-bar-with-mod_passenger-and-apache

To install and activate module:
apxs2 -c -i -a mod_upload_progress.c

-c -> compile
-i -> install (copy upload_progress_module.so to apache lib folder)
-a -> activate (add LoadModule line to httpd.conf)

Global config:
  you can define maximum size for shared memory (default is 50kB):
  UploadProgressSharedMemorySize 1024000 # sets memory size to 1MB

Config for vhost:
<Location />
    # enable tracking uploads in /
    TrackUploads On
</Location>

<Location /progress>
    # enable upload progress reports in /progress
    ReportUploads On
</Location>