Forum Replies Created
-
AuthorPosts
-
April 11, 2016 at 3:28 am #26334April 6, 2016 at 5:29 pm #26298April 6, 2016 at 5:06 am #26288March 30, 2016 at 12:12 pm #26261March 29, 2016 at 5:33 pm #26256
This happens because full size images are not processed by PHP (which is more inefficient) so it uses a different download method. However, it is something we’re going to try to address in the next release as it should act as a download prompt for full size as well. Sometimes, however, this cannot be avoided.
March 29, 2016 at 5:27 pm #26255March 29, 2016 at 5:24 pm #26253March 28, 2016 at 9:50 am #26241March 25, 2016 at 7:18 pm #26238The media size is saved when it is uploaded (width and height), however I believe it is mostly the ratio that is of relevance. So if you resize the originals and maintain aspect ratio that should be fine.
It should not affect licenses at all as all final images are resized on the fly using the originals from ss_media.
And yes, those are the original files you uploaded.
All that being said, I would strongly suggest against what you are doing! Once you downsize them, that data is lost forever. File space is usually a non issue nowadays, and it is wiser to keep the full originals.
March 24, 2016 at 10:53 pm #26230March 24, 2016 at 3:11 pm #26227Go to tools-ftp and change the code to this:
function ss_get_media_type($fileloc) { $filetype = ss_get_mime_type($fileloc); if ($filetype == 'image/svg+xml' || $filetype=='application/postscript' || $filetype=='application/eps' || $filetype=='application/x-eps' || $filetype=='image/x-eps' || $filetype=='image/eps' || $filetype=='application/octet-stream') $type = 'vector'; elseif ($GLOBALS['currSSV']->ss_v && (strpos($filetype,'video/') !== false)) $type = 'video'; else $type = 'raster'; if (isset($type)) return $type; return false; }
This will be implemented in the next release anyways. It basically defaults all media to a raster type if neither video or vector. This will allow you to upload any Imagick compatible media type.
March 24, 2016 at 3:09 pm #26226March 24, 2016 at 3:08 pm #26225You can use Symbiostock without Imagick. That is not an issue.
Generally, however, it requires much more memory without Imagick. I am guessing your processor is crashing randomly due to memory limits. Please use this guide and run your cron job to see if it displays errors:
http://www.symbiostock.org/forums/topic/processor-not-processing-try-this/
March 24, 2016 at 2:27 pm #26224Try going to tools-ftp and edit the code to look like this:
if (!$keywords && isset($metadata->Subject)) $keywords = $metadata->Subject; if (isset($metadata->SupplementalCategories)) { if (!is_array($metadata->SupplementalCategories)) $category[] = $metadata->SupplementalCategory; else $category = array_merge($metadata->SupplementalCategories,$category); } if (isset($metadata->SupplementalCategory)) { if (!is_array($metadata->SupplementalCategory)) $category[] = $metadata->SupplementalCategory; else $category = array_merge($metadata->SupplementalCategory,$category); } }
March 24, 2016 at 2:18 pm #26223 -
AuthorPosts