Not sure where to post this, so I will just place it here.
When uploading pictures with tidypics and imagemagick, images do not get named correctly in the filesystem, and so not showing up in albums etc. The correct name does get written to the elgg database, just not to the filesystem.
The problem is in lib/resize.php
--
in function tp_create_imagick_cmdline_thumbnails
change "largethumb", into "largethumb$filestorename",
change "smallhumb", into "smallhumb$filestorename",
change "humb", into "thumb$filestorename",
in function tp_imagick_cmdline_resize
change
$output_name = $path["dirname"] . "/$prefix" . $path["filename"] . "." . $path["extension"];
into $output_name = $path["dirname"] . "/$prefix" . $path["filename"];
---
That should do the trick :) Thanks to @Quest for giving me the opportunity to find and fix this bug ;)
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
- Tidypics Team@tidypics

Tidypics Team - 0 likes
You must log in to post replies.Thanks for the report. We had already changed the command line code in preparation for the next release. Please try that when it is available. I'd like to know whether it fixes any problems that you had.