• 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:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.
  • Chevereto Support CLST

    Support response

    Support checklist

Imagick WEBP image type support is not enabled.

tobi116

Chevereto Member
webp support.PNG
▶ Reproduction steps
  1. Update from 3.20.0 beta 2 to 3.20.0
  2. https://www.itspic.com/
  3. I was doing the upgrade getting the error
  4. Checked with hosting and they told me WEBP is already enabled [ please see attachment] even after it's enabled I'm getting the same error every time when I do upgrade
😢 Unexpected result

Imagick WEBP image type support is not enabled.

📃 Error log message

[Example: Attached is the server error log relevant to this issue]
 
guys reason why your getting this error is mostlikely you got imagemagick installed. Try uninstalling or disable any imagemagick extension for php. That should disable imagemagick and make WEBP support function with GD instead. Since GD by default has WEBP support. while ImageMagick requires right version for WEBP support.

it also can be perl-imagemagick as well. Since i remembered i installed it and then my chevereto begun complaining about WEBP. So i uninstalled perl-imagemagick and error went away since chevereto could then use WEBP support through GD instead.
 
Hello
Please note this solution succeeded with me.
I left my site and after 3 days I looked at him again but I found that the mistake is still found !!!

It seems that this has not worked and the site is still disabled for several days.
Can anyone present a solution to this problem?
Best Regards.
Hello,

I have the same problem
After updating the script to the latest version, the same error appeared
I use CPanel.
I tried to add this line to the setting.php file,
'image_formats_available' => ['PNG', 'GIF', 'JPG', 'BMP'],
but the following error appeared:
This page isn’t workingphost.us is currently unable to handle this request.
HTTP ERROR 500
Any help?

Regards.
I have been solved this error
If the ImageMagick software doesn't support WebP, execute the following commands:

# yum install libwebp libwebp-devel
# yum remove ImageMagick*
# yum install autoconf automake libtool make gcc -y
# wget https://imagemagick.org/download/ImageMagick.tar.gz
# tar xvzf ImageMagick.tar.gz
# cd ImageMagick*
# ./configure
# make
# make install

then restart httpd

source


Hello,

Please note this solution succeeded with me.
I left my site and after 3 days I looked at him again but I found that the mistake is still found !!!
It seems that this has not worked and the site is still disabled for several days.
Can anyone present a solution to this problem?

Best Regards.
 
I edited this file - ./app/lib/integrity-check.php
-- $mustHaveFormats = ['PNG', 'GIF', 'JPG', 'BMP', 'WEBP'];
deleted WEBP and save. Site is work now.
++ $mustHaveFormats = ['PNG', 'GIF', 'JPG', 'BMP',];
This is temp solution for me.
I tried this solution already but did not work with me.
Now, I tried it again but it worked with me fine.
It also appears that WEBP is enabled in the GD library.
Best Regards.
 

Attachments

  • 6-20-2021 7-17-47 PM.png
    6-20-2021 7-17-47 PM.png
    58.1 KB · Views: 12
I tried this solution already but did not work with me.
Now, I tried it again but it worked with me fine.
It also appears that WEBP is enabled in the GD library.
Best Regards.
in GD yes since GD supports WEBP and chevereto works fine with WEBP through GD. It's only when imagemagick that you guys are having this problem. Since version you use don't have WEBP.
 
in GD yes since GD supports WEBP and chevereto works fine with WEBP through GD. It's only when imagemagick that you guys are having this problem. Since version you use don't have WEBP.
Thank's.
I remove imagemagic, restart apache, add WEBP into file and my site still work!
 
Back
Top