Forums
-
- Forum
- Posts
-
- Installation
- 28,380
- Troubleshooting
- 62,269
- Themes
- 10,391
- Plugins
- 15,313
- Requests & Feedback
- 14,924
- Showcase
- 3,252
-
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’); `