HomePage
This the documentation page for the Files action.
Allows admins to manage files (upload, deletion) and everyone to view a list of them or download them. Or it provides a download-link to a single file.
| name | type | required? | default | description |
| download | string | optional | | prints a link to the file specified in the string |
| text | string | optional | | a text for the link provided with the parameter "download" |
The 'upload_path' in the
wikka_config must be a writeble directory. A directory by each page will be created to store their attached files. This action will only show/modify the files attached to the current page!
If you want to manage the files, use the action without parameters. You will see a list of the files attached to wikka with "attachment" (name of the file)., "size" and "Date added", ordered descending after "Date added". To donload a file, simply click on the name. As an
admin, you will see a "x" left to every file (clicking on it will delete the file). The simple form below the list allows to upload a file.
If you specify a filename with the parameter "download", a link to download this file will be shown (you can change the text for the link with the parameter "text") but not the form.
Usage:
{{files [download="filename"] [text="descriptive text"]}}
example:
This page contains no attachment.
As for a default install, a limit of 2 Megabyte for the (maximum) size of a file exists. You can find it in
// $max_upload_size = "1048576"; // 1 Megabyte
$max_upload_size = "2097152"; // 2 Megabyte
If you want to enhance the limit you can do so by changing the file (note that the limit has to be written as a number of bytes).
Please note that PHP itself imposes a limit on file-uploads. You can find the parameter in the
upload_max_filesize
with a default set to 2 megabyte.
VictorManuelVarela
CategoryEN