Re: *seamless* wordpress integration
I was able to perform an integration (not db just a seamless design) using Kenzor’s method:
...in the header I have only:
<?php get_header(); ?>
In the footer I have only:
<?php get_footer(); ?>
However I am not able to login. It takes me to the Add New Topic page without having logged me in.
This is what I added to my bb-config file, apart from it’s own db config
if (file_exists('../wp-blog-header.php'))
require_once('../wp-blog-header.php');
else
if (file_exists('../../wp-blog-header.php'))
require_once('../../wp-blog-header.php');
Any advice greatly appreciated,
alvar