Forum Replies Created
-
In reply to: What’s integration?
Not sure if you have found the solution, but if you put the absolute path to your wp-blog-header.php, it should work fine.
Example:
/home/yourusername/public_html/wp-blog-header.php.In reply to: Numbered PostsThe
post_positionin thebb_posttable has the correct number for each post. I don’t know much about php, but I made a little plugin for my forum, which seems to work.function get_post_num() {
global $bb_post;
return$bb_post->post_position;
function post_num() {
global $bb_post;
echo $bb_post->post_position;
}?>I just place
post_num()where I wanted it to show. Hope this helps?In reply to: Patch: Categories for version 0.8Thanks for replying. I’ve tried everything I can think of, and still get the same error. I can’t see that any permissions have been changed, so I don’t know what to try next.
Colleen
In reply to: Patch: Categories for version 0.8I applied this patch as per the instructions, but when I go to upgrade the database, I get a blank screen. The error from the server is Permission denied in config.php on line 60. Is there something I’ve missed?