• Resolved sashamenis

    (@sashamenis)


    After updating wordpress to 3.5 I am getting this error.

    Warning: Missing argument 2 for wpdb::prepare(), called in /home/cpanel/public_html/wp-content/themes/clipper/includes/admin/admin-options.php on line 291 and defined in /home/cpanel/public_html/wp-includes/wp-db.php on line 990

    Warning: Missing argument 2 for wpdb::prepare(), called in /home/cpanel/public_html/wp-content/themes/clipper/includes/admin/admin-options.php on line 292 and defined in /home/cpanel/public_html/wp-includes/wp-db.php on line 990

    I am using, Akismet, Internal link builder, WP Security and WP Smush.it plugins. Is it related to any of these plugins?

Viewing 11 replies - 16 through 26 (of 26 total)
  • dear keesiemeijer,

    I guess my problem is similar but concerns some other file. could you please help me? I have info:

    Warning: Missing argument 2 for wpdb::prepare(), called in /home/xxxxx/public_html/wp-content/themes/Nuance/functions/sidebars.php on line 83 and defined in /home/xxxxx/public_html/wp-includes/wp-db.php on line 990

    I will be grateful for your help because this problem concerns a lot of my websites. Of course I can send you more files to get to know the problem.

    Sidebars.php:

    /* User made sidebars */
    $w_count = 0;

    global $wpdb;

    $widgetized_pages = $wpdb->get_col($wpdb->prepare(“SELECT DISTINCT meta_value FROM $wpdb->postmeta WHERE meta_key = ‘jw_sidebar'”));

    if($widgetized_pages){

    foreach($widgetized_pages as $w_page){

    $widget_id = strtolower(str_replace(‘ ‘, ‘_’, $w_page));

    register_sidebar(array(
    ‘name’ => $w_page,
    ‘id’ => ‘jw_widgetsection_’.$widget_id,
    ‘description’ => ”,
    ‘before_widget’ => ‘<div id=”%1$s” class=”widget %2$s”>’,
    ‘after_widget’ => ‘</div><div class=”separator”></div>’,
    ‘before_title’ => ‘<h5>’,
    ‘after_title’ => ‘</h5>’
    ));

    Moderator keesiemeijer

    (@keesiemeijer)

    Another way of solving this issue is to not display any errors and contacting the the theme author or vendor that their theme has an issues with WordPress 3.5.

    Try it by opening your wp-config.php file and place these lines into it:

    ini_set( 'display_errors', false );
    error_reporting( 0 );

    @1echero
    If that doesn’t work backup the file and try changing this:

    $widgetized_pages = $wpdb->get_col($wpdb->prepare("SELECT DISTINCT meta_value FROM $wpdb->postmeta WHERE meta_key = 'jw_sidebar'"));

    to this:

    $widgetized_pages = $wpdb->get_col("SELECT DISTINCT meta_value FROM $wpdb->postmeta WHERE meta_key = 'jw_sidebar'");

    And please notify the theme author or vendor that their theme has an issues with WordPress 3.5.
    Show them this link: https://make.www.ads-software.com/core/2012/12/12/php-warning-missing-argument-2-for-wpdb-prepare/.

    dear keesiemeijer, it works, thank you!

    Moderator keesiemeijer

    (@keesiemeijer)

    You’re welcome ??
    Don’t forget to contact the theme author or vendor that their theme has an issues with WordPress 3.5.

    Hey

    I would appreciate it if anyone can help me fixing the issue here

    ERROR

    Warning: Missing argument 2 for wpdb::prepare(), called in /home/!@#$%^/public_html/wp-content/plugins/no-future-posts/no-future-posts.php on line 74 and defined in /home/!@#$%^/public_html/wp-includes/wp-db.php on line 990
    
    Warning: Missing argument 2 for wpdb::prepare(), called in /home/!@#$%^/public_html/wp-content/plugins/no-future-posts/no-future-posts.php on line 81 and defined in /home/!@#$%^/public_html/wp-includes/wp-db.php on line 990

    lines between 74 and 81

    // set future posts
    	$sql = "UPDATE	$tposts
    			SET		post_status = 'publish'
    			WHERE	post_status = 'future'
    			AND		id NOT IN ($e_posts)";
    	$wpdb->query($wpdb->prepare($sql));
    
    	// reset excluded posts
    	$sql = "UPDATE	$tposts
    			SET		post_status = 'future'
    			WHERE	id IN ($e_posts)
    			AND		post_date > now()";
    	$wpdb->query($wpdb->prepare($sql));
    
    	NoFuturePosts::update_count();
    }

    please let me know how to fix it, Thanks

    Moderator keesiemeijer

    (@keesiemeijer)

    Have you tried the not showing errors method above?

    Is the $e_posts varable a number or a string?

    Nope didnt try the not showing error

    Here is the e_posts

    // get excluded post IDs...
    	$e_posts = get_option('nofutureposts_posts');
    	if ( empty($e_posts) )
    		$e_posts = 0;
    $res = $wpdb->get_results($wpdb->prepare($sql));
    		foreach ( $res as $r )
    			$e_posts .= ','.$r->ID;

    Hello there! As stephen.pfaff said: i have the same error:

    Warning: Missing argument 2 for wpdb::prepare(), called in /home/jobqibhp/public_html/wp-content/plugins/nextgen-gallery/lib/tags.php on line 318 and defined in /home/jobqibhp/public_html/wp-includes/wp-db.php on line 990

    Any suggestion? Thank you so much!

    After updating wordpress 3.5 i look this any body can help me Warning: Missing argument 2 for wpdb::prepare(), called in /home/redinfot/public_html/wp-content/themes/classipress/includes/admin/write-panel.php on line 42 and defined in /home/redinfot/public_html/wp-includes/wp-db.php on line 990
    Ad Info:

    See the link I posted above.

Viewing 11 replies - 16 through 26 (of 26 total)
  • The topic ‘Missing Argument 2 for wpdb::prepare()’ is closed to new replies.