Reputation: 1
I want to upload animated webp files (animation in WebP format instead of GIF.) not like traditional gif file because it is much more compact in size. Although I found a way to upload webp images and it is uploading without any problem but when I am trying to add animated webp file i am getting error although both files formats are same but still images are being uploaded but not the animated ones.
Getting this error: The server cannot process the image. This can happen if the server is busy or does not have enough resources to complete the task. Uploading a smaller image may help. Suggested maximum size is 2560 pixels.
Although it irrelevant error I have checked the file size and everything given in it.
Upvotes: 0
Views: 590
Reputation:
upload_max_filesize = 256M
post_max_size = 256M
memory_limit = 512M
max_execution_time = 180
And also try this if you are using WordPress:
define( 'WP_MEMORY_LIMIT', '256M' );
Upvotes: 0