mod_upload

Software Screenshot:
mod_upload
Software Details:
Version: 1.0
Upload Date: 3 Jun 15
Developer: Nick Kew
Distribution Type: Freeware
Downloads: 1

Rating: 5.0/5 (Total Votes: 1)

mod_upload is an input filter module for multipart/form-data, as submitted from File Upload forms on the Web. It decodes the data, so the handler gets the file itself without the MIME encoding. Other fields from the form are provided as a table of names/values.

A second filter, formerly mod_tmpfile, is available to store the file contents in a tempfile. This ensures that all the Form data are available when the file is processed, and is useful for handlers that need to run synchronously.

Example:

Consider a simple HTML file upload fragment:

< form method="post" action="my-handler" enctype="multipart/form-data" >
Your name: < input name="name" >
Your email address: < input name="email" >
< br >File: < input name="file" type="file" >
< br >Additional comments < textarea rows=4 cols=40 name="comments" >
< /textarea >
< /form >

This will generate an HTTP POST request containing an uploaded file with three additional user-supplied text fields. The data are MIME-encoded and normally the Handler has to decode them.

upload-filter

Using upload-filter as an input filter, the handler will be passed instead the decoded file contents. It can access the other Form data (the values of name, email and comments through a table exported by the function
apr_table_t* mod_upload_form(request_rec* r)
which is available to any Handler or other module that needs the data.

Configuration:

To insert mod_upload, use the AddInputFilter or SetInputFilter directives. For pipelined applications,
SetInputFilter upload-filter
or for synchronous applications, add both upload and tmpfile
SetInputFilter tmpfile-filter;upload-filter

mod_upload defines two further configuration directives:

UploadField
The name of the file upload field in the HTML form to be processed

UploadFormSize
The size of the table allocated for form elements other than the upload. This is advisory; the APR can handle automatic resizing of tables.

Requirements:

  • Apache 2.x

Other Software of Developer Nick Kew

mod_publisher
mod_publisher

3 Jun 15

mod_dbd_mysql
mod_dbd_mysql

3 Jun 15

Comments to mod_upload

Comments not found
Add Comment
Turn on images!