メディアのアップロードでFatal error
-
WordPress4.5にアップデート後、画像のアップロードができなくなりました。
メディアのアップロード画面からアップしようとすると、以下のエラーが表示されます。Fatal error: Undefined class constant ‘ALPHACHANNEL_UNDEFINED’ in /home/users/2/lolipop.jp-xxxxx/web/news/wp-includes/class-wp-image-editor-imagick.php on line 379
該当のファイルの箇所は以下のあたりになります。
/** * Rotates current image counter-clockwise by $angle. * * @since 3.5.0 * @access public * * @param float $angle * @return boolean|WP_Error */ public function rotate( $angle ) { /** * $angle is 360-$angle because Imagick rotates clockwise * (GD rotates counter-clockwise) */ try { $this->image->rotateImage( new ImagickPixel('none'), 360-$angle ); // Since this changes the dimensions of the image, update the size. $result = $this->update_size(); if ( is_wp_error( $result ) ) return $result; $this->image->setImagePage( $this->size['width'], $this->size['height'], 0, 0 ); } catch ( Exception $e ) { return new WP_Error( 'image_rotate_error', $e->getMessage() ); } return true; }
検索で解決策が見つからなかったんですが、解決策をどなたかご教示頂けませんでしょうか?
15件の返信を表示中 - 1 - 15件目 (全15件中)
15件の返信を表示中 - 1 - 15件目 (全15件中)
- トピック「メディアのアップロードでFatal error」には新たに返信することはできません。