Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\'

Viewing 25 results - 21,376 through 21,400 (of 26,846 total)
  • Author
    Search Results
  • #73520

    Yes, the database for wordpress is XXX_wrdp1 . Could you please tell me what is the most graceful way of fixing it? I don’t want to affect my operational site on wordpress, just want to integrate BBpress with it.

    Thanks in advance.

    #73519

    It looks like you have separate databases for your forum and blog. Do you also have an XXX_blog or XXX_wordpress database?

    Florian
    Member

    Hey,

    I think I had the same problem. Did you get the message “Forum could not be created” when you chose a new username?

    I just installed without integration and integrated afterwards. This killed my admin access, but I could restore it with the plugin which was mentioned in some of the sticky threads.

    Both installs now successfully share the user database, but I am still fighting with cookie integration… *sigh*

    Greetings,

    Florian

    ndrwld
    Member

    Hey,

    I’ve a problem with bbPress integration with WPMU. All installation steps going fine. I enter cookie integration fields, the same database, use default prefix’es, but nothing solves the problem.

    In 3 step of bbPress installation when I enter existing user “admin” in key master field it shows me an error – “The key master could not be created. An existing user was found with that user login.”. But even if I choose new user, forum installation ends fine but when trying to login, it redirects me to install wizard once again.

    With single install (without integration) bbPress works fine.

    #73517
    bobbyh
    Member

    This has happened to me before. From what you’ve said, it sounds like you didn’t change anything in the database and you just have an old/bad cookie that isn’t letting you log in again. Just clear your old cookies…

    #73516
    johnhiler
    Member

    This plugin helps restore keymaster access for bbPress:

    https://bbpress.org/plugins/topic/fix-admin-access/

    Not sure if it helps at all for WordPress… did you lose access to your blog or your boards?

    #10399
    antonytycoon
    Member

    I have a huge problem with my website most likely something i have done out of my own stupidity, i have lost the ability to log into my website all administrator accounts have vanished. i had edited one of the options in some settings, i changed my Domain name from how it was being displayed (http://yugioh-episodes.com) to (http://www.yugioh-episodes.com)as it looks better, at this moment i was logged out and my blog does not have any admin accounts, is their a way i can get my blog back i don’t want to loose the many many hours of work i have put into this …. please help me . thanks

    buckminster1
    Member

    I was not aware that there was a problem with the cookies. Currently, I have to login to each separately. The bbPress db shows a link to the wp user tables. Whenever I change any of the settings in the WordPress Integration, none of my users are recognized. Thanks for backups!!

    The WP and bbPress integration is implemented on my company intranet that I am building.

    #9372
    Sam Bauers
    Participant

    Hi everyone, bbPress 1.0 is moving beyond Alpha stage and skipping Beta to go straight into a series of Release Candidates towards a final 1.0 release. The first RC is now available for download.

    We’ve made this decision to push towards 1.0 final as the scope of what was going to be included in 1.0 has been whittled back and we have had some serious real world trials through TalkPress.

    Please note that if you are integrating bbPress with WordPress version 2.7.x or lower, you will need to add this line to your bb-config.php to maintain cookie compatibility:

    define('WP_AUTH_COOKIE_VERSION', 1);

    When you upgrade WordPress to 2.8 that line will have to be removed.

    #73464
    sicofante
    Member

    Thanks Crishajer.

    My friend is using 1.0 beta. The current stable release didn’t work (I don’t know exactly why).

    It will not be integrated with WordPress.

    He confirms he can use two words user names now, but the problem with using accents and tildes still persists (and it’s an essential need for us). He says he modified the class-bb-install to take these characters, to no avail.

    #73463
    chrishajer
    Participant

    What version bbPress are you talking about, and will it be integrated with WordPress?

    Spaces are no problem already.

    #8570
    alvarix
    Member

    With WordPress there is a handy way to override the url Options set in the DB like so:

    define(‘WP_HOME’, ‘http://localhost’ );

    define(‘WP_SITEURL’, ‘http://localhost’);

    This is really useful for local development. Anyone know the equivalent in BBPress?

    #73422

    In reply to: Username Issue

    braddock16
    Member

    I don’t know what is going on but my replies are being deleted every time. Please mods, stop it…i’m trying to find a answer to my problem.

    Johnhiler, I deactivated all the plugins but the problem persists.

    How can I reset the installation? I mean, the wordpress and bbpress tables are now one aren’t they? I think that’s how I installed it in the first place. How can I start over from scratch with the forum installation?

    Regards,

    Brad

    It has not been fixed in 1.0-a6 (as of three weeks ago). It happens on WordPress.org too :/

    (And _ck_, what’s a good plugin for that on WP? I’ve yet to find one I like, but I’m picky.)

    _ck_
    Participant

    I doubt they anticipated that. Years later, WordPress unbelievably still shows NOTHING when a comment is held in the moderation queue. You have to install a plugin to give the user some kind of clue what has happened. It’s dumbfounding.

    #8562
    lookfab
    Member

    Today I did the reverse integration of an existing WordPress blog (2.7.1) and BBPress forum (0.9.4). I described my plans here. With some help from bobbyh and a lot of digging into these forums, things worked out well.

    Here are the steps (all but the final 2 are database operations, which I did using phpMyAdmin):

    1. I didn’t need to do backups because I was using a test site, but if you are trying this, don’t go any further without full backups of everything.
    2. Copied the “bb_users” and “bb_usermeta” tables from the BBPress database to the WordPress database. I was a bit worried that the row sizes weren’t exactly the same in the destination copy, but as it turns out, that wasn’t an issue.
    3. Added a “user_activation_key” field to the copy of “bb_users” to ensure that the schema matched my current “wp-users” table in the WordPress database.
    4. Renamed the “wp_users” and “wp_usermeta” tables to “wp_users_old” and “wp_usermeta_old” respectively.
    5. Renamed the new “bb_users” and “bb_usermeta” tables to “wp_users” and “wp_usermeta” respectively.
    6. Added WordPress admin rights and metadata to the new admin user. To do this I ran the following query:

      INSERT INTO wp_usermeta (user_id, meta_key, meta_value) VALUES (‘1’, ‘wp_capabilities’, ‘a:1:{s:13:”administrator”;b:1;}’);

    7. Added WordPress user metadata for the rest of the users (since I’m using the BBPress user tables as the starting point they know nothing about WP capabilities). Here is the query:

      INSERT INTO wp_usermeta (user_id, meta_key, meta_value) SELECT user_id, ‘wp_capabilities’ AS meta_key, ‘a:1:{s:10:”subscriber”;b:1;}’ AS meta_value from wp_usermeta WHERE user_id NOT IN (SELECT user_id from wp_usermeta WHERE meta_key = ‘wp_capabilities’) GROUP BY user_id;

    8. Changed the user_id references in the “wp_posts” and “wp_comments” tables so that they pointed to the correct users (you need to do this because equivalent users don’t necessarily have the same ID in the previously separate WordPress and BBPress databases). Here are the queries I ran:

      UPDATE wp_posts SET post_author=NEW_ID WHERE post_author = OLD_ID

      UPDATE wp_comments SET user_id=NEW_ID WHERE user_id = OLD_ID

      NOTE that you need to think carefully about the order in which you do these changes. You don’t want to change a user’s ID to one that already exists in the WordPress table.

    9. Installed superann’s plugin to downgrade WP 2.7.1’s cookie handling for compatibility with BBP 0.9.4: http://superann.com/2009/02/26/wordpress-26-27-bbpress-09-cookie-integration-plugin/
    10. Told BBPress to find its user data in the new WordPress user tables. This is done in the BBPress admin page for WordPress integration: […]/bb-admin/options-wordpress.php. You need to follow the instructions carefully. In particular, note that the WordPress database secret should be copied from the current WordPress setting and not vice versa.

    Some other notes:

    • This is not something to do in a rush. I checked the results of each step carefully before moving on. This included browsing the database and, later in the process, logging in to the blog and forum to check whether things were working as expected.
    • This worked for me. Your mileage may vary.

    #72427
    lookfab
    Member

    I just got done reverse integrating existing installs of WP and BBP. So I didn’t actually run the BBP install, but I think “…/bb-admin/options-wordpress.php” answers your question about the secret key. See the “WordPress database secret” section on that page.

    It points you to “…/wp-admin/options.php” for the value “secret” setting in your WP install. I think this may be the SECRET_KEY you are looking for.

    If your install is already done, just go to “…/bb-admin/options-wordpress.php” and enter the secret in the text field provided there.

    #8497
    #73392
    johnhiler
    Member

    _ck_ – I’m using your skip-akismet plugin and thank goodness! At least my authors/moderators/admins are spared this.

    Akismet is going absolutely bonkers on all nine of my bbpress and WordPress installs… it just started a few days ago. I thought maybe it was connected to skip-akismet, but some of the *press installs aren’t using skip-akismet and they are still having problems!

    _ck_
    Participant

    You need to look at the database settings in the file and make sure they are valid.

    If you don’t know how to do that, ask your web host.

    If they won’t help you you need to find another web designer.

    Anyone with WordPress experience will be able to help you as the functionality is virtually the same as WordPress.

    Remember NOT to show the password in that file to anyone you don’t trust as they will then have read/write access to your database.

    #73416

    In reply to: Username Issue

    braddock16
    Member

    I have the following plugins installed:

    1. Private forums:

    http://www.adityanaik.com/projects/plugins/bb-private-forums/

    2. Akismet

    3. VIPUsers:

    I downloaded this on bbpress.org somewhere.

    I don’t have the bbpress signups separate from wordpress. The 2 is integrated. But you probably know that from my first post.

    In wordpress every user has the option to give themselves a “nickname”. I would actually like the forum to display that….if possible.

    #73414

    In reply to: Username Issue

    braddock16
    Member

    I don’t think it’s the template either because inside the forum area, bbpress shows that the username is the same as the email used when signing up to wordpress. that doesn’t make sense because when they signed up with wordpress they chose a real username.

    #73413

    In reply to: Username Issue

    braddock16
    Member

    My WORDPRESS theme/template shows the usernames correctly.

    The BBPress forum template does NOT.

    The template I’m using for BBpress is the “blank 3 column

    1.0 by refueled”

    BBpress version 0.9.0.4

    I’m using wordpress 2.6.2.

    I cannot change my wordpress version under any circumstances because I have certain vital plugins that only operate under that version and it’s a paid membership site.

    So what can the problem be here?

    Thanks for the support so far!

    #73412

    In reply to: Username Issue

    chrishajer
    Participant

    Wherever the username is displayed properly – what theme is in use there? And what version of bbPress and WordPress did you integrate?

    If you are seeing the username displayed incorrectly in bbPress, maybe the template author used the wrong function to display the username, or something like that.

    #73411

    In reply to: Username Issue

    braddock16
    Member

    Are you talking about the wordpress template theme or bbpress?

    I wouldn’t mind paying for help also.

    Regards,

    Braddock

Viewing 25 results - 21,376 through 21,400 (of 26,846 total)
Skip to toolbar