Forums
-
- Forum
- Posts
-
- Installation
- 28,551
- Troubleshooting
- 62,891
- Themes
- 10,445
- Plugins
- 15,399
- Requests & Feedback
- 14,995
- Showcase
- 3,259
-
Here is a quick workaround I just figured out, but I’m not sure this is state of the art:
Instead of
require_once(dirname(__FILE__) . '/../wp-blog-header.php');
in config.php, I put
`if ( !defined(‘DB_NAME’) && !strstr($_SERVER[“PHP_SELF”],’bb-admin’) )
require_once(dirname(__FILE__) . ‘/../wp-blog-header.php’); `