• Resolved Ahmad Hassan

    (@ahmadhassan10)


    Hello all,

    I work on WampServer and WP Ver. 4.9.2, but when try install any plugins showing error “( ! ) Warning: sprintf(): Too few arguments in C:\wamp64\www\thems\wp-admin\includes\class-bulk-upgrader-skin.php on line 150”

    attach a Pic error and wait any resolve for this error
    Thanks

    View post on imgur.com


    • This topic was modified 6 years, 8 months ago by Ahmad Hassan.
Viewing 6 replies - 1 through 6 (of 6 total)
  • Moderator t-p

    (@t-p)

    Are you trying to auto updating?

    If so, auto updates can fail for a large number of different reasons and it is often hard to diagnose the failure due to specific configurations present on each server running the update.

    Try doing it manually: https://codex.www.ads-software.com/Managing_Plugins#Manual_Plugin_Installation

    Thread Starter Ahmad Hassan

    (@ahmadhassan10)

    This is not auto update, this plugins is required for themes I use. Also I find if I install required plugins one after one plugins installed successful but if install bulk plugins 2 or more in one step shwoing error “( ! ) Warning: sprintf(): Too few arguments in C:\wamp64\www\themes\wp-admin\includes\class-bulk-upgrader-skin.php on line 150”

    Thread Starter Ahmad Hassan

    (@ahmadhassan10)

    I found this solution on other site

    Edit file “C:\wamp64\www\themes\wp-admin\includes\class-bulk-upgrader-skin.php” and replace code

    		if ( $this->result && ! is_wp_error( $this->result ) ) {
    			if ( ! $this->error ) {
    				echo '<div class="updated js-update-details" data-update-details="progress-' . esc_attr( $this->upgrader->update_current ) . '">' .
    					'<p>' . sprintf( $this->upgrader->strings['skin_update_successful'], $title ) .
    					' <button type="button" class="hide-if-no-js button-link js-update-details-toggle" aria-expanded="false">' . __( 'Show details.' ) . '</button>' .
    					'</p></div>';
    			}
    
    			echo '<script type="text/javascript">jQuery(\'.waiting-' . esc_js($this->upgrader->update_current) . '\').hide();</script>';
    		}
    		

    To this code

    
    		if ( $this->result && ! is_wp_error( $this->result ) ) {
    			if ( ! $this->error )
    				echo '<div class="updated"><p>' . sprintf($this->upgrader->strings['skin_update_successful'], $title, 'jQuery(\'#progress-' . esc_js($this->upgrader->update_current) . '\').toggle();jQuery(\'span\', this).toggle(); return false;') . '</p></div>';
    					echo '<script type="text/javascript">jQuery(\'.waiting-' . esc_js($this->upgrader->update_current) . '\').hide();</script>';
    		}
    Moderator t-p

    (@t-p)

    This is not auto update, this plugins is required for themes I use.

    – Where did you download this theme from?
    – What’s the full name of it?

    Thread Starter Ahmad Hassan

    (@ahmadhassan10)

    videotube

    Moderator t-p

    (@t-p)

    Is WordPress Video Tube Plugin the full name of the plugin?

    If so, please note:

    – Currently, this plugin is not being maintained.
    – This plugin was Last updated: 3 years ago!!!!!!!!!!!

    Better find an another plugin.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Error when install any plugins’ is closed to new replies.