wordpress image upload error and htaccess rule explanation

You’re on a shared hosting. Your hosting provider might want to prevent abuse of CPU usage between each shared host. To prevent abuse they prevent you from running multi-thread tasks. When you load an image, Imagick (Which is an image processing tool) tries to use multi-thread to be as fast as possible.

Adding this rule, you tell Imagick to run only on a single thread and this prevent the previous error.

Leave a Comment