Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 47,051 through 47,075 (of 64,474 total)
  • Author
    Search Results
  • #82352
    grassrootspa
    Member

    Just finished reading up…ecstatic to see this chat.

    Random thoughts (from someone who has been periodically messing with this for a year and still learning the ropes):

    -Don’t like the idea of eliminating bbPress’s stand alone ability and REQUIRING it be a WP plugin (some of us just want to run stand-alone forums without having to install WordPress first.) Prefer to keep it as a separate project.

    -Love the idea of adding new OPTIONAL features to the bbPress core (bbPress 1.1) . Here are my top 6:

    (1) Optional TinyMCE addition

    (2) Ability to edit plugins and templates from within bbPress admin

    (3) Ability to add widgets to certain areas without having to mess with the template (will be handy for easily editing ‘sidebar’ stuff from the admin page rather than having to play with the template code each time

    (4) More Avatar/Gravatar options, such as easily adjusting their size on Profile pages and including instructions on how to get a Gravatar built into the ‘edit profile’ pages. People want to customize their forum character. Make it easier for them to do it right out of the box: display a click-able link to Gravatar.com!

    (5) To combat spam registrations, build optional ‘Human Test’ and ‘Terms of Service’ registration page features (which can be further modified and tweaked by plugins/user modifications). I’m sure everyone else there has noticed ‘Spam’ user signups. A built-in human test and/or TOS box to check will go a long way in eliminating them!

    (6) Better bozo management notification on the admin page (have numbers pop-up like for new comments and plugins in case a legitimate user has been marked as a bozo. I’ve had this happen a couple times because I didn’t check the bozo list.

    -Pleased to hear bbPress.org design will be revamped and include Codex

    -THRILLED to see folks from the message board helping bbPress.org and the overall project in various areas

    -In summary, EXCITED about bbPress 1.1

    #32517
    pondering
    Member

    Much time has gone into properly integrating our cookies, themes, and all.

    Hoping to offer some sort of files download with instructions sometime soon so that future users don’t have to go through all the pain and suffering that we did to accomplish all of this. Stay tuned in this thread!

    http://collegetimes.us – WordPress

    http://forum.collegetimes.us – bbPress

    http://jobs.collegetimes.us – JobPress

    http://reviews.collegetimes.us – WP Review Site

    http://games.collegetimes.us – MochiAds Arcade (still janky)

    #82404
    Raize
    Member

    Good news. There was a meetup on IRC today, and here’s a transcript of what was discussed. The idea of bbpress turning into a plugin for WordPress was thrown around, which would be awesome.

    https://bbpress.org/blog/2009/12/2009-12-09-meetup/

    #32507
    chrishajer
    Participant

    ma.tt says:

    We just had our first ever IRC meetup for the new bbPress, here are the logs, sorry if they’re a little rough. If you’d like to join in next time check out the Getting Involved page.

    http://bbpress.org/blog/2009/12/2009-12-09-meetup/

    #82403
    Raize
    Member

    Thanks for the replies. I have faith in BBPress…it’s a very stable and lightweight product so it has a strong base to build from. If it can achieve even a fraction of what wordpress has, I think many people will be happy. I hope to contribute to the best of my ability as well, and I think I will be sticking with BBPress.

    Cheers

    #82402
    r-a-y
    Participant

    There’s also PunBB and FluxBB (fork of PunBB) as alternatives.

    Both are also lightweight and actively in development.

    Although if you’re using WordPress for your main blog/CMS, you should think about sticking with bbPress for your forum.

    #32511
    #82321
    Michael
    Participant

    The file should already exist in your bbPress Root.

    Mine looks like this:

    # BEGIN bbPress

    Options -MultiViews

    <IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteBase /devstation/

    RewriteRule ^rules/?$ /devstation/bb-page.php?page_id=1 [L]
    RewriteRule ^faq/?$ /devstation/bb-page.php?page_id=2 [L]

    RewriteRule ^page/([0-9]+)/?$ /devstation/index.php?page=$1 [L,QSA]
    RewriteRule ^forum/([^/]+)/page/([0-9]+)/?$ /devstation/forum.php?id=$1&page=$2 [L,QSA]
    RewriteRule ^forum/([^/]+)/?$ /devstation/forum.php?id=$1 [L,QSA]
    RewriteRule ^forum/?$ /devstation/ [R=302,L,QSA]
    RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ /devstation/topic.php?id=$1&page=$2 [L,QSA]
    RewriteRule ^topic/([^/]+)/?$ /devstation/topic.php?id=$1 [L,QSA]
    RewriteRule ^topic/?$ /devstation/ [R=302,L,QSA]
    RewriteRule ^tags/([^/]+)/page/([0-9]+)/?$ /devstation/tags.php?tag=$1&page=$2 [L,QSA]
    RewriteRule ^tags/([^/]+)/?$ /devstation/tags.php?tag=$1 [L,QSA]
    RewriteRule ^tags/?$ /devstation/tags.php [L,QSA]
    RewriteRule ^profile/([^/]+)/page/([0-9]+)/?$ /devstation/profile.php?id=$1&page=$2 [L,QSA]
    RewriteRule ^profile/([^/]+)/([^/]+)/?$ /devstation/profile.php?id=$1&tab=$2 [L,QSA]
    RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ /devstation/profile.php?id=$1&tab=$2&page=$3 [L,QSA]
    RewriteRule ^profile/([^/]+)/?$ /devstation/profile.php?id=$1 [L,QSA]
    RewriteRule ^profile/?$ /devstation/profile.php [L,QSA]
    RewriteRule ^view/([^/]+)/page/([0-9]+)/?$ /devstation/view.php?view=$1&page=$2 [L,QSA]
    RewriteRule ^view/([^/]+)/?$ /devstation/view.php?view=$1 [L,QSA]
    RewriteRule ^rss/?$ /devstation/rss.php [L,QSA]
    RewriteRule ^rss/topics/?$ /devstation/rss.php?topics=1 [L,QSA]
    RewriteRule ^rss/forum/([^/]+)/?$ /devstation/rss.php?forum=$1 [L,QSA]
    RewriteRule ^rss/forum/([^/]+)/topics/?$ /devstation/rss.php?forum=$1&topics=1 [L,QSA]
    RewriteRule ^rss/topic/([^/]+)/?$ /devstation/rss.php?topic=$1 [L,QSA]
    RewriteRule ^rss/tags/([^/]+)/?$ /devstation/rss.php?tag=$1 [L,QSA]
    RewriteRule ^rss/tags/([^/]+)/topics/?$ /devstation/rss.php?tag=$1&topics=1 [L,QSA]
    RewriteRule ^rss/profile/([^/]+)/?$ /devstation/rss.php?profile=$1 [L,QSA]
    RewriteRule ^rss/view/([^/]+)/?$ /devstation/rss.php?view=$1 [L,QSA]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^.*$ /devstation/index.php [L]
    </IfModule>

    # END bbPress

    Most of those should already be there. I have separated the two rules at the top so you can see how it is done for pages.

    If your site has a forum directory (ie the forum does not reside on the top-level of your site, then you should remove the “devstation/”. If it does, then replace “devstation/” with your forum’s directory.

    Regards

    Michael

    #82320
    bb-lover
    Member

    and also tell me where i put this .htaccess file because i’ve integrated my wordpress and bbpress

    so where should i put this file… wordpress root or bbpress root?

    #82401
    Michael
    Participant

    Hi Raize

    bbPress is currently in that stage. There are a number of us who will be contributing to the new bbpress so that it will be a mature package.

    See this link for more information about the starting steps of this make-over: https://bbpress.org/forums/topic/help-out-with-bbpress

    bbPress will take a while before it gets on it’s feet again – once it does, it’ll be great – competing with the likes of phpBB and SMF (vBulletin is out of the question as it is too ‘full’ of junk.)

    I highly suggest using bbPress. I’m using it here: http://www.inniosoft.co.cc/devstation. As you can see, the quality is good and it caters for most things. Once bbPress starts getting better, upgrading will be easy. Also, if you have a WordPress Blog, you’ll be able to integrate the two. bbPress is aimed at simplicity and good operations.

    Michael

    #32510
    Raize
    Member

    I’ve been looking for a solid forum software for quite some time now. vBulletin has a lot of features, but it’s too bloated…it’s “Web 1.0”

    I explored Vanilla, EsoTalk, and now bbPress. I thought bbPress would be a good option, but it seems like the developer community has completely abandoned it over the past year. There are no themes, no plugins, and barely any updates to the core forum. As I kept looking for themes, I found this on bbShowcase:

    The bbPress Showcase has been discontinued.

    The removal of Sam Bauers and the halting of bbpress.org 2.0

    was a clear and final sign that there is no interest in allowing

    bbPress to become a mature, robust program and community.

    By now bbPress 1.5 could have been in alpha but instead

    bbPress development has been deliberately stagnated,

    which should be a very alarming warning to everyone.

    In addition, bbShowcase had only six donations in 2009,

    which indicated to me there was no interest in my work.

    My code will remain on bbpress.org as open source GPL

    for those that wish to use it, however I caution you to

    consider bbPress’s lack of leadership before continuing to use it.

    Now I’m back at square one again. Not knowing which forum software to use.

    chrishajer
    Participant

    It wasn’t closed accidentally; I closed it intentionally. Since you’ve posted a way to be contacted, there’s not need for the discussion to continue here. If people are interested, they can contact you outside the forum.

    mbeneteau
    Member

    (I had already posted this but got accidentally closed it, so resubmitting)

    I would like a quote on integrating WordPress, bbPress, and Memberwing membership system.

    To see what I need —

    1)Go to http://internet101.biz/wordpress-how-to and join the site (upper right “Free registration for premium content”)

    2)Login and then go to the Forum http://internet101.biz/forums . You will be logged in but won’t be able to post because there is no bbPress role defined for Memberwing “Bronze member”.

    What I want is for bbPress “member” role to be assigned from Memberwing “Gold member”.

    Write to me directly from http://everymanmarketing.com/contact/. I would expect this a 1 or 2 hour job.

    Marc

    #82348
    Michael
    Participant

    Thanks – I feel like an idiot. I really need to explore the bbPress core a little more.

    #55978

    In reply to: Show off your Forum !!

    Michael
    Participant

    Greetings :)

    I guess I could do the show off thing. Here’s mine: Dev:station

    It has quite a lot of plugins installed – and everything works – though there may be a few bugs that I don’t know of.

    Plugin List:

    Admin Add User

    Allow Images

    Avatar Upload

    BBCode Lite

    BBCode Toolbar

    bbPM

    BBPress:SyntaxHiliter

    bbPress Moderation Suite

    bbPress Smilies

    Bozo Users

    Favicon

    General Statistics (my own plugin)

    Hot Tags Plus

    Hot Topic

    Human Test for bbPress

    Indicate New Posts

    Member List

    bbPages

    Post Count Plus

    Project Honey Pot

    Read-Only Forums

    Related Topics

    Reputation

    Signatures

    Simple Online List

    Support Forum

    Terms of Service

    Topics per Page

    Twitter

    I know the address to this forum isn’t that great – I’ll be getting a .com domain for it some time next year (hopefully January).

    Enjoy! :)

    Michael

    #82280
    Michael
    Participant

    Hi Ben

    I’m running quite a few:

    Admin Add User

    Allow Images

    Avatar Upload

    BBCode Lite

    BBCode Toolbar

    bbPM

    BBPress:SyntaxHiliter

    bbPress Moderation Suite (obviously ;) )

    bbPress Smilies

    Bozo Users

    Favicon

    General Statistics (my own plugin, not the problem – have tested it extensively)

    Hot Tags Plus

    Hot Topic

    Human Test for bbPress

    Indicate New Posts

    Member List

    bbPages

    Post Count Plus

    Project Honey Pot

    Read-Only Forums

    Related Topics

    Reputation

    Signatures

    Simple Online List

    Support Forum

    Terms of Service

    Topics per Page

    Twitter

    Unread Posts (I should disable this one as I already have Indicate New Posts enabled)

    I have gone through and disabled each one – this did not solve the problem.

    Any help would be great. :) Thanks

    #82316
    Elias
    Member

    Since bbPress 1.0.x you have to use my-languages, the path bb-includes/languages is correct for older bbPress versions.

    #82318
    Michael
    Participant

    Unfortunately, this plugin was meant to have support for Permalinks – hence the unused Page slug in the bbPages settings – but that never came about.

    I recently had this problem too – so I manually edited my .htaccess file in the bbPress root.

    So, I turned my Rules page from this:

    http://www.inniosoft.co.cc/devstation/bb-page.php?page_id=1

    to

    http://www.inniosoft.co.cc/devstation/rules/

    You need to open your .htaccess file in the bbPress root and add the following for each page, replacing <your-page> with the url you would like:

    RewriteRule ^<your-page>/?$ /bb-page.php?page_id=1 [L]

    #82202
    Michael
    Participant

    You obviously don’t know what BBCode is at all – so let me explain.

    BBCode is an alternative to HTML for people to use in their posts. For example, if they wanted to have bold text, they would put this in their post:

    Text

    You can download BBCode lite for bbPress here: https://bbpress.org/plugins/topic/bbcode-lite/

    You then need to save the'bbcode-lite.php file in your my-plugins directory. If you do not have one, you will need to create it. Then go to your admin panel, Plugins, and install BBCode Lite.

    Then, in your posts, you will need to enter a URL like this:

    http://www.example.com

    or, with a title

    My Example Site

    Hope this solves your problem. :)

    #32504
    bb-lover
    Member

    Dear Developers,

    I’ve recently use bbpages plugin.. its working fine..but i want one more thing in this plugin … here is url like my site

    http://www.example.com/bb-page.php?page_id=3

    i want to change it to

    http://www.example.com/my-own-keyword.html

    can any coder tell me how it possible?

    i’ll be great thankful to you

    here is plugins files


    1. bb-page.php for root

    <?php

    require_once(‘./bb-load.php’);

    $page_id = 0;

    bb_repermalink();

    if ( !$page )

    bb_die(__(‘Page not found.’));

    do_action( ‘bb-page.php’, $page_id );

    bb_load_template( ‘page.php’, array(‘bb_db_override’, ‘page_id’) );

    ?>


    2. page.php for template

    <?php bb_get_header(); ?>

    <?php if ( isset_id() ) : ?><?php if ( page_exist() ) : // Do not delete this ?>

    <div class=”top_box”>

    <h2><?php echo get_page_title(); ?></h2>

    <div class=”bbcrumb”>“><?php bb_option(‘name’); ?> » <?php echo get_page_title(); ?></div>

    </div>

    <div class=”post-content”>

    <?php echo get_page_content(); ?>

    </div>

    <?php else: // If there is no page with id=X in database ?>

    <div class=”notice_box”><div class=”notice_content”>404 – I’m sorry, but this page does not exist.</div></div>

    <?php endif; ?>

    <?php else: // If page ID is not specified or it equals 0 ?>

    <div class=”notice_box”><div class=”notice_content”>Page is not specified.</div></div>

    <?php endif; ?>

    <?php bb_get_footer(); ?>


    3. bb-pages.php for plugin

    <?php

    /*

    Plugin Name: bbPages

    Plugin URI: http://astateofmind.eu/freebies/bbpages/

    Description: Allows you to create static pages within your bbPress forum.

    Author: F.Thion

    Author URI: http://astateofmind.eu

    Version: 0.0.2

    license: GPL

    donate: http://astateofmind.eu/about/support/

    */

    function get_page_id() {

    if ( isset ( $_GET ) ) :

    $page_id = $_GET;

    return $page_id;

    endif;

    }

    function isset_id() {

    if ( $_GET > 0 ) :

    return true;

    else:

    return false;

    endif;

    }

    function page_exist() {

    global $bbdb, $bb;

    $id = get_page_id();

    $table_name = $bbdb->prefix . “pages”;

    $query = $bbdb->get_results(“SELECT page_id FROM $table_name WHERE page_id=”.$id.””);

    if ( $query == true ) :

    return true;

    else:

    return false;

    endif;

    }

    function get_page_title() {

    global $bbdb, $bb, $page_id;

    $id = get_page_id();

    $table_name = $bbdb->prefix . “pages”;

    $query = $bbdb->get_results(“SELECT page_title FROM $table_name WHERE page_id=”.$id.””);

    foreach ($query as $rk) {

    return $rk->page_title;

    }

    }

    function get_page_slug() {

    global $bbdb, $bb, $page_id, $page;

    $id = get_page_id();

    $table_name = $bbdb->prefix . “pages”;

    $query = $bbdb->get_results(“SELECT page_slug FROM $table_name WHERE page_id=”.$id.””);

    foreach ($query as $rk) {

    return $rk->page_slug;

    }

    }

    function get_page_content() {

    global $bbdb, $bb, $page_id;

    $id = get_page_id();

    $table_name = $bbdb->prefix . “pages”;

    $query = $bbdb->get_results(“SELECT page_content FROM $table_name WHERE page_id=”.$id.””);

    foreach ($query as $rk) {

    return $rk->page_content;

    }

    }

    function list_pages() {

    global $bbdb, $bb;

    $table_name = $bbdb->prefix . “pages”;

    $query = $bbdb->get_results(“SELECT * FROM $table_name ORDER BY page_order ASC”);

    $status = array(

    0 => ‘Draft’,

    1 => ‘Published’

    );

    foreach ($query as $rk) {

    echo ‘

    <tr>

    <td>’.$rk->page_id.'</td>

    <td>’.$rk->page_title.'</td>

    <td>’.$rk->page_date.'</td>

    <td>’.$status[$rk->page_status].'</td>

    <td>page_id.'”>Edit | page_id.'”>Delete | page_id.'”>View</td>

    </tr>

    ‘;

    }

    }

    function pages_panel() {

    $action = $_REQUEST;

    switch($action)

    {

    default:

    ?>

    <h2>Manage Static Pages <small>(Create new page)</small></h2>

    <table class=”widefat”>

    <thead>

    <tr>

    <th style=’width:5%;’>ID</th>

    <th style=’width:45%;’>Title</th>

    <th style=’width:20%;’>Creation Date</th>

    <th style=’width:10%;’>Status</th>

    <th style=’width:20%;’>Actions</th>

    </tr>

    </thead>

    <tbody>

    <?php echo list_pages(); ?>

    </tbody>

    </table>

    <h3>Please support the developer</h3>

    <img src=”http://astateofmind.eu/uploads/donation.gif&#8221; style=”margin-right:10px” border=”0″ align=”left” />

    Do you like this plugin? Do you find it useful? If so, please donate few dollars so I could keep develop this plugin and others further and further. Even the smallest help is greatly appreciated for a student in Poland ;).

    <form action=”https://www.paypal.com/cgi-bin/webscr&#8221; method=”post”>

    <input type=”hidden” name=”cmd” value=”_donations”>

    <input type=”hidden” name=”business” value=”wojciech.usarzewicz@gmail.com”>

    <input type=”hidden” name=”item_name” value=”bbPages Donation”>

    <input type=”hidden” name=”item_number” value=”bbPages Donation”>

    <input type=”hidden” name=”no_shipping” value=”0″>

    <input type=”hidden” name=”no_note” value=”1″>

    <input type=”hidden” name=”currency_code” value=”USD” />

    Type donation amount: $ <input type=”text” name=”amount” value=”1″ />

    <input type=”hidden” name=”tax” value=”0″>

    <input type=”hidden” name=”lc” value=”US”>

    <input type=”hidden” name=”bn” value=”PP-DonationsBF”>

    <input type=”submit” name=”submit” value=”Donate with PayPal!” alt=”PayPal – The safer, easier way to pay online!”>

    <img alt=”” border=”0″ src=”https://www.paypal.com/pl_PL/i/scr/pixel.gif&#8221; width=”1″ height=”1″>

    </form>

    <p>Want to know what I’m developing right now? Follow me on Twitter, ignore 90% of stuff and learn a lot you will ;). And thank you for using my plugin!</p>

    <?php

    break;

    case “add”:

    global $bbdb, $bb;

    if (isset($_POST))

    {

    $page_title = $_POST;

    $page_slug = bb_sanitize_with_dashes( “$page_title”, “” );

    $page_content = $_POST;

    $page_order = $_POST;

    $page_status = $_POST;

    $table_name = $bbdb->prefix . “pages”;

    $query = “INSERT INTO ” . $table_name .

    ” (page_id, page_date, page_content, page_title, page_status, page_slug, page_order) ” .

    “VALUES (0, NOW(), ‘”.$page_content.”‘, ‘”.$page_title.”‘, ‘”.$page_status.”‘, ‘”.$page_slug.”‘, ‘”.$page_order.”‘)”;

    $bbdb->query($query);

    ?><div class=”updated”><p>Page has been saved.</p></div> <?php

    }

    ?>

    <h2>Add new page</h2>

    <form class=”settings” method=”post”>

    <fieldset>

    <div>

    <label for=”page_title”>

    Page title </label>

    <div>

    <input name=”page_title” id=”page_title” type=”text” class=”text long” />

    <p>Page slug will be created automatically (don’t worry, it’s not useful for anything yet).</p>

    </div>

    </div>

    <div>

    <label for=”page_order”>

    Page order </label>

    <div>

    <input name=”page_order” id=”page_order” type=”text” class=”text long” />

    </div>

    </div>

    <div>

    <label for=”page_content”>

    Page content </label>

    <div>

    <textarea name=”page_content” id=”page_content” rows=”20″ cols=”80″ ></textarea>

    </div>

    </div>

    <input type=”hidden” name=”page_status” value=”1″ />

    <input type=”hidden” name=”page_id” value=”<?php echo $_GET; ?>” />

    </fieldset>

    <input type=”submit” class=”submit” name=”add_page” value=”<?php _e(‘Add page’, ‘add_page’) ?>” />

    </form>

    <?php

    break;

    case “edit”:

    global $bbdb, $bb;

    if (isset($_POST)) {

    $page_id = $_POST;

    $page_title = $_POST;

    $page_content = $_POST;

    $page_order = $_POST;

    $page_status = $_POST;

    $table_name = $bbdb->prefix . “pages”;

    $query = “UPDATE “.$table_name.” SET page_content='”.$page_content.”‘, page_title='”.$page_title.”‘, page_status='”.$page_status.”‘, page_order='”.$page_order.”‘ WHERE page_id='”.$page_id.”‘”;

    $bbdb->query($query);

    ?> <div class=”updated”><p>Page updated…</p></div> <?php

    }

    $table_name = $bbdb->prefix . “pages”;

    $query = $bbdb->get_results(“SELECT * FROM $table_name WHERE page_id=”.$_GET.””);

    foreach ($query as $rk) {

    $id = $rk->page_id;

    $title = $rk->page_title;

    $content = $rk->page_content;

    $order = $rk->page_order;

    $status = $rk->page_status;

    }

    ?>

    <h2>Edit page</h2>

    <form class=”settings” method=”post”>

    <fieldset>

    <div>

    <label for=”page_title”>

    Page title </label>

    <div>

    <input name=”page_title” id=”page_title” type=”text” class=”text long” value=”<?php echo “$title”; ?>” />

    <p>Page slug will be created automatically (don’t worry, it’s not useful for anything yet).</p>

    </div>

    </div>

    <div>

    <label for=”page_order”>

    Page order </label>

    <div>

    <input name=”page_order” id=”page_order” type=”text” class=”text long” value=”<?php echo “$order”; ?>” size=”10″ />

    </div>

    </div>

    <div>

    <label for=”page_content”>

    Page content </label>

    <div>

    <textarea name=”page_content” id=”page_content” rows=”20″ cols=”80″ ><?php echo “$content”; ?></textarea>

    </div>

    </div>

    <input type=”hidden” name=”page_status” value=”1″ />

    <input type=”hidden” name=”page_id” value=”<?php echo $_GET; ?>” />

    </fieldset>

    <input type=”submit” class=”submit” name=”save_page” value=”<?php _e(‘Save page’, ‘save_page’) ?>” />

    </form>

    <?php

    break;

    case “delete”:

    global $bbdb, $bb;

    $id = $_GET;

    $table_name = $bbdb->prefix . “pages”;

    $query = $bbdb->get_results(“DELETE FROM $table_name WHERE page_id=”.$_GET.””);

    $bbdb->query($query);

    ?> <div class=”updated”><p>Page deleted…</p></div> <?php

    break;

    }

    }

    function pages_admin_menu() {

    bb_admin_add_menu(__(‘Manage Pages’), ‘administrate’, ‘pages_panel’);

    }

    function bbpages_install() {

    global $bbdb;

    $table_name = $bbdb->prefix . “pages”;

    $bbdb->query(“CREATE TABLE IF NOT EXISTS $table_name (

    page_id mediumint(9) NOT NULL AUTO_INCREMENT,

    page_date datetime,

    page_content text,

    page_title varchar(255),

    page_status int(1),

    page_slug varchar(255),

    page_order int(11),

    PRIMARY KEY (page_id)

    )”);

    }

    bb_register_activation_hook( __FILE__, ‘bbpages_install’);

    add_action( ‘bb_admin_menu_generator’, ‘pages_admin_menu’ );

    ?>


    Note: I want to mention here that the author of this plugin is no more active. He make this plugin but something is wrong with this pluing. he tell us wrong path for plugins files. But I’ve little bit knowledge of php that’s why i correct its path now the path of the plugins files which I’ve mentioned above is totally correct and working fine.

    Now I really need to your help. If someone will not guide me then I’ll leave this software “bbpress” and I’ll move to vBulletin or phpbb after disheart….

    So I’m waiting for positive answers from developers… Thanks … And Love you all

    #32469
    nivosh
    Member

    Hi.

    For some reason bbpress is not turning the url into hyperlinks, so the user can’t click on them to go to the url.

    Is is a plugin issue?

    see here: http://www.emetaheret.org.il/forum/topic/%D7%97%D7%93%D7%A9%D7%95%D7%AA-%D7%94%D7%99%D7%95%D7%9D-%D7%9E-europebusinesblogspotcom

    #81082

    In reply to: Help out with bbPress

    A1ex
    Member

    Hi Matt,

    I am a programmer with experience of 10 years. I provide support the Russian-speaking users of bbPress since 2006. I think, I could help in the further development of bbPress.

    #32500
    ajian
    Member

    Some people tell me to realize localization to create a directory called ” languages” and upload the .mo file and .po file to the directory ;

    While others tell me to create a directory called ” my-languages” and upload the .mo file and .po file to the directory

    (see the Official link:http://bbpress.org/documentation/installation/ ,line,3) ;

    Who is right?

    Michael
    Participant

    In FileZilla, please can you tell me what it says when you go to “Change File Permissions” for the folder “BBPress”. It may have configured your folders incorrectly.

    Furthermore, I must ask you: Are you using a free-hosting service, a paid hosting service, or a local file-server (eg in you house)?

    #81081

    In reply to: Help out with bbPress

    I’m posting because I hope to get that email with more information about the future of bbPress.

Viewing 25 results - 47,051 through 47,075 (of 64,474 total)
Skip to toolbar