Title: Issue with using multisite
Last modified: August 20, 2016

---

# Issue with using multisite

 *  Resolved [joenova](https://wordpress.org/support/users/joenova/)
 * (@joenova)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/issue-with-using-multisite/)
 * I just did a clean install of 3.4.2 with multisite enabled on SQL Server 2008
   R2.
 * I don’t see the default or any subsequently added sites in the list of sites 
   in the network admin.
 * Has anyone had similar issues or know how to fix this?
 * Need help ASAP for work! Please!!
 * Thanks!!
 * [http://wordpress.org/extend/plugins/wordpress-database-abstraction/](http://wordpress.org/extend/plugins/wordpress-database-abstraction/)

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Thread Starter [joenova](https://wordpress.org/support/users/joenova/)
 * (@joenova)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/issue-with-using-multisite/#post-3146794)
 * Found the fix for anyone who’s interested.
 * In ‘translations.php’ around line 739 in the ‘translate_limit()’ function you
   currently have:
 *     ```
       if ( count($limit_matches) == 5 && $limit_matches[1] != '0' ) {
                   $true_offset = true;
               } elseif ( count($limit_matches) == 5 && $limit_matches[1] == '0' ) {
                   $limit_matches[1] = $limit_matches[4];
               }
       ```
   
 * This needs to be changed to:
 *     ```
       if ( count($limit_matches) == 6 && $limit_matches[1] != '0' ) {
                   $true_offset = true;
               } elseif ( count($limit_matches) == 6 && $limit_matches[1] == '0' ) {
                   $limit_matches[1] = $limit_matches[4];
               }
       ```
   
 * Hope this helps someone else!
 *  [jonpetitta](https://wordpress.org/support/users/jonpetitta/)
 * (@jonpetitta)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/issue-with-using-multisite/#post-3146875)
 * Yup that did it for me, thank you very much for the fix!!!
 * Though this leads me to wonder what other functionality is broken by the db abstraction…
 *  Thread Starter [joenova](https://wordpress.org/support/users/joenova/)
 * (@joenova)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/issue-with-using-multisite/#post-3146880)
 * Agreed.
 * Also, this fixes the “Posts” and “Pages” listings if anyone was curious.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Issue with using multisite’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wordpress-database-abstraction.svg)
 * [WP Db Abstraction](https://wordpress.org/plugins/wordpress-database-abstraction/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wordpress-database-abstraction/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wordpress-database-abstraction/)
 * [Active Topics](https://wordpress.org/support/plugin/wordpress-database-abstraction/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wordpress-database-abstraction/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wordpress-database-abstraction/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [joenova](https://wordpress.org/support/users/joenova/)
 * Last activity: [13 years, 6 months ago](https://wordpress.org/support/topic/issue-with-using-multisite/#post-3146880)
 * Status: resolved