Title: Reen, Reen, BUMP! not found /classes/input.class.php
Last modified: January 4, 2018

---

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

 *  Resolved [Jon Brown](https://wordpress.org/support/users/jb510/)
 * (@jb510)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/reen-reen-bump-not-found-classes-input-class-php/)
 * 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](https://wordpress.org/support/users/jb510/)
 * (@jb510)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/reen-reen-bump-not-found-classes-input-class-php/#post-9832448)
 * 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](https://wordpress.org/support/users/nmedia/)
 * (@nmedia)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/reen-reen-bump-not-found-classes-input-class-php/#post-9840609)
 * 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.

 * ![](https://ps.w.org/wp-comment-fields/assets/icon-256x256.png?rev=2838297)
 * [Comments Extra Fields For Post,Pages and CPT](https://wordpress.org/plugins/wp-comment-fields/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-comment-fields/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-comment-fields/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-comment-fields/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-comment-fields/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-comment-fields/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [N-Media](https://wordpress.org/support/users/nmedia/)
 * Last activity: [8 years, 5 months ago](https://wordpress.org/support/topic/reen-reen-bump-not-found-classes-input-class-php/#post-9840609)
 * Status: resolved