Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\'

Viewing 25 results - 24,726 through 24,750 (of 26,821 total)
  • Author
    Search Results
  • #61997
    livibetter
    Member
    #2700
    hishamabu
    Member

    Hello,

    I am trying to install bbPress onto the same Database I have installed WordPress. But I keep getting an error (see below).

    As far as I’m aware I have filled in the appropriate config.php information. With the same information that I’ve got on the WordPress wd_config.php.

    But still no luck. Both WordPress and bbPress have been downloaded from the official websites merely a few days back.

    Warning: mysql_get_server_info() [function.mysql-get-server-info]: Can’t connect to local MySQL server through socket ‘/var/run/mysqld/mysqld.sock’ (2) in /home/.stinkybutt/vault21/ibnmuslim.com/abdi/forums/bb-includes/db-mysqli.php on line 80

    Warning: mysql_get_server_info() [function.mysql-get-server-info]: A link to the server could not be established in /home/.stinkybutt/vault21/ibnmuslim.com/abdi/forums/bb-includes/db-mysqli.php on line 80

    I really do appreciate any and all help with regards to this matter.

    Kindest regards

    Hisham

    #61926

    In reply to: Excerpts

    livibetter
    Member

    If you just call the template functions of WordPress, that won’t work. I meant get the part you need. (sorry for misleading)

    PS. If you still can’t get it work, please paste your code and error message, if any.

    #61949
    Trent Adams
    Member

    bbPress and WP are easily integrated so that bbPress uses the wp_users table in the database, so what you are trying to accomplish is very easy to do. As for embedding gallery into WP, from personal experience it works fine and permalinks are configurable. I would check https://wordpress.org/support/ for more data on that though, but integrating the 3 should be pretty easy and straight forward! Integration is covered in the “FAQ” link of this forum!

    Trent

    #2699
    refueled
    Member

    I have just released my latest bbPress theme: Misty Morning.

    Demo

    Download

    I also have a matching WordPress theme:

    Demo

    Download

    Let me know what you think!

    #61970
    toxicshocktv
    Member

    I actually already tried that. Here’s my config as of now:

    <?php

    // ** MySQL settings ** //

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

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

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

    define(‘BBDB_HOST’, ‘localhost’); // 99% chance you won’t need to change these last few

    define(‘BBDB_CHARSET’, ‘utf8’); // If you are *upgrading*, and your old config.php does

    define(‘BBDB_COLLATE’, ”); // not have these two contstants in them, DO NOT define them

    // If you are installing for the first time, leave them here

    // Change the prefix if you want to have multiple forums in a single database.

    $bb_table_prefix = ‘bb_’; // Only letters, numbers and underscores please!

    // The full URL of your bbPress install

    $bb->uri = ‘http://www.toxicshock.tv/board/&#8217;;

    // What are you going to call me?

    $bb->name = ‘Toxic Shock TV Forum’;

    // This must be set before you run the install script.

    $bb->admin_email = ‘toxicshocktv@gmail.com’;

    // Set to true if you want pretty permalinks, set to ‘slugs’ if you want to use slug based pretty permalinks.

    $bb->mod_rewrite = ‘false’;

    // The number of topics that show on each page.

    $bb->page_topics = 30;

    // A user can edit a post for this many minutes after submitting.

    $bb->edit_lock = 60;

    // Your timezone offset. Example: -7 for Pacific Daylight Time.

    $bb->gmt_offset = 0;

    // Change this to localize bbPress. A corresponding MO file for the

    // chosen language must be installed to bb-includes/languages.

    // For example, install de.mo to bb-includes/languages and set BBLANG to ‘de’

    // to enable German language support.

    define(‘BBLANG’, ”);

    // Your Akismet Key. You do not need a key to run bbPress, but if you want to take advantage

    // of Akismet’s powerful spam blocking, you’ll need one. You can get an Akismet key at

    // http://wordpress.com/api-keys/

    $bb->akismet_key = ”; // Example: ’64f1b30caafe’

    // The rest is only useful if you are integrating bbPress with WordPress.

    // If you’re not, just leave it as it is.

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

    $bb->wp_home = ”; // WordPress – Options->General: Blog address (URL) // Example: ‘http://example.com&#8217;

    $bb->wp_siteurl = ”; // WordPress – Options->General: WordPress address (URL) // Example: ‘http://example.com&#8217;

    /* Stop editing */

    if ( !defined(‘BBPATH’) )

    define(‘BBPATH’, dirname(__FILE__) . ‘/’ );

    require_once( BBPATH . ‘bb-settings.php’ );

    ?>

    #61924

    In reply to: Excerpts

    livibetter
    Member

    I think you can just copy/use WordPress’ excerpt generating function, just a thought but I know that will work.

    #2697
    #2695
    #61923

    In reply to: Excerpts

    Doobus
    Member

    I’ve already looked into that as a viable solution, but WordPress’ back-end just complicates things for new users. bbPress is a lot simpler solution in that a forum is built around the idea of community, I’m just theming it not to look like a forum for advertising purposes, everyone knows that the ctr for forums are terrible. Plus I already gutted Kakumei beyond recognition, can’t turn back now :).

    Anyhoo, anyone know of how to put excerpts?

    #55385
    aaron1728
    Member

    How should I modify my .htaccess to accomodate a bbpress install in a /forums/ subdirectory? The install worked but permalinks aren’t.

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    #50391
    rcanine
    Member

    Wouldn’t a better fix for this be to apply a filter in the “WordPress Integration” plugin? I’m not sure the exact syntax but something like:

    if (function_exists('wp_head')) {
    // or another check to see if WordPress has been included
    add_filter('get_topic_title', 'stripslashes');
    add_filter('get_post_text', 'stripslashes');
    }

    To me this is exactly what a WordPress Integration plugin should do.

    #61900

    In reply to: WP 2.4

    Sam Bauers
    Participant

    The current trunk contains the new password hashing method. We will do a simultaneous release with WordPress to avoid issues for people with integrated installs.

    #2681

    Topic: WP 2.4

    Andrew
    Member

    I saw the following post on WP2.4 – coming in Jan.

    WordPress weekly digest 26th November to 2nd December 2007

    It sounds like WP2.4 will use a new hashing scheme to store the password.

    Will this interefere with bbPress users who are running WordPress User integration?

    #61871
    chrishajer
    Participant

    Nah – I would think anyone looking to write a plugin should already know some PHP. I would start at a plugin for bbPress since there are already lots of PHP tutorials online. With bbPress, we need stuff like this.

    Thanks.

    #61870
    livibetter
    Member

    That’s a good topic, however I think PHP 101 should be come next?

    PS. I am re-uploading .flv and .mp4.

    #61869
    chrishajer
    Participant

    I haven’t watched this video yet, but I think an idea for another one would be how to write a plugin :)

    #2676
    livibetter
    Member

    Hi!

    I made a new podcast show and the first episode’s topic is “Integrating bbPress into WordPress.” This is my first video, so I’m really need your suggestions. Maybe you can tell me what are you expecting in such podcast show? I am looking forward to hearing from you! :)

    PS. I haven’t decided what’s next episode and when will it be released.

    PS2. You may want to download .ogg (I might convert .ogg to .flv and .mov without appropriate parameters, so the qualities are not good).

    #2675
    Doobus
    Member

    How do I changed how the feed views the RSS titles? The current title setup in RSS is “user name” on “title of post”. I want to remove user name, the word “on”, and the quote marks of the title post and just leave the title post, basically I want the rss view exactly like the WordPress RSS view. Suggestions? Thanks in advance.

    #61862
    chrishajer
    Participant

    Can you post what you did and what resources you used, so others with the same problem might find this post when they are searching for a solution to their problem?

    Basically though, you would install WordPress first, then use the same database for bbPress, but with a different table prefix for the bbPress tables. Then there are configuration options in config.php in the bbpress folder. Some of those can only be answered AFTER installing WordPress, like these:

    $bb->wp_table_prefix = '';
    $bb->wp_home = '';
    $bb->wp_siteurl = '';

     

    #54213
    chrishajer
    Participant

    I wouldn’t put them in bb-templates at all (no good reason for saying that other than “they don’t go there.”) Just drop them into my-templates.

    The my templates folder should be 0755.

    The template folder itself should be 0755.

    The files in the template folder should be 0644.

    (well, that’s what they are in my installation, by default, and they work)

    If those permissions are correct, then is it possible you didn’t create a folder under my-templates? Should be something like:

    my-templates  (directory)
    -crystal (directory)
    - all the php and css for the crystal theme here
    -superbold (directory)
    - all the php and css for the superbold theme here

     

    The other thing is that the style.css needs to have a line in it like this:

    Theme Name: Crystal

    If the Theme Name is not unique, I think bad things happen. At least you see what appears to be a theme of the same name in multiple places in the admin panel. I know WordPress doesn’t like themes with the same name too much, and I suspect bbPress is similarly picky.

    Please post when you find the solution because I am sure it will help other people. Thanks.

    #61868
    chrishajer
    Participant

    There has been some talk of this recently in the dev list. They were recently looking at using phpass as WordPress does, and I know they were also going to look into just how WordPress does registration as well.

    http://comox.textdrive.com/pipermail/bbdev/2007-December/thread.html

    #2674
    alexhertz
    Member

    WordPress has a really nice authentication method: by user’s email. No password or registration. Is it possible to use similar authentication in bbpress?

    Really, registration is unnecessary and creates a problem of spam nicknames cluttering the admin panel. Akismet deals with spam comments well.

    Wouldn’t it make sense to switch to the wordpress-type authentication by poster’s email?

    Please note that this is not the same as anonymous posting.

    Additionally, bbpress really lacks wordpress’ moderation options. It would be surely a good idea to moderate all comments which contain links since almost all of them are spam comments which make it through Akismet.

    #2672
    Doobus
    Member

    This is such a nub question, but what goes first the WordPress install followed by bbPress? Or do they install at the same time, the documentation is confusing me because all it say is configure the config.php file in the bbPress folder, but doesn’t say much else? Any help past this would be great! Thanks.

    #61860

    In reply to: Server requirements?

    chrishajer
    Participant

    Shared hosting works fine assuming you have a good host. As you get more forum activity, you would need more server, and shared hosting is not going to be enough. For starting out though, bbPress works fine on a shared host.

    I’ve been using 1&1 (affiliate link) for 4+ years now without any trouble at all running WordPress or bbPress or anything else, for that matter. If you get an account on a shared host, I would recommend getting one with ssh access to a command line. It makes a lot of things much easier. If all you have is FTP access, that’s OK too.

Viewing 25 results - 24,726 through 24,750 (of 26,821 total)
Skip to toolbar