uploads module for downloading
uploads module for downloading
Can anyone tell me how to setup the uploads mod to download a word doc
Re: uploads module for downloading
You have to upload it the doc via uploads mod before. Then you will get an ID and a download link
{cms_module module='Uploads' category='categorie' mode='single' upload_id='id'}
{cms_module module='Uploads' category='categorie' mode='single' upload_id='id'}
Re: uploads module for downloading
I'd like to display a file-list (a directory full of PDF files), so user can select (click on) which file to download. How is this done? Thanks,cyberman wrote: You have to upload it the doc via uploads mod before. Then you will get an ID and a download link
{cms_module module='Uploads' category='categorie' mode='single' upload_id='id'}
twiz/
Re: uploads module for downloading
Please make a look at the module help 
or
should work.

Code: Select all
{cms_module module='Uploads' category='categorie' mode='summary'}
Code: Select all
{cms_module module='Uploads' category='categorie' mode='detailed'}
Re: uploads module for downloading
Thanks for the reply ... I'm going through a learning curve.cyberman wrote: Please make a look at the module help
orCode: Select all
{cms_module module='Uploads' category='categorie' mode='summary'}
should work.Code: Select all
{cms_module module='Uploads' category='categorie' mode='detailed'}

That works .... sort of. Here's the output using the 'default' [detailed] template:
Code: Select all
Icon
Category PDF files
Id 5
Name 2007_summary.PDF
http://cmswebsite/admin/moduleinterface.php?mact=Uploads,m6,getfile,0&m6showtemplate=false&m6upload_id=5
Date 2008-02-17 13:43:40
Author cmsadmin
Size (Kb) 234
Summary 2007 Year In Review
Summary 2007 Year In Review
Description Here’s what we’ve been up to this year ...
Question: Is the user expected to click on:
Code: Select all
http://cmswebsite/admin/moduleinterface.php?mact=Uploads,m6,getfile,0&m6showtemplate=false&m6upload_id=5
Re: uploads module for downloading
Found it ... just after posting previous message (always happens
Here's the link location in the template and its output:
From template:
From output:
Now to read-up further on things like :
Thanks again,
twiz/

From template:
Code: Select all
{$entry->summarylink}
Code: Select all
http://cmswebsite/index.php?mact=Uploads,cntnt01,getfile,0&cntnt01showtemplate=false&cntnt01upload_id=5&cntnt01returnid=162
Code: Select all
{$entry->summarylink}
etc..
twiz/
Re: uploads module for downloading
To create a download link use {$entry->download_url}
Code: Select all
<a href="{$entry->download_url}">Download</a>