Forum Replies Created

Viewing 1 replies (of 1 total)
  • Strict Standards: Redefining already defined constructor for class wpdb in /public_html/blog/wp-includes/wp-db.php on line 49


    To solve it error, go to the file /public_html/blog/wp-includes/wp-db.php and comment the lines:

    #function wpdb($dbuser, $dbpassword, $dbname, $dbhost) {
    # return $this->__construct($dbuser, $dbpassword, $dbname, $dbhost);
    #}

    Strict Standards: Redefining already defined constructor for class WP_Object_Cache in /public_html/blog/wp-includes/cache.php on line 403


    To solve it error, go to the file /public_html/blog/wp-includes/cache.php and comment the lines:

    #function WP_Object_Cache() {
    # return $this->__construct();
    #}

    Strict Standards: Declaration of Walker_Page::start_lvl() should be compatible with Walker::start_lvl($output) in /public_html/blog/wp-includes/classes.php on line 531


    To solve it, take a look at the http://codex.wordpress.org/Class_Reference/Walker and change your code.

Viewing 1 replies (of 1 total)