mempf
Forum Replies Created
-
I have implemented a workaround to resolve the problem until a better fix is found.
In myextractXML.php in the wordpress plugin folder modify line 54 from:
$themediafiles = $wpdb->get_results( $wpdb->prepare( $select ) );
To:
$themediafiles = $wpdb->get_results( $select );This occurred because wordpress now treats single argument prepare() calls as warnings as it expects multiple arguments.
I say this is a workaround because it may be leaving the plugin less secure than before (or since prepare was not implemented properly in this case equally insecure as before)
Hope this helps someone else.
Forum: Plugins
In reply to: [SublimeVideo - HTML5 Video Player] New PluginThanks, seems to have fixed my problem.
Forum: Plugins
In reply to: [SublimeVideo - HTML5 Video Player] New PluginAfter upgrading to version 1.5.1 I have also run into this problem.
I have had to disable the plugin for the time being.
I have recently run into this problem on our site http://hpaw.net after updating to wordpress 3.5.
We have reverted to 3.4.2 for now but a proper solution would be awesome.
Thanks