Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\'

Viewing 25 results - 26,426 through 26,450 (of 26,703 total)
  • Author
    Search Results
  • #51361

    bbPress no longer uses the dropdown menu (what if your blog had thousands of users on it? It’d be really hard to find you!).

    Instead, you should be able to enter your WordPress account’s login name into the form as you install bbPress.

    But, there is a problem with your config.php

    The values for $bb->akismet_key, $bb->wp_table_prefix, $bb->wp_home, and $bb->wp_siteurl should all be contained in single quotes (') like

    $bb->wp_home = 'http://patrimoineacadien.com';

    EDIT: I removed some potentially sensitive information from your post above.

    #51254

    ear1grey,

    Actually MultiViews looks for topic.php if it hasn’t found topic/, but otherwise you’re spot on.

    You can also use RewriteRules which forces the server to do the same thing ‘manually’.

    hywl51,

    When you request that URL, Apache’s MultiViews or RewriteRules (whichever you are using) loads topic.php. That file then prepares a bunch of data and displays it with my-templates/topic.php (If that file exists) or bb-templates/topic.php (otherwise).

    If you are familiar with the way WordPress works, it may not help much :) This is one area where WordPress and bbPress are quite different.

    #50681

    berg80, thanks for the info. The documentation has been updated: https://bbpress.org/documentation/integration-with-wordpress/

    #50614

    bbPress’ table prefix should never be the same an WordPress’. That will cause many problems, as you may have experienced.

    bbPress uses the following tables. Don’t delete the ones marked with a *, since WP uses those too (hence the problem).

    forums

    posts*

    topics

    topicmeta

    users*

    usermeta*

    tags

    tagged

    These all look like bb_forums (or whatever bbPress’ table prefix is in your case) in your database.

    #51360

    I beleive you… Don’t worry, I don’t blame your article. It’s very well written; no joking :).

    Thanks for your support. By the way, nice to meet you.

    Hope you can help.

    Here is my config.php:

    define(‘BBDB_NAME’, ‘per my WordPress wp-config.php’); // The name of the database

    define(‘BBDB_USER’, ‘per my WordPress wp-config.php’); // Your MySQL username

    define(‘BBDB_PASSWORD’, ‘per my WordPress wp-config.php’); // …and password

    define(‘BBDB_HOST’, ‘ localhost’); // 99% chance you won’t need to change this value

    $bb_table_prefix = ‘bb_’; // I chose that my bbPress prefix start with bb_.

    $bb->domain = ‘www.patrimoineacadien.com’; // Not sure which domain to choose here? http://www.patrimoineacadien.com is my WordPress domain.

    $bb->path = ‘/bbpress/’; // My bbPress folder is title bbpress as shown in this FTP path: (/public_html/blogue/bbPress). My WordPress folder is title blogue as shown in this FTP path: (/public_html/blogue/bbPress).

    $bb->name = ‘Babillard PatrimoineAcadien.com’;

    $bb->admin_email = ‘** MODERATED**’;

    $bb->mod_rewrite = false;

    $bb->page_topics = 30;

    $bb->edit_lock = 60;

    $bb->gmt_offset = -4; (Eastern Daytime)

    define(‘BBLANG’, ‘fr_FR’);

    $bb->akismet_key = ** MODERATED**;

    $bb->wp_table_prefix = ** MODERATED**; // I’m sure about my WordPress database prefix!

    $bb->wp_home = http://patrimoineacadien.com; // WordPress – Options->General: Blog address (URL) // No trailing slash

    $bb->wp_siteurl = http://patrimoineacadien.com; // WordPress – Options->General: WordPress address (URL) // No trailing slash

    When I add wp_home & wp_siteur1 URL as http://patrimoineacadien.com , I get the following error: Parse error: syntax error, unexpected ‘:’ in /home/patrimoi/public_html/blogue/bbpress/config.php on line 53 at http://patrimoineacadien.com/bbpress/bb-admin/install.php?step=1 . I retrieve this URL http://patrimoineacadien.com under my WordPress Options General.

    #51359
    astereo
    Member

    You’re doing something wrong in the config. (Don’t blame my article ;))

    Chances are, your WP information is not matching up in your BBpress config. Post your config file here (just take out the db passwords) and I’ll be glad to help.

    #950
    kellyw
    Member

    I installed the forums per the directions and used a sub-directory of WordPress (will move to subdomain after I get it all figured out) .

    When I went to the install page I got the warnings:

    Warning: Cannot modify header information – headers already sent by (output started at /home/content/B/l/u/BlueEyes61/html/info/forums/config.php:1) in /home/content/B/l/u/BlueEyes61/html/info/forums/bb-includes/pluggable.php on line 39

    Warning: Cannot modify header information – headers already sent by (output started at /home/content/B/l/u/BlueEyes61/html/info/forums/config.php:1) in /home/content/B/l/u/BlueEyes61/html/info/forums/bb-includes/pluggable.php on line 39

    Warning: Cannot modify header information – headers already sent by (output started at /home/content/B/l/u/BlueEyes61/html/info/forums/config.php:1) in /home/content/B/l/u/BlueEyes61/html/info/forums/bb-includes/pluggable.php on line 168

    Although I got it all installed when I try to login or logout I get these errors. I am using the integration plugin for WP as well. The forums are located at:

    http://www.mapzone.net/info/forums/

    I remember having this problem with XOOPS once but cant remember how I fixed it.

    #948

    Hello again,

    Consider that I’m using http://www.devlounge.net/articles/the-ultimate-bbpress-guide/1/ guide to install bbPress, I was brought to the forum setup screen, but my WordPress admin account username is not in the dropdown menu listing. There’s no dropdown menu listing. Without this menu listing, my WordPress integration will not be possible: forum admin login will not be the same as WordPress.

    How can I resolve? I’ve tried many different combinations within Config.php with no success in obtaining the account username in the drop down menu listing.

    What do you suggest?

    #944
    Tammy Hart
    Member

    It would be great if there was a plugin that would allow members to upload images either as attachments or to be used inside the post, kind of how in wordpress when you’re writing a new post or page, you can upload a picture right there and then use it.

    #50865
    coldcn
    Member

    Is it a bug? I cannot log in with my admin account to the forum which works with wordpress.

    I cannot find the table named bb_users.

    #51330
    Atsutane
    Member

    Most likely there is some plugin for wordpress that are using the same name as bbpress function. Try disable that plugin to see it work or not

    #50680
    berg80
    Member

    I upgraded from WP 2.0.2 to 2.0.5 and everything seems to work now with the user integration. Maybe it should say somewhere you need the latest version of WordPress.

    #50679
    berg80
    Member

    Basically the same thing is happening to me. I have the bbpress integration plugin installed on my WordPress blog, but when I register on BBPress, no default role is assigned for that user in WordPress. When I look at the Users tab in WordPress, no group is identified for that new user.

    #933
    Chris_K
    Member

    [preface: I’m just a simple WordPress support moderator, which uses bbPress]

    It is very (very) conceivable this may be a dumb user question… but I’ll ask anyways.

    Is there a way to get post dates in the support forums (or any bbPress forum) to show the time in my time zone?

    Editing my user profile and poking around, I don’t see an option to set my proper time offset (I’m GMT – 7).

    I know it’s not a huge deal, but it’d be keen to see!

    #930
    Atsutane
    Member

    I donno what went wrong. But when i try to find post using tag, i got “500 Internal Server Error”. I have try disable pretty permalink and still no luck.

    Anyone know what went wrong? Using wordpress 2.0.5 and bbpress 0.73

    #50678
    M
    Member

    English, and yes I have the bbpress integration plugin installed in my wordpress plugins, as well as the display name plugin for bbpress.

    I have not yet upgraded wordpress to 2.0.5, am still running 2.0.4.

    #50677

    Are either of you using a translated version of bbPress, or are you both using English?

    I ask because I have heard of a strange thing or two with capabilities and non-enlish languages (though I’ve newer been able to confirm or reproduce).

    and M,

    Do you have the “bb-press integration” plugin installed in your WordPress blog? https://trac.bbpress.org/attachment/ticket/438/bbpress-integration.php

    (the download link is way at the bottom)

    #51011
    Nola1974
    Participant

    Astutane: Now I get….

    ‘Fatal error: Cannot redeclare widget_akismet() (previously declared in /home/nolagay/public_html/wordpress/wp-content/plugins/akismet/akismet.php:376) in /home/nolagay/public_html/wordpress/wp-content/plugins/akismet/akismet.php on line 376’

    #50676
    M
    Member

    I’m glad to have happened upon this thread, after reading it I decided to check my own and found if I registered through the forum the user was set to Administrator in WordPress.

    While I’m no coding expert, I’ve enough experience working with WordPress and all it takes to set things up to be quite sure I have not made an error somewhere.

    Just as hasund said above, the new user is listed in a separate section under Authors & Users in my WordPress Dashboard – at the bottom under all admins, subscribers, editors, etc. Their

    I’m using the Role Manager plugin, could that be causing the trouble? The only step from bbPress that I did not follow was the Pretty Permalinks; every other step, plugin, etc. I followed to a T.

    This is a very serious issue, my entire site would have been vulnerable had I not found this thread and gone ahead and opened my forums this weekend as planned. I’ve removed my register.php file for the time being. I already have some people using my forum, but they are trusted friends who already have some access to the main site anyhow, thank goodness.

    #51110

    Continued from my previous post: oddly enough, once my bbPress tables were imported into WordPress, also all of my WordPress registered identifiers were erased from their postings. In addition, I no longer have Administrator access to my WordPress login… weird. With all facts presented, their is logic and also non logical facts.

    #51109

    Continued from my previous post: I chose identifier Robert Richard (space) in bbPress (Administrator during Running Installer) and the same identifier existed within WordPress; end results, bbPress replace Robert Richard within WordPress that became RobertRichard (no space).

    Previous to the bbPress integration attempts, I use to login WordPress with Blogue (identifier) and password; but all WordPress posts were identified as Robert Richard (space) to visitors. This said, I’m not sure if you would call Robert Richard within WordPress as an identifier.

    #51004
    Sonika
    Member

    Agop,

    дело не в тестовой эксплуатации, а в том, что нужно заставить bbpress пользоваться таблицей wp_users самого wordpress. Для программиста это не проблема должна быть…

    #51108

    «What steps did you take? Did you install bbPress in another database or did you install it again in the current database that WordPress is at. »

    I did install bbPress in another database or by itself… separate from WordPress database.

    «If you installed in another database and then exported out the bb_ prefix tables and imported them in the database with the wp_ prefix tables, nothing should have happened to WordPress.»

    Yes, it’s what my web host support that did the export/import… the exact same steps you instructed me to do or as shown above: export bbPress tables, then import bbPress to WordPress. It seems that I’ve use the same identifier or username (Robert Richard) for the bbPress as it already existed within WordPress (Robert Richard)… both database had the same Admin username or identifier.

    «Either way, nothing should have happened to WordPress because bbPress uses the login information from WordPress, not vice-versa.»

    I’m not sure of about «either way», but I will ask my web host help desk to re-install backups and start over again with a different identifier or username.

    «When I installed bbPress, I chose the ‘key master’ as an account that isn’t the admin in WordPress. That is a pain because I have to login as 1 user to administer bbPress and logout and login as another user to administer WordPress. Of course, I figured all this out after importing my phpBB posts.»

    I’m figuring out this stuff hands on and by having you as a support. It seems logical to have a different identifier; I thought about it afterwards. Regretfully, I don’t have the formal training with database and tables to have predicted this dynamic. Luckily, bbPress.org has you.

    Thanks a million.

    Robert Richard.

    #920
    maxyboy83
    Member

    Hi

    Interesting times. Made my first attempt at integrating bbPress.

    Installation went fine and I can login as Admin, my bbPress entry page comes up ok growthlounge.com/forum

    But the big problem is when I come to click on anything. It is the same outcome every time – a grey screen with nothing on.

    This happened both when I attempted to integrate with WordPress, but also when I completely reinstalled without any attempt to integrate.

    Here are some of the particulars:

    define(‘BBDB_NAME’, ‘wordpressgl’); // The name of the database

    define(‘BBDB_USER’, ‘wordpressgl’); // Your MySQL username

    define(‘BBDB_PASSWORD’, ‘xxxxxxx’); // …and password

    define(‘BBDB_HOST’, ‘mysql.growthlounge.com’); // 99% chance you won’t need to change this value

    $bb->domain = ‘http://growthlounge.com’;

    $bb->path = ‘/forum/’;

    $bb->mod_rewrite = true;

    $bb->wp_table_prefix = false; // WordPress table prefix. Example: ‘wp_’;

    $bb->wp_home = false; // WordPress – Options->General: Blog address (URL) // No trailing slash

    $bb->wp_siteurl = false; // WordPress – Options->General: WordPress address (URL) // No trailing slash

    WordPress is installed at http://growthlounge.com

    Wordpress blog is setup to operate from http://growthlounge.com/blog/

    However, the problem shouldn’t be WordPress integration, as I’ve made no attempt to do this the 2nd time round.

    Any ideas guys? No problems during installation but a completely unfunctioning site….

    Cheers

    Max

    #51107
    Trent Adams
    Member

    Robert,

    What steps did you take? Did you install bbpress in another database or did you install it again in the current database that WordPress is at. If you installed in another database and then exported out the bb_ prefix tables and imported them in the database with the wp_ prefix tables, nothing should have happened to WordPress. Either way, nothing should have happened to wordpress because bbpress uses the login information from WordPress, not vice-versa. When I installed bbpress, I chose the ‘key master’ as an account that isn’t the admin in WordPress. That is a pain because I have to login as 1 user to administer bbpress and logout and login as another user to administer WordPress. Of course, I figured all this out after importing my phpBB posts…..

Viewing 25 results - 26,426 through 26,450 (of 26,703 total)
Skip to toolbar