ZenphotoCMS Forum
General Downloading Questions - Printable Version

+- ZenphotoCMS Forum (https://forum.zenphoto.org)
+-- Forum: Support (https://forum.zenphoto.org/forum-1.html)
+--- Forum: General support (https://forum.zenphoto.org/forum-4.html)
+--- Thread: General Downloading Questions (/thread-12512.html)



General Downloading Questions - baataboom - 2016-05-08

Hi,
I don't see how zp presents users with the ability to download a single image or a group of images. When viewing a photo, I had expected to see a download link. Do I need to modify an existing theme to make this possible? Also, I've see mention of the ability to download an entire gallery. Would I again need to modify an existing theme to embed appropriate code to do the album download?

Is it supposed to be possible to download and entire album and subalbums?

Thanks. I know these are newbie questions. But I didn't see any documentation for newbie questions like these.




General Downloading Questions - fretzl - 2016-05-09

Yes, you would have to modify your theme.

To get a download link, use something like this on image.php:
`">




General Downloading Questions - derRenner - 2016-06-08

Hoi, I think I have a similar problem ...
But I'd done the following things:

  • enabled DownloadList Plugin
  • using the basic theme: file album.php ยป
    insert

after

so, what's the next step? I can't see any Downloadlink ...
Is there a configuration anywhere else? in the theme maybe?
Is there anything to change in the album itself? But I can't find anything to make something to "start" the plugin.

The Zip-source ist 'from Album'.
The folder is named 'uploaded' ... I think that's the default name. But there is nothing inside (OK, that's a lie ... there is the file .gitignore inside)

The folder 'downloadList' is inside zp-core/zp-extensions - so I think the plugin is allready installed.

I need help ;-)
thx!!




General Downloading Questions - fretzl - 2016-06-09

You placed the function inside the next_album() loop.
The loop checks for sub-albums. So if you don't have any sub-albums nothing will show.

Try placing the function somewhere outside the next_album() or next_image() loops.

Btw: the function you use is deprecated.
Use printDownloadAlbumZipURL() instead.

The "uploaded" folder is the folder where the (non gallery) file manager stores uploaded files.
It is also the default directory to download single files from.
Just ignore that option. It's not involved in what you need.




General Downloading Questions - derRenner - 2016-06-09

Hoi!
Thanks for your answer and help!
... finaly it works ;-)