Hi.
I integrated wp 2.7 and phpbb3 using wp-united and it worked ok but now I see that my right sidebar, my footer and my comments form dissapeared in category and post pages. In single.php everything is in place, I checked.
What could be the problem? Where do I go to fix this? My site address is Info Bebe
I suppose it could be a problem generated by blog.php... I'm posting the file (just the important part), just in case some one notices something worng with it:
//Do not edit any of the lines below:
// standard hack prevent
define('IN_PHPBB', true);
if (strlen($PATH_TO_PHPBB_INSTALL)) {
$PATH_TO_PHPBB_INSTALL = ($PATH_TO_PHPBB_INSTALL[strlen($PATH_TO_PHPBB_INSTALL)-1] == "/" ) ? $PATH_TO_PHPBB_INSTALL : $PATH_TO_PHPBB_INSTALL . "/";
@chdir ($PATH_TO_PHPBB_INSTALL);
}
$phpbb_root_path = './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
if (file_exists($phpbb_root_path . 'common.' . $phpEx)) {
include($phpbb_root_path . 'common.' . $phpEx);
require_once($phpbb_root_path . 'wp-united/abstractify.' . $phpEx);
define('WPU_BLOG_PAGE', 1);
require_once($phpbb_root_path . 'wp-united/mod-settings.' . $phpEx);
$wpSettings = get_integration_settings();
include ($phpbb_root_path . 'wp-united/wordpress-entry-point.php');
} else {
//When this warning appears, we cannot find phpBB - hence we do not use the template engine or $lang array. 'Cos we can't, alright?
echo "<html><head>
<style type=\"text/css\">BODY {background-color: #cccccc; text-align: center; margin: 150px; font-weight: bold; color: navy; font-size: 16px; font-family: Verdana, Arial, Helvetica, sans-serif; border: 1px solid #000000;}
</style></head><body>
<p style=\"color: #ffffff; font-size: 22px; background-color: navy; padding: 5px; margin: 0px;\">Error!</p>
<p style=\"background-color: #ffffff; margin: 0px; padding: 20px;\">The path is incorrect.
Please check the path to phpBB you provided and then run the WP-United Setup Wizard again.</p>
</body></html>";
}
Thank you so much if you can help!!!