Drupal How to View Node Attached Document for Anonymous Users

I am finishing up a Drupal site and I have attached a document on one of my nodes. I want anonymous people to be able to download it, but they don't even see the document. I am doing as a registered user.

Any ideas?

0


source to share


2 answers


You need to give anonymous users permission to view the downloaded files. I am assuming you used the boot module. The permissions page is at / admin / user / permissions, and under the "upload module" group, you are looking for "view uploaded files".



Ed

+5


source


Assuming that you only want to enable this particular file for anonymous users, you can do so without touching permissions that will affect your entire site.



The easiest way, if you have configured your downloads to be "public" and not "private", is to simply add a document link on your node page, for example <a href = "/files/myfile.doc"> Upload myfile. doc </a>

+1


source







All Articles