Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\'

Viewing 25 results - 20,076 through 20,100 (of 26,846 total)
  • Author
    Search Results
  • #31856

    Topic: Admin Link in Sidebar

    in forum Themes
    mantraofdoom
    Member

    Hi everyone, I just started a site that uses WP and BBP together, and aside from a few outstanding issues, things are working out nicely.

    I built a theme for the forum that matches the WP theme, and it has a sidebar. When the user is logged in, it shows Welcome [username] and shows the avatar, a link to edit profile, my favorites, and log out.

    How can I have if the keymaster/admin/mod is logged in, a link to the dashboard? I tried some code from the default template, but nothing really seems to give me a direct link to admin. Is there a templates tag list for bbpress like the one for wordpress?

    Yep, you have to sanitize yourself, the database objects presume anything they’re passed has been already

    #79552
    johnhiler
    Member

    We should be ok. Best case scenario, Automattic will bring on someone to continue developing bbPress. Worse case scenario, we can fork the code from bbPress and continue development on our own… :-) Since WordPress is open source, maintaining cookie/user integration is definitely possible.

    But we can discuss all that in a separate thread… mostly just wanted to express appreciation for Sam in this thread! He wrote a huge amount of code and chimed in a lot of threads here on the forum – thanks again!

    Sam, I hope the team at Automattic appreciates how hard you worked, and just how much they lost when you stepped down!

    #78775
    annejan
    Member

    I fixed it! :)

    It was the WP-o-Matic plugin…

    #79501
    gerikg
    Member

    can someone help me with this? Just change the top into a call function that pulls from the db?

    using this method: https://bbpress.org/forums/topic/heres-how-to-show-bbpress-info-inside-wordpress-without-full-integration

    #78774
    annejan
    Member

    Thanks for your reply. I copied your code and deleted my own code.

    The WP things in my bbPress are still working, but the “next page” problem is there still too.

    Anyone a solution for the “next page” problem?

    Thanks in advance!!

    shmufus
    Member

    Hi, I’m trying to integrate bbPress with Buddypress using the guide here: http://theeasybutton.com/blog/2009/07/17/integrating-buddypress-wordpress-mu-and-bbpress/

    I have done this successfully on my localhost, but trying to do on on our host’s webspace is proving difficult.

    The integration of cookies works fine, but when I add a group to Buddypress, where is should normally say:

    “Enable discussion forum”

    It says:

    “Attention Site Admin: Group forums require the correct setup and configuration of a bbPress installation.”

    This is the part where a forum should automatically be created for the group. The passwords match up, the only difference I can see is one is using localhost and the other is using external webspace. Our host don’t allow us to set a folder to have 777 file permissions, which I thought could be the problem?

    My question is, does the bbpress folder need 777 permissions for it to integrate successfully this way, or should I be looking somewhere else for the problem?

    Thanks

    #79533
    chrishajer
    Participant

    WordPress sidebar code will not work straight away.

    You can find themes that use sidebars here and maybe find something you can copy from:

    http://bbshowcase.org/forums/view/available-themes

    Or, you can find professional help with programming for bbPress here:

    http://bbshowcase.org/forums/topic/bbpress-professionals-advertise-in-this-topic

    Or, anyone familiar with modifying WordPress should be able to help as well since they’re very similar.

    chrishajer
    Participant

    Yes, it will work fine with many users. It’s in use at WordPress.org if you want to see lots of users and activity. https://wordpress.org/support/

    You can also check the top 100 sites using bbPress here and see how they feel to you:

    http://bbshowcase.org/forums/view/top100

    You can find forums with lots of users, lots of posts, or both.

    #79588
    chrishajer
    Participant

    secure_auth_salt is only present if you’re accessing wp-admin via https protocol, otherwise it’s not needed. The bbPress installation used to have a note about that at this field.

    auth_salt you can get from your WordPress installation, at this URL:

    http://www.example.com/wp-admin/options.php

    I thought those notes were present on the bbPress installation screen…

    #31834
    peacesal
    Member

    Please where Can I find : auth_salt and secure_auth_salt, Still stuck at the 2nd installation steps. Trying to integrate wordpress and bbpress

    #31833
    #78896
    missfor
    Member

    Having the same issues here, saw the plugin on wpmu-enable-bbpree-capabilities but I would wait a little until some one more experienced here would say something.

    Basically the issue is that after installation and synch between bbpress and wordpress I see that the new users (except admin) have their roles assigned to Inactive.

    Any help please ?

    #79570
    terryjsmith
    Member

    @chrishajer I believe I found originally that including only wp-load.php did not register the actions and filters in WordPress and I wanted to keep those for our specific installation. But generally speaking, it would carry quite a bit less load :)

    @AphelionZ I am very glad you solved the problem, congratulations!

    mptyuser
    Member

    Hi everyone,

    I’m seriously considering dropping FluxBB (that i’m currently using for a large messageboard) and using BBPress.

    I would stop using FLuxBB for various reasons (mostly because i feel like FluxBB isn’t really alive anymore development-wise and also because i’ve been using wordpress for many many years and really digg the WP/BBpress community & coding) but… i was wondering is BBPress would do the job for a large messageboard with many users and connections everyday ?

    I’ve tested BBPress many times, installed the latest version again yesterday for a test run and tested many plugins, tried customizing themes to see if it would fit my needs etc. and it looks sweet but there’s one thing i can’t tell: would BBPress work fine with many users ? Would it be just as good and even better than FluxBB once i’ve installed the plugins needed and export everything from FluxBB to BBPress ?

    Do any of you use BBPress with hundreds of users on a daily basis ? It is running smoothly ? Is it responsive and fast ? It is made to work with huge amount of users and connections ?

    Thanx for your feedback. I’d really appreciate any experience you have / had.

    #31828
    AphelionZ
    Participant

    I’m trying to get the wordpress functions inside of bbPress and vice versa, and therefore get the buddypress functions into bbPress as well. I tried the method described here: http://labs.b5media.com/blog/creating-the-anypress-solution/ but to no avail. In short, it involves adding this code to the bottom of my bb-config.php file:

    // Include WordPress functionality
    $currDir = dirname(getcwd());
    // Make sure this isn't install or admin (go up if it is)
    if(!file_exists("$currDir/wp-blog-header.php"))
    $currDir = dirname($currDir);

    if(!file_exists("$currDir/wp-blog-header.php"))
    die("Cannot find WordPress integration files.");

    error_reporting(E_ALL);
    require_once("$currDir/wp-blog-header.php");

    The only clues I have from my error logs are a 404 error and a white screen of death when I try to access my forum root, which is at /community. Also, my rewrite log is here: http://pastebin.ca/1572291

    Please note that im using an external install of bbPress intentionally because I need the forums to be centrally located and somewhat separate from my blog. Any insight or help would be greatly appreciated!

    #31823
    John Jordan
    Member

    Hi I want to make my bb press forum the same as my wordpress page.

    Is there and easy way to do this?

    thanks

    John

    #31826
    angelamaria
    Member

    Hello,

    I’m planning to using bbPress on a WP site/blog I am currently working on, on my local. WordPress is up and running already, a relatively clean install save for a couple of themes, and some entries. No plugins yet. I download bbPress, upload it underneath my WP root directory (where the blog is), change config to match WP config (for my local it’s just changing out the database name; I have a username/password account set up already for each of test installs), and try to install. I get:

    DB Error: cannot select

    …on all pages. I’ve looked at both bb-config and wp-config and the database values are identical, except for the suffix variable naturally. I’ve checked the database, only wp_* tables are there. I am using a fresh bbPress download.

    Just for completeness’ sake (comments removed for brevity):

    bb-config.php excerpt:

    /** The name of the database for bbPress */

    define('DB_NAME', 'pugad-lawin');

    /** MySQL database username */

    define( ‘BBDB_USER’, ‘username’ );

    /** MySQL database password */

    define( ‘BBDB_PASSWORD’, ‘password’ );

    /** MySQL hostname */

    define( ‘BBDB_HOST’, ‘localhost’ );

    /** Database Charset to use in creating database tables. */

    define( ‘BBDB_CHARSET’, ‘utf8’ );

    /** The Database Collate type. Don’t change this if in doubt. */

    define( ‘BBDB_COLLATE’, ” );

    /** snip snip **/

    /**

    * bbPress Database Table prefix.

    *

    * You can have multiple installations in one database if you give each a unique

    * prefix. Only numbers, letters, and underscores please!

    */

    $bb_table_prefix = ‘bb_’;

    wp-config.php excerpt:

    /** The name of the database for WordPress */

    define('DB_NAME', 'pugad-lawin');

    /** MySQL database username */

    define(‘DB_USER’, ‘username’);

    /** MySQL database password */

    define(‘DB_PASSWORD’, ‘password’);

    /** MySQL hostname */

    define(‘DB_HOST’, ‘localhost’);

    /** Database Charset to use in creating database tables. */

    define(‘DB_CHARSET’, ‘utf8’);

    /** The Database Collate type. Don’t change this if in doubt. */

    define(‘DB_COLLATE’, ”);

    /** snip snip **/

    /**

    * WordPress Database Table prefix.

    *

    * You can have multiple installations in one database if you give each a unique

    * prefix. Only numbers, letters, and underscores please!

    */

    $table_prefix = ‘wp_’;

    Again, I have a username/password user setup on my local MySQL database for testing purposes, so yes, it is expected that those will be staying the same.

    Any info on this would be great. Thanks!

    @Kawauso

    I think using $wpdb & $bbdb should sanitize by them self but reading the page on codex it looks like that we need to do that explicitly. I am a lil confused. Can you please clarify?

    Thanks ! I forgot that I should check out the codex for that.

    #79525
    _ck_
    Participant

    0.9 or 1.0 and what is the environment your server is on.

    If you don’t know what that means just give us a PHPINFO.

    If you are on a host with NFS (like dreamhost) bbPress and WordPress

    (or anything relying on alot of files) will be slow.

    #79521
    chrishajer
    Participant

    I think you first need to determine how long bbPress is actually taking to generate a page, and how long it takes to generate the other pages on the site. You can start with _ck_’s mini-stats plugin for bbPress.

    https://bbpress.org/plugins/topic/mini-stats/

    [edit: see johnhiler’s link below to the bb-benchmark plugin]

    And, on the other part of your site, what is running that? Is it WordPress or just static HTML? If it’s WordPress, you can get a plugin as well to point out performance bottlenecks.

    Regardless of what type of software a site (your site) is running, there are lots of tools you can run in your browser to find performance bottlenecks.

    Firefox (you need that to run most of these add-ons)

    Firebug (all around awesome tool)

    Y Slow from Yahoo!

    Google Page Speed

    There are tons and tons of performance add-ons for Firefox but these will get the job done.

    Also, what host are you on, and can you post the URL here so others may see the performance first hand?

    #79064

    $wpdb and $bbdb have nice sanitizing functions and caching of results if I remember correctly

    https://codex.wordpress.org/Function_Reference/wpdb_Class

    They can also be used to retrieve table names for the respective package

    #79063
    chrishajer
    Participant

    Why not just use the threaded comments that are built in to WordPress? Is there something you don’t like a the WordPress commenting system? If so, maybe there’s a plugin out there to change it.

Viewing 25 results - 20,076 through 20,100 (of 26,846 total)
Skip to toolbar