Plugin Author
Fabian
(@fabifott)
In editor_plugin.php replace
// check if WP-Filebase is active
if(!in_array(basename(untrailingslashit(dirname(__FILE__))).'/wp-filebase.php',get_option('active_plugins')))
wp_die('WP-Filebase not active.<!-- FATAL ERROR: WP-Filebase DISABLED -->');
with
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
// check if WP-Filebase is active
$wpfb_rpath = basename(untrailingslashit(dirname(__FILE__))).'/wp-filebase.php';
if(!is_plugin_active($wpfb_rpath))
wp_die("WP-Filebase not active. ($wpfb_rpath not in [".implode(',',get_option('active_plugins'))."]) <!-- FATAL ERROR: WP-Filebase DISABLED -->");
This should at least give some debug output.
Are you running a multisite WordPress?
Hi Fabian,
thank you so much for the quick response.
Yes I’m running multisite (need a site per language that my website supports: http://www.tweaking4all.com (English) and http://www.tweaking4all.nl (Dutch) ).
I tried your changes, and the dialog now appears …
However NONE of my files or categories are listed …
When I go into the admin pages (WP-Filebase – Files) then I do still see all my files and categories. So it’s not like they are lost … just the editor plugin is not picking them up.
Would you recommend going one or 2 versions back?
And if so: where would I find those?
I just installed v0.3.0.05, and this fixes the issue – everything works fine again!
Excellent support! Thanks again Fabian!