tjrutkowski+ 3 Report post Posted January 10, 2011 Greetings, I think I am very cose to having bbPress forums working, but I continue to get errors when I apply the deep integration code. I added this to bb-config.php after the opening line: require_once(dirname(__FILE__) . ???/home/content/45/7105545/html/wptest/wp-load.php??™); My site is: http://www.tjrutkowski.com/wptest/ http://www.tjrutkowski.com/wptest/forum/ Does it matter that I do not own the developer version of PageLines (yet)? I was hoping to get this working before I upgraded and got the templates. Thanks, TJ Share this post Link to post Share on other sites
tjrutkowski+ 3 Report post Posted January 10, 2011 ALSO, these are the errors I get when the integration code is active (I have it commented out now). Warning: Division by zero in /home/content/45/7105545/html/wptest/forum/bb-config.php on line 4 Warning: Division by zero in /home/content/45/7105545/html/wptest/forum/bb-config.php on line 4 Warning: Division by zero in /home/content/45/7105545/html/wptest/forum/bb-config.php on line 4 Warning: Division by zero in /home/content/45/7105545/html/wptest/forum/bb-config.php on line 4 Warning: Division by zero in /home/content/45/7105545/html/wptest/forum/bb-config.php on line 4 Warning: require_once(0php???‚¬?„?) [function.require-once]: failed to open stream: No such file or directory in /home/content/45/7105545/html/wptest/forum/bb-config.php on line 4 Fatal error: require_once() [function.require]: Failed opening required '0php???‚¬?„?' (include_path='.:/usr/local/php5/lib/php') in /home/content/45/7105545/html/wptest/forum/bb-config.php on line 4 Share this post Link to post Share on other sites
tjrutkowski+ 3 Report post Posted January 10, 2011 The errors go away when I use the code below (rather than the require_once from the documentation), and I think it is working right now. Can someone confirm, or let me know the steps I will need to follow if I upgrade to the Dev theme? Or, will it simple start using the template? Thanks, TJ code from http://blog.ashfame.com/2010/02/deep-integration-bbpress-wordpress/ /* Deep integration */ if ( !defined('ABSPATH') & !defined('XMLRPC_REQUEST')) { define('WP_USE_THEMES', false); include_once(dirname(__FILE__) . '/../wp-blog-header.php' ); header("HTTP/1.1 200 OK"); header("Status: 200 All rosy"); } Share this post Link to post Share on other sites
cmunns 16 Report post Posted January 10, 2011 The main difference in the dev version is the license so not much is going to change except to the actual template itself or are you referring to the platform forum? Share this post Link to post Share on other sites
tjrutkowski+ 3 Report post Posted January 10, 2011 I am referring to the Platform forum. With the dev version, I assume I'll get a matching template for bbPress. Are there any other features? Share this post Link to post Share on other sites
bryan-hadaway 3 Report post Posted January 11, 2011 Try using just: `require_once('/home/content/45/7105545/html/wptest/wp-load.php');` Thanks, Bryan Share this post Link to post Share on other sites
tjrutkowski+ 3 Report post Posted January 11, 2011 Thank you Bryan! Share this post Link to post Share on other sites
bryan-hadaway 3 Report post Posted January 12, 2011 You're Welcome. Thanks, Bryan Share this post Link to post Share on other sites