Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • fantomas_bg

    (@fantomas_bg)

    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.php

    1. (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.

    fantomas_bg

    (@fantomas_bg)

    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.php

    1. (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.

    I 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.

Viewing 3 replies - 1 through 3 (of 3 total)