Forums
-
- Forum
- Posts
-
- Installation
- 28,444
- Troubleshooting
- 62,540
- Themes
- 10,431
- Plugins
- 15,344
- Requests & Feedback
- 14,964
- Showcase
- 3,256
-
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’); `