Title: 's Replies | WordPress.org

---

# kicken

  [  ](https://wordpress.org/support/users/kicken/)

 *   [Profile](https://wordpress.org/support/users/kicken/)
 *   [Topics Started](https://wordpress.org/support/users/kicken/topics/)
 *   [Replies Created](https://wordpress.org/support/users/kicken/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/kicken/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/kicken/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/kicken/engagements/)
 *   [Favorites](https://wordpress.org/support/users/kicken/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [general Step 3.](https://wordpress.org/support/topic/general-step-3/)
 *  [kicken](https://wordpress.org/support/users/kicken/)
 * (@kicken)
 * [21 years, 4 months ago](https://wordpress.org/support/topic/general-step-3/#post-122996)
 * For what it’s worth, somone came to our #php channel on dalnet with this problem
   so I took a look at it. There is just a minor error on line 704 of wp-admin/upgrade-
   functions.php. The line in question reads like so:
    $res = $wpdb->get_results(
   $query);
 * (It’s line 704, directly below the query $query = ‘DESCRIBE ‘.$tableusers.’ user_pass’;)
 * All you have to do is modify the line to include the second parameter to get_results
   as ARRAY_A, like so:
 * $res = $wpdb->get_results($query, ARRAY_A);
 * Then it should work fine.

Viewing 1 replies (of 1 total)