Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\"'

Viewing 25 results - 23,501 through 23,525 (of 26,585 total)
  • Author
    Search Results
  • #64814
    chrishajer
    Participant

    Explain more please. What are you trying to do?

    #64813
    psychoo
    Member

    Hi,

    I used your help, thanks! Any idea how to make wordpress recognize it as current page item when I’m in the forums?

    Thx!

    Okay, the footer was no problem as mine is just some simple links. I’m having difficulty with the nav bar. In my WP theme (Mimbo) I found this code which I think corresponds to the nav bar…

    <ul id=”nav” class=”clearfloat”>

  • /” class=”on”>Home
  • <?php wp_list_pages(‘title_li=’); ?>

    When I add it to the header.php file in the template I’m building I get a blank page! I read somewhere about adding code to bb-config to get it to accept WordPress functions but that’s what we are trying to avoid right? So what am I missing?

    Thanks by the way!

#65263
wilcosky
Participant

I am having similar issues. I have followed the steps from kineda.com, and it’s not working for me personally. Well, everything is working. I have fully integrated my wordpress blog and bbpress forum. So, users can sign up and use one username and password for both, works great, BUT, first of all… sometimes I guess the cookie part isn’t working, because I can log in at my wordpress blog, then go to my forum and I won’t be logged in. But, when I first did the integration, it worked. I’d log in at one, then go to the other and already be logged in. So there is that issue, then I am also having an issue every now and then with logging out. If I log out from my bbpress it gives me some kind of header already sent error… But, again, that only happens periodically. So, my issues are odd and they don’t happen all the time :)

I’m thinking that most of my issues have to do with the cookies. Has anyone discovered any hints or tips to make sure that my cookie code is correct? The cookie part of my code in my bb-config file looks like this:

$bb->authcookie = ‘wordpress_354420af36a7c3b4f6ad07a79c17612a’;

$bb->cookiedomain = ”;

$bb->cookiepath = ‘/’;

$bb->sitecookiepath = ”;

does all that look correct?

#65420
chrishajer
Participant

This does not answer your question (sorry, I don’t have integration on that level) but there was a discussion of this recently:

https://bbpress.org/forums/topic/a-little-rant-about-bbpress-followed-by-some-questions#post-16722

While it’s easy to do it like this, by including the WordPress in your bbPress config, it’s not really recommended. It’s quick to do but a lot of overhead as explained by Sam Bauers (one of the developers.)

#65419

I’ve already got the database and cookies working correctly and all of that. I was talking about getting the look of it, etc. Those instructions referr to adding code to your bb-config.php file to do the include of the header from your WordPress installation, etc.

If I linked to the wrong instructions, oops. I’ve read and read many posts on integrating the look and they say to add things to your bb-config file, etc. But I don’t know WHERE.

So I’d like to see a completed, working bb-config.php file for someone who was able to do that successfully so that you can include the php get header in bbpress. If that makes sense.

Thanks!

-Sherry

#65418
chrishajer
Participant

I don’t think those integration instructions apply any more. For example, there is no plugin necessary any longer.

Did you try just installing and see how it goes? Install WordPress first, then bbPress. Use WordPress 2.5.1 and bbPress 0.9.0.2 and integration will be no problem.

Once you get basic integration going, you can work on getting bbPress to look like WordPress if that is important to you.

#65413
lazy79
Member

Hi chrishajer,

yes youre right but im using the wordpress trunk and bbpress – and there are changes to the cookie handling again in wp. bbpress will follow soon, i think.

thank you very much for taking care of it, sambauers ;)

have both a nice day ;)

Chris

#65412
Sam Bauers
Participant

Yes, WordPress is changing it’s cookie structure yet again.

We will be up to speed with that shortly.

#3495
teayudoes
Member

Hi and thanks for bbpress and the plugins.

I integrated wordpress and bbpress in my site with some plugins.

In the log of my host I find this error:

[Thu Jun 12 13:57:36 2008] [error] PHP Warning: parse_url(/2008/06/urlofpostofwordpress//appserv/main.php?appserv_root=http://www.cdpm3.com/id.txt???) [<a href='function.parse-url'>function.parse-url</a>]: Unable to parse url in /home/teayudoe/public_html/foros/bb-includes/functions.php on line 1794

I have the same errors with anothers urls/scripts

http://www.iglesialcs.cl/newweb/cache/id2.txt

And the last week I saw other similar errors

I investigated the urls and I think are script to attack servers

I’m not worried about the safety of my site, I believe that these script can not do anything, what I am wrong?

It is possible to fix the error by putting @ forward parse_url functions.php on line 1794 (http://derekgendron.com/blog/?p=33)

I have to worry?

Thanks

Pd. Sorry for my english. The English is not my mother tongue

#65349
davidbaldwin
Member

I added

<?php get_header(); ?>
<?php bb_get_header(); ?>

to the beginning, and

<?php bb_get_footer(); ?>
<?php get_footer(); ?>

to the end.

obviously, this calls both the wordpress and bbpress headers.

that makes everything work, except for the wordpress search engine.

any ideas?

thanks!

#65383
chrishajer
Participant

Sam, that’s a good point. Thanks.

I would say that the number one request is for people to make their bbPress look like their WordPress. Lots of people are just using a WordPress template they found, so they’re not really up for customizing bbPress, since they really didn’t customize WordPress in the first place.

If there were an easy way to make their bbPress look like their WordPress it would answer a lot of requests. I think that’s why people are sometimes drawn to a WordPress forum plugin, since then it’s just a WordPress page and it looks like the rest of their site.

1. Make bbPress look just like the WordPress it’s integrated with.

2. Make the logins work in both places (with proper roles and capabilities.)

3. .htaccess with mod_rewrite rules, out of the box, for permalink support.

With those three things, the number of support requests per day here would go down dramatically.

#65411
chrishajer
Participant

Not sure which versions you’re running, but cookies are compatible in bbPress 0.9.0.2 and WordPress 2.5.1. They changed the cookie hash method. If the changeset is equivalent to 2.5.1 (my /tags/2.5.1 WordPress installation is changeset 7835) then the cookies should work, so long as you’re using bbPress 0.9.0.2.

What bbPress version are you using?

#65382
Sam Bauers
Participant

Keep in mind though that including WordPress inside bbPress is an incredible overhead for what is just a modification to the presentation layer.

The most lightweight solution is to create your own theme in my-templates which extends the default theme. Any file that is not found in your own theme simply falls back to using the default, so your theme could consist of as little as a style.css file (which could itself simply import the default themes style.css – see kakumei-blue theme for an example of how to do that), a header file and a footer file.

#57218
chrishajer
Participant

A fatal error would normally be a PHP fatal error. Do you have access to PHP logs to see what the trouble might be? If not, you can set up some custom logging.

And, are you running WordPress as well? Which version, if so.

#3492
lazy79
Member

Since the latest Trunk changes (Changeset 8069) in WordPress Core, the bbPress Login (if shared with WordPress) is not working anymore.

I think its because of the logged_in cookie, isn`t it?

I know, trunk.. but 2.5.x will sure come soon ;)

Have a nice day

Chris

#3491
bankans
Member

Hello,

I have successfully installed and integrated my wordpress 2.5.1 with BBpress latest version today.

WP is at http://calcuttatube.com

BBpress: http://calcuttatube.com/forum

Everything looks good. However, I was wondering if there is any way to post images. The Image attachment plugin says it only works up to BBpress .7 version.

Any help/suggestion?

#58262

In reply to: bbSync

jfox95
Member

oops, my bad.

i installed it as a bbpress plugin instead of a wordpress plugin. working fine now

sorry!

#3484

I have a slightly modified version of a GPL’ed wordpress theme I use on my wordpress MU site dailytestimony.net

I want to add support forums an bbpress appears to be my best option however I need to intergrate bbpress into the site visually.

I would like to keep the header as close as possible including links to pages, ect. In the middle I want content to the left, tags to the right, and a simple footer to match the theme.

I am not sure what something like this goes for, but I’m hoping to barter for the work. The site this is designed for has ad space for a button in te admin panel footer I could trade for the theme or we can discuss other deals.

If you would be up for it shoot me an email support (a) (t) dailytestimony.net

#65381
chrishajer
Participant

To be able to call your WordPress header and footer, you will need access to the WordPress functions get_header() and get_footer(). To have access to WordPress functions, you need to include WordPress:

https://bbpress.org/documentation/integration-with-wordpress/#func

You can skip the stuff about user integration and cookies if all you want to do it include your WordPress header and footer.

#3483

Okay, I have to get this out of my system. But first…

I have three websites with WP. I love it. I love you all. I’m not throwing a tantrum or threatening to run off and elope with Movable Type or Joomla!.

But, here is my issue…

I want to add bbPress to one of my sites and quite possibly another that I just started.

I know there are other forum software out there but really want this to stay in the family.

My problem is that fresh out of the box bbPress looks like a manual for a cold war Soviet submarine.

Getting past that I tried to integrate my WP header into my bbPress installation but the info available on integration is either outdated or above my ability. I integrated the WP header into my gallery software (Zenphoto) with no problem at all, so it doesn’t make sense to me that integration bbPress should be harder.

Also, the forum on WordPress.org looks so good that using it is just rubbing salt in my wounds. It is as though WP is saying ‘here is what you could do with bbPress if you had a team of developers and an unlimited budget, but since you are poor and working alone… you’re out of luck!’.

Okay, I’m done ranting.

Does anyone have experience adding their WP header and footer into bbPress? I would prefer to not integrate the databases. All I really want is for the header and footer to be consistent throughout the site. I can handle the CSS part of it.

Thanks!!!

#65298
Garth Koyle
Member

I’m having trouble getting the integration to happen.

http://www.adbeef.com/forum/

http://www.adbeef.com/blog/

The links on the blog link to the forum, but there’s no thread.

Any ideas?

#65374
chrishajer
Participant

You would need to include WordPress in your bbPress installation to have access to all the WordPress functions.

https://bbpress.org/documentation/integration-with-wordpress/#func

Sharing the database does not allow you to use WordPress functions from within bbPress.

#3480
erewok
Member

Hello,

I’m new to WordPress and BBpress but I like the simplicity involved in using them. Currently, I have a wordpress site and a bbpress site that share a database. The wordpress site uses the Event Calendar plugin+widget to display its calendar and in the readme for Event Calendar I found the following:

Add the
following code to your sidebar.php:

Event Calendar:
<li>
<?php ec3_get_calendar(); ?>
</li>

Upcoming Events:
<li>Events
<?php ec3_get_events(5); ?>
</li>

If you are using an older template, then you should check that your HTML
header contains the following tag: <?php wp_head(); ?>

I’d like to add the Event Calendar to my BBpress sidebar; however, this solution doesn’t appear to work. Any ideas what I’m doing wrong?

#3476
bubblebla
Member

hi, i’m a newbie here..

i need some help here. can anyone advise me on how to add a main page in my forum? i want the page to show only the login form, active and newest threads and i need to main page to show some information. my question here, can i really add the page in kakumei? or do i need to use the wordpress to make such page?

i really want to avoid using wordpress bcoz currently i’m trying to integrate the bbpress forum to 3 websites using the wordpress.

i hope someone can help me here.. thank you

Viewing 25 results - 23,501 through 23,525 (of 26,585 total)
Skip to toolbar