added privilege access handler to storage system
This commit is contained in:
parent
8c77e3dfb7
commit
de282a98b5
10 changed files with 124 additions and 10 deletions
|
|
@ -51,7 +51,9 @@
|
|||
feature.
|
||||
- Added new asset type: File Pile. This allows you to do a mass upload of
|
||||
files and images.
|
||||
- Added CDG Commerce iTransact payment plugin. (Martin Kamerbeek)
|
||||
- Added a privilege access handler to the uploads file system.
|
||||
- Added CDG Commerce iTransact payment plugin.
|
||||
|
||||
|
||||
6.2.9
|
||||
- bugfix [ 1058105 ] input tag has to be closed with /
|
||||
|
|
|
|||
|
|
@ -56,13 +56,29 @@ save you many hours of grief.
|
|||
|
||||
* The default path for WebGUI backups is now /tmp/backups rather than
|
||||
/data/backups
|
||||
|
||||
|
||||
* You may add optional protection for your uploaded WebGUI files. This
|
||||
will check the privileges of the files from the WebGUI database
|
||||
before sending them to the browser. To enable this you must use
|
||||
these directives:
|
||||
|
||||
SetPerlVar WebguiRoot /data/WebGUI
|
||||
PerlRequire /data/WebGUI/sbin/uploadAccessHandler.perl
|
||||
|
||||
And then add this to each virtual host you wish to protect:
|
||||
|
||||
PerlSetEnv WebguiConfig www.example.com.conf
|
||||
<Location /uploads>
|
||||
PerlAccessHandler WebGUI::UploadsAccessHandler
|
||||
</Location>
|
||||
|
||||
* In order to use the CDG Commerce iTransact payment plugin you'll have to
|
||||
make sure that the following modules are installed:
|
||||
- XML::Simple
|
||||
- LWP::UserAgent
|
||||
- HTTP::Cookies
|
||||
|
||||
|
||||
6.2.8
|
||||
--------------------------------------------------------------------
|
||||
* Due to a bug in the theme system, if you created any themes in any
|
||||
|
|
|
|||
|
|
@ -6,11 +6,11 @@ The following is a rough overview of how to install WebGUI. For
|
|||
more detailed instructions read the WebGUI installation
|
||||
documentation.
|
||||
|
||||
http://plainblack.com/installation
|
||||
http://www.plainblack.com/installing_webgui
|
||||
|
||||
QnD INSTALL INSTRUCTIONS:
|
||||
|
||||
1. Install Perl 5.6.x or greater.
|
||||
1. Install Perl 5.6.x or greater. (5.8.x recommended)
|
||||
|
||||
2. Install the following Perl modules:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue