Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • the problem is caused bei mediatags_rewrite.php which is calling $wp_rewrite->flush_rules() for every page load. it generates around 400 queries and should only be called when the plugin is activated.

    please fix it paul. it’s such a great plugin

    if nothing is working on the navt admin page and ur wordpress is installed in an folder like domain.com/wordpress/ the /js/navtadmin.js.php in ur plugin folder is broken. the file try to find the right path of ur wordpress install but fails.

    my temp fix for this is to replace the following lines on top of the file (/js/navtadmin.js.php):

    //if(!defined('ABSPATH')) {
    //    define('ABSPATH', $_SERVER['DOCUMENT_ROOT'] . '/');
    //}
    
    if( file_exists('../../../../wp-load.php') ) {
        require_once('../../../../wp-load.php');
    }
    // not 2.6? then include the file directly
    elseif( file_exists('../../../../wp-config.php') ) {
        require_once('../../../../wp-config.php');
    }

    after the change u have to clean ur browser cache cause it’s a generated js file which got already cached.

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