• Resolved Jon Brown

    (@jb510)


    WP CLI is throwing

    Reen, Reen, BUMP! not found /classes/input.class.php

    when this plugin is active.

    Pretty sure this plugin is also dying on normal page loads but I honestly haven’t confirmed.

    Just FYI, I’ve removed it so don’t need a resolution myself.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Jon Brown

    (@jb510)

    Ok, so this is a super hacky fix without any real testing… use at your own risk

    in plugin.class.php line 323

    change

    private function get_all_inputs() {
    	
    	if (! class_exists ( 'NM_Inputs_wpcomment' ) ) {
    		$_inputs = $this->plugin_meta ['path'] . DIRECTORY_SEPARATOR . 'classes' . DIRECTORY_SEPARATOR . 'input.class.php';

    to

    private function get_all_inputs() {
    	
    	global $plugin_meta;
    	
    	if (! class_exists ( 'NM_Inputs_wpcomment' ) && isset($plugin_meta) ) {
    			$_inputs = $this->plugin_meta ['path'] . DIRECTORY_SEPARATOR . 'classes' . DIRECTORY_SEPARATOR . 'input.class.php';

    I’m sure there is better way to solve this…

    Plugin Author N-Media

    (@nmedia)

    Hi,

    Thanks for update this. We will update our plugin for a new version soon.

    BR,
    Najeeb

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Reen, Reen, BUMP! not found /classes/input.class.php’ is closed to new replies.