Got this working (for me anyway) by fixing the Javascript call as follows:
File: /lib/wpfb_admin_lite.lib.php (line 5)
–> change ‘wp_register_script’ call to ‘wp_enqueue_script’ call, e.g.
// wp_register_script('wpfb-admin', WPFB_PLUGIN_URI.'wp-filebase_admin.js', array('jquery'), WPFB_VERSION);
wp_enqueue_script('wpfb-admin', WPFB_PLUGIN_URI.'wp-filebase_admin.js', array('jquery'), WPFB_VERSION);
Note – there still seems to be an issue of IE not listing files in the popup window, but this works fine in FireFox (for me anyway).
———-
Experienced similar issues in frontend so again fixed Javascript call as follows:
File: /lib/wpfb_core.lib.php (line 6)
–> change ‘wp_register_script’ call to ‘wp_enqueue_script’ call, e.g.
// wp_register_script('wpfb', WPFB_PLUGIN_URI.'wp-filebase.js', array('jquery'), WPFB_VERSION);
wp_enqueue_script('wpfb', WPFB_PLUGIN_URI.'wp-filebase.js', array('jquery'), WPFB_VERSION);
———-
Hope this helps somebody ??