Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress'

Viewing 25 results - 21,401 through 21,425 (of 26,865 total)
  • Author
    Search Results
  • #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

    #7857
    braddock16
    Member

    Hi guys

    My forum member’s usernames show their email addresses!?

    I did the integration correctly and the forum/wordpress database get’s updated accordingly when new people register.

    But what on earth can I do about the username issue?

    I want it to display their real usernames.

    Regards,

    Brad

    #66163
    gera3d
    Member

    Hello Everyone,

    So let me start with I am on day 3 trying to get this working right. I have tried 5 different methods to getting the forums to workd with my WordPress MU install but I just cant get it working. Please Help.

    Everything is fresh and current.

    Latest Attempt:

    Following this guide.

    https://trac.buddypress.org/browser/trunk/bp-forums/installation-readme.txt

    At the end of bbpress install I got this error. Check Code below.

    I also cant do step 6 because buddypress-enable.php is not there. What should I do?

    Referrer is OK, beginning installation…

    >>> Setting up custom user table constants

    Step 1 – Creating database tables

    >>> Modifying database: 40knetwork (mysql.dbmethod.com)

    >>>>>> Table: bb_forums

    >>>>>>>>> Creating table

    >>>>>>>>>>>> Done

    >>>>>> Table: bb_meta

    >>>>>>>>> Creating table

    >>>>>>>>>>>> Done

    >>>>>> Table: bb_posts

    >>>>>>>>> Creating table

    >>>>>>>>>>>> Done

    >>>>>> Table: bb_terms

    >>>>>>>>> Creating table

    >>>>>>>>>>>> Done

    >>>>>> Table: bb_term_relationships

    >>>>>>>>> Creating table

    >>>>>>>>>>>> Done

    >>>>>> Table: bb_term_taxonomy

    >>>>>>>>> Creating table

    >>>>>>>>>>>> Done

    >>>>>> Table: bb_topics

    >>>>>>>>> Creating table

    >>>>>>>>>>>> Done

    Step 2 – WordPress integration (optional)

    >>> Fetching missing WordPress cookie salts.

    >>>>>> WordPress “auth” cookie salt not set.

    >>>>>> WordPress “secure auth” cookie salt not set.

    >>>>>> WordPress “logged in” cookie salt not set.

    >>> User database table prefix: wp_

    Step 3 – Site settings

    >>> Site name: Warhammer Social Network

    >>> Site address (URL): http://warhammernetwork.us/forum/

    >>> From email address: gera3d@gmail.com

    >>> Key master role assigned to existing user

    >>>>>> Username: admin

    >>>>>> Email address: gera3d@gmail.com

    >>>>>> Password: Your existing password

    >>> Description: Just another bbPress community

    >>> Forum name: Warhammer Social Network

    >>>>>> Topic: Your first topic

    >>>>>>>>> Post: First Post! w00t.

    >>> Key master email sent

    There were some errors encountered during installation!

    bobbyh
    Member

    This sounds reasonable but painful. :-)

    Some tips:

    * Only upgrade bbPress to 0.9

    * Upgrading to WordPress 2.7.1 almost made this impossible, but ck and superanne saved your bacon with plugins for WP 2.7 <=> bbPress 0.9 cookie compatibility. :-)

    * Don’t forget to assign your WP users privileges (e.g. Keymaster) by adding a row to the usermeta table

    * How are you going to handle user_id conflicts between bbPress and WordPress? For instance, if the WordPress “asdf” user/author has a user_id of 17, and there’s also a user on bbPress with a user_id of 17, you’ll have to do a bunch of UPDATE queries to wp_posts (post_author field) and wp_comments (comment_author and user_id), because when you create a new author with a user_id of 1000, it won’t match up with the post_author_field (etc.) which will have the old 17 number in it.

    * Also what about username conflicts, e.g. two users named “asdf”, etc.? That might result in more UPDATE queries… You’ll have to rename the WordPress user, probably.

    * The benefit to integrating the databases completely is you don’t have to make two connections to two databases. I’d go for it.

    * That extra index on user_nicename is the least of your problems. :-)

    * Are you sure that bb_users and wp_users has the exact same database schema? Confirm this! :-) Also, make sure to add any “missing indexes” that are currently in wp_users to “the new wp_users”.

    Good luck!

    Ben L.
    Member

    Can you put the HTML source code of a page where the css and jquery are missing from <head> to </head> in http://bbpress.pastebin.com/ ?

    #73337
    paultjuh2
    Member

    No wordpress, bbPress 0.9.0.4.

    Im using Instant Password now, I prefer mailing.. still open for solutions.

    (sry for bad english)

    ^Paul

    #68579
    eclipsei
    Member

    Thanks, looks interesting if I can figure out how to get it working :)

Viewing 25 results - 21,401 through 21,425 (of 26,865 total)
Skip to toolbar