• Resolved studiokb

    (@studiokb)


    Hi,
    On one of my servers when I Publish a new post with a Featured video, I am getting a white screen and this error/warning:
    Warning: image_type_to_extension() expects parameter 1 to be long, string given in /plugins/featured-video-plus/php/class-backend.php on line 485

    Warning: Cannot modify header information – headers already sent by (output started at /plugins/featured-video-plus/php/class-backend.php:485) in /home/asentiv/public_html/wp-includes/pluggable.phpon line 1228

    It also has not generate the featured image when I go back into the post.
    I know this plugin works, so was wondering if you know what the problem is here? I’m thinking maybe there’s a php extension missing which is needed to generate the featured image.
    Thanks,

    https://wordpress.org/plugins/featured-video-plus/

Viewing 3 replies - 1 through 3 (of 3 total)
  • I experienced this problem after upgrading WordPress as well. (Strange since the image type determination uses PHP library functions, unless prior versions of WordPress were doing something different?)

    Anyhow, the fix seems to be to change the get_image_type function in class-backend.php as follows:

    private static function get_image_type( $filename ) {
    		if ( function_exists( 'exif_imagetype' ) ) {
    			return exif_imagetype( $filename );
    		} else {
    			$img = getimagesize( $filename );
    			if ( !empty( $img[2] ) ) {
    				return $img[2];
    			}
    		}
    		return false;
    	}

    Note removal of the call to image_type_to_mime_type.

    Plugin Author Alex

    (@ahoereth)

    Thanks! Fix applied in 2.2.3. Feel free to contribute on GitHub at ahoereth/featured-video-plus!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘warning and no featured image generated’ is closed to new replies.