Title: WordPress Table &#8216;*_dtree_cache&#8217; doesn&#8217;t exist
Last modified: February 15, 2017

---

# WordPress Table ‘*_dtree_cache’ doesn’t exist

 *  [Rolf Allard van Hagen](https://wordpress.org/support/users/ravanh/)
 * (@ravanh)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/wordpress-table-_dtree_cache-doesnt-exist/)
 * On a multisite running on sub-sites, these messages are flooding the log because
   the plugin checks for a table with the main blog prefix.
 * Using `get_blog_prefix()` like this from line 1 in wp-dtree-cache.php should 
   fix it:
 *     ```
       <?php
       //In WP 2.6, I suddenly got problems with global variables "dissapearing", so these getters are... Q&D.
       function wpdt_get_table_name(){
       	global $wpdb; return $wpdb->get_blog_prefix() . "dtree_cache";
       }
       ```
   
 * Too bad the plugin does not simply use WordPress own Transient API to store cached
   strings though… Much simpler and avoids the need to create new DB tables.

The topic ‘WordPress Table ‘*_dtree_cache’ doesn’t exist’ is closed to new replies.

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

 * 0 replies
 * 1 participant
 * Last reply from: [Rolf Allard van Hagen](https://wordpress.org/support/users/ravanh/)
 * Last activity: [9 years, 3 months ago](https://wordpress.org/support/topic/wordpress-table-_dtree_cache-doesnt-exist/)
 * Status: not resolved