• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space
  • 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