• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

How to use image_library is GD

Nirjonadda

💖 Chevereto Fan
Hello,

Please let me know that how to enable image_library is GD without imagick by default?

I am added app/settings.php but error are same.

Code:
$settings['image_library'] = 'gd';

Error:

Code:
System error

The system has encountered errors in your server setup that must be fixed to use Chevereto:

Imagick WEBP image type support is not enabled.

Also does not work add image_formats_available with image_library.

Example:

Code:
$settings['image_library'] = 'gd';
#$settings['image_formats_available'] = ['PNG', 'GIF', 'JPG', 'BMP', 'WEBP'];

And Only work with this:

Code:
$settings['image_library'] = 'gd';
#$settings['image_formats_available'] = ['PNG', 'GIF', 'JPG', 'BMP'];
 
Try with that at app/lib/integrity-check.php

Yes now working enable image_library is GD. So I am also removed image_formats_available setting.

Code:
$settings['image_library'] = 'gd';
#$settings['image_formats_available'] = ['PNG', 'GIF', 'JPG', 'BMP', 'WEBP'];
 
Back
Top