Forum Replies Created
-
In reply to: WordPress Functions
I am having a similair problem.
I am requiring once wp-blog-header.php into bb-config as well, so I can call the headers and footers of my wp site. It is killing the ability to login.
In reply to: *seamless* wordpress integrationAfter reading some more posts on login difficulties, I found that removing
require_once('../wp-blog-header.php');
allows me to login. But I need that, to get my header and footer.In reply to: *seamless* wordpress integrationI 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
In reply to: Override URL constant in bb-config.php?OK, will try dragunoff’s method.
Thanks for the help!
In reply to: Override URL constant in bb-config.php?Doesn’t quite seem to work though. When I log in, it bounces me over to the remote site.
In reply to: Override URL constant in bb-config.php?define(‘BB_URI’, ‘http://path.to.local’);
I had a redirect that was confusing me :S