fantomas_bg
Forum Replies Created
-
I just fixed it for myself for the latest version. You have to do a few things:
in this file plugins\exports-and-reports\wp-admin-ui\Admin.class.php1. (line 13) change: if(isset($_GET[‘download’]) && !isset($_GET[‘page’]) && is_user_logged_in() && isset($_GET[‘_wpnonce’]) && false === wp_verify_nonce($_GET[‘_wpnonce’], ‘wp-admin-ui-export’))
to: if(isset($_GET[‘download’]) && !isset($_GET[‘page’]) && is_user_logged_in() && isset($_GET[‘_wpnonce’]) && false != wp_verify_nonce($_GET[‘_wpnonce’], ‘wp-admin-ui-export’))
2. after line 16 add: $file = str_replace(‘\\’, ‘/’, $file);
3. line 122 change: $this->base_url = WP_CONTENT_URL.str_replace(WP_CONTENT_DIR,”,__FILE__);
to: $this->base_url = plugins_url( ‘Admin.class.php’, __FILE__ );
Then the file exports should work.
Forum: Plugins
In reply to: [Exports and Reports] Cannot download – error :-(Mark I just fixed it for myself. You have to do a few things:
in this file plugins\exports-and-reports\wp-admin-ui\Admin.class.php1. (line 13) change: if(isset($_GET[‘download’]) && !isset($_GET[‘page’]) && is_user_logged_in() && isset($_GET[‘_wpnonce’]) && false === wp_verify_nonce($_GET[‘_wpnonce’], ‘wp-admin-ui-export’))
to: if(isset($_GET[‘download’]) && !isset($_GET[‘page’]) && is_user_logged_in() && isset($_GET[‘_wpnonce’]) && false != wp_verify_nonce($_GET[‘_wpnonce’], ‘wp-admin-ui-export’))
2. after line 16 add: $file = str_replace(‘\\’, ‘/’, $file);
3. line 122 change: $this->base_url = WP_CONTENT_URL.str_replace(WP_CONTENT_DIR,”,__FILE__);
to: $this->base_url = plugins_url( ‘Admin.class.php’, __FILE__ );
Then the file exports should work.
Forum: Plugins
In reply to: [My Twitter Widget] [My Twitter Widget] Fatal error after update to 1.3.3I just downloaded it. In ver. 1.3.3 the main file my-twitter.php inside contains four times itself. I merged them and they have very slight differences. But you can take the first one only and delete the rest. Than activate it and it will work smoothly. You can search the file for ?> and delete everything after the first occurrence.