-
Expected: The splash parameter should be able to address the image’s URL as effectively as the src parameter does.
Observed: The splash parameter does not address the image’s URL as effectively as the src parameter does. It forms an incorrect URL; e.g.,
* This: splash=”//www.camins.facilitechit.com/wp-content/uploads/2018/01/brian-cameron-220×308.jpg”
* Is transformed to: http://www.camins.facilitechit.com/www.camins.facilitechit.com/wp-content/uploads/2018/01/brian-cameron-220×308.jpgUse Case: To have FV player operate without warnings in https (and http) without mixed protocol content by utilizing relative protocol relative URLs.
This form of the shortcode, where the splash URL contains the protocol, works properly:
[fvplayer src="//www.camins.facilitechit.com/wp-content/uploads/2018/01/cameronwalkon.mp4" splash="http://www.camins.facilitechit.com/wp-content/uploads/2018/01/brian-cameron-220x308.jpg" splashend=show width="258" height="368" autoplay=true ab="false" controlbar="no" redirect="//www.camins.facilitechit.com/home-test/#ert_pane1-1"]This form of the shortcode generates an invalid URL:
[fvplayer src="//www.camins.facilitechit.com/wp-content/uploads/2018/01/cameronwalkon.mp4" splash="//www.camins.facilitechit.com/wp-content/uploads/2018/01/brian-cameron-220x308.jpg" splashend=show width="258" height="368" autoplay=true ab="false" controlbar="no" redirect="//www.camins.facilitechit.com/home-test/#ert_pane1-1"]Console Output Of Error (Poster doesn’t render – of course):
GET http://www.camins.facilitechit.com/www.camins.facilitechit.com/wp-content/uploads/2018/01/brian-cameron-220×308.jpg 404 (Not Found)Note the the src parameter works perfectly with the protocol relative URL.