ramycaspi 0 Report post Posted April 14, 2011 Hi, I have added the code; require_once('/prepaidmvno.net/ wp-load.php'); into the BB-CONFIG (file) But I am getting this message; "Deep Integration With WordPress Required - error message" How can I fix this, as I don't see what I have done wrong... My Hierarchy looks like this; (a) /prepaidmvno.net/ Has WP Installed on the root ( /prepaidmvno.net/forum/ has BB-Press installed in it. so the bb-conf.php is in this folder - /prepaidmvno.net/forum/bb-config.php and the route to wp-load is listed above as /prepaidmvno.net/ wp-load.php I edited the code for bb-config - but still getting error message. Can anyone assist - as my site is basically down until I can tweak this setting R Using Platform Pro (Developer) with Forum Plugins & Templates... Deep Integration With WordPress Required It appears your WordPress installation isn't deeply integrated which is required for Platform Forum to work correctly (it needs access to WP functions). More info: Your WordPress install needs to be loaded on your forum pages, so we can use WP's functions. This is done by "including" (with a line of code) the wp-load.php file from WordPress. For help, please see bbPress.org, the info here deep integration with WordPress and contact your host for the path to include your WP install. Share this post Link to post Share on other sites
timlinson 3 Report post Posted April 14, 2011 So "prepaidmvno.net" is the actual name of a root folder on the server? Also if you used the exact code you pasted, it has an extra space (between the slash and wp-load) which would throw things off. Share this post Link to post Share on other sites
ramycaspi 0 Report post Posted April 14, 2011 No, I am using - require_once('/prepaidmvno.net/wp-load.php'); Share this post Link to post Share on other sites
ramycaspi 0 Report post Posted April 14, 2011 Now I am getting this error; Warning: require_once(/prepaidmvno.net/wp-load.php) [function.require-once]: failed to open stream: No such file or directory in /home/ramycaspi/prepaidmvno.net/forum/bb-config.php on line 65 Fatal error: require_once() [function.require]: Failed opening required '/prepaidmvno.net/wp-load.php' (include_path='.:/usr/local/lib/php:/usr/local/php5/lib/pear') in /home/ramycaspi/prepaidmvno.net/forum/bb-config.php on line 65 Share this post Link to post Share on other sites
Simon 248 Report post Posted April 14, 2011 Your require line is wrong. It has to be the full server path to the file. like: `/home/simon/htdocs/wp-load.php` for example Share this post Link to post Share on other sites
ramycaspi 0 Report post Posted April 14, 2011 The path is right. Share this post Link to post Share on other sites
ricardo 0 Report post Posted April 14, 2011 No, it's wrong. Like Simon explained, your full path starts with "/home/ramycaspi" so everywhere you added that by hand you should correct it, like that last line should be: require_once('/home/ramycaspi/prepaidmvno.net/wp-load.php'); Share this post Link to post Share on other sites