Bug #655

Gif images can not be uploaded
Start date:
February 05, 2013
Due date:
% Done:
100%
Estimated time:
Description
When choosing crop method for an image field it doesn't allow to upload gif images and returns a blank page.
History
Updated by Anonymous about 8 years ago
- Status changed from New to Resolved
- % Done changed from 0 to 100
commit:f438ab4
Fast fix:
Open the file [subrion_folder]/includes/classes/ia.core.picture.php
Make the following replacements:
require_once IA_INCLUDES . 'phpimageworkshop' . IA_DS . 'core' . IA_DS . 'GifFrameExtractor.php';
with
require_once IA_INCLUDES . 'phpimageworkshop' . IA_DS . 'Core' . IA_DS . 'GifFrameExtractor.php';
AND
require_once IA_INCLUDES . 'phpimageworkshop' . IA_DS . 'core' . IA_DS . 'GifCreator.php';
with:
require_once IA_INCLUDES . 'phpimageworkshop' . IA_DS . 'Core' . IA_DS . 'GifCreator.php';
Save the changes.