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.