i am getting this error message

Discussion in 'GeoCraft WordPress Theme' started by ozdecor, Aug 17, 2013.

  1. ozdecor

    ozdecor New Member

    Joined:
    Dec 28, 2011
    Messages:
    4
    Likes Received:
    0
    my error logs are filling fast daily, with this error message.
    theme is the latest version
    any idea what's wrong?


    [17-Aug-2013 21:19:10 UTC] PHP Warning: Missing argument 2 for wpdb::prepare(), called in /home/username/public_html/domain.com.au/wp-content/themes/geocrafttheme/library/controls/module_functions.php on line 1270 and defined in /home/username/public_html/domain.com.au/wp-includes/wp-db.php on line 992


    thanks
    ian
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to wp-config.php file present in your wordpress directory and add the code given below

    Code:
    define('WP_DEBUG_LOG', false);
    define('WP_DEBUG_DISPLAY', false);
    @ini_set('log_errors','Off');
    @ini_set('display_errors','Off');
    @ini_set('error_log','/php-errors.log');
    
    Sending image for reference

    2013-08-19_1540.png


    This will solve your issue.
     

Share This Page