Forums

Join
bbPress Support ForumsTroubleshootingrequire_once(wp-blog-header.php) issue

Info

Tags

require_once(wp-blog-header.php) issue

  1. I'm integrateing bbpress with WP, I use require_once(path/to/wp-blog-header.php) in bb-config.php file

    the path I use is physical path, such as d:\hosting\memberid....

    does it make sense? but when I run bbpress, there is nothing happen or nothing changed

  2. Have you got the code at the top of your config file? That was the problem I ran into. I was able to use a relative path once I did that too. So the start of your config file should look something like this:

    <?php
    require_once('../wp-blog-header.php');
  3. You must log in to post.