Requirement
PHP ZIP
should be installed for downloading all attachments of the card in the zip file format.
- Goto your Restyaboard installation root directory. e.g., directory:
/usr/share/nginx/html/restyaboard/
- Extract/unzip the purchased plugin zip into the restyaboard installation path. e.g.,
/usr/share/nginx/html/restyaboard/
- Give file permission to extracted files. e.g.,
chmod -R 0777 client/apps/r_download_all_attachments_in_card/
- Execute the sql file in
client/apps/r_download_all_attachments_in_card/sql/r_download_all_attachments_in_card.sql
using the commandpsql -h localhost -d {DATABASE_NAME} -U {USER_Name} -w < /usr/share/nginx/html/restyaboard/client/apps/r_download_all_attachments_in_card/sql/r_download_all_attachments_in_card.sql
- Add the line
rewrite ^/download/([0-9]*)/([0-9]*)/([a-z0-9]*)$ /server/php/plugins/DownloadAllAttachments/download.php?board_id=$1&card_id=$2&hash=$3 last;
afterline 23
in therestyaboard configuration file
which is in the/etc/nginx/conf.d
folder and restart theNginx
bysystemctl restart nginx
- After above process, clear the browser cache and login again to view the installed
Download all attachments in Card plugin on your Restyaboard
.
- If the card has the attachments, then infront of the card, there is an
download icon
for downloading all attachments of the card. - In the
modal card
page, near theAttachment
header there will bedownload icon
for downloading all attachments of the card.