This page is designed to test the file upload feature and it's related optional modules.
These optional modules include 'modreqparser', which can be used to optimize file upload to pass the path
of uploaded files instead of their contents, and 'uploadprogress', which can be used to display a
progress bar for the current file upload.
If context "/progress" is set to be handled by the "uploadprogress" module, then the progress request for
this file will work as intended, displaying a working progress bar.
To enable optional module modreqparser
Add the following to the <ols_home>/conf/http_config.conf file:
module modreqparser
and ensure that uploadpassbypath is set to
enabled (Enabled by default).
To enable optional module uploadprogress
Add the following to the <ols_home>/conf/http_config.conf file:
module uploadprogress
and add the below setting to the
<ols_home>/conf/vhosts/Example/vhconf.conf file:
context /progress/ {
type module
handler uploadprogress
}
This page is designed to test the file upload feature and it's related optional modules.
These optional modules include 'modreqparser', which can be used to optimize file upload to pass the path of uploaded files instead of their contents, and 'uploadprogress', which can be used to display a progress bar for the current file upload.
If context "/progress" is set to be handled by the "uploadprogress" module, then the progress request for this file will work as intended, displaying a working progress bar.