Skip to:
Content
Pages
Categories
Search
Top
Bottom

bbMenu 2.0 alpha help needed (kinda advanced)

Published on August 17th, 2007 by Null

Well I have read and searched many articles to fix my issue, but still no luck. I have problems uploading the order of the lists when you press submit using bbmenu.

I know I have to use the serialize option from interface (jQuery), the question only is HOW? How do I get the order updated using it?

Some stuff I’ve read:

SortSerialize

This function returns the hash and an object (can be used as arguments for $.post) for every sortables in the page or specific sortables. The hash is based on the ‘id’ attributes of container and items.

Code sample:

serial = $.SortSerialize('sortable1');
alert(serial.hash);

And some interesting stuff here:

The save button function uses the SortSerialize function and some regExp to
get a comma-delimited list of the movie IDs and sends it to a generic
webservice:
$("[EMAIL PROTECTED]").click(function(){
var serial = $.SortSerialize();
//alert( serial );
var idList = serial.hash.replace(/sortableList[]=/gi,'').replace(/
&/g,',');
//alert( idList );
var collectionId = new String( $("[EMAIL PROTECTED]
$=hiddenCollectionId]").val() );
if (collectionId != "undefined") {
$.ajax({
type: "GET",
url: "Handlers/Movies.ashx",
dataType: "html",
data: "action=savecollection&overwrite=true&collectionId=" +
collectionId + "&iList=" + idList,
success: function(msg){
$("span#updatemsg").html( msg );
}
});
}
return false;
});

(cool: $.ajax is included in jQuery?)

Any 1 can help me figure this out? The jQuery forum (google groups) is just too sucky (no post appears when I want to add my question) to get any help from.

To see what I have now download:

http://www.sourceskins.com/bbmenu2.0alpha.zip

How to use this Alpha build?

You MUST have bbmenu 1.2 installed. When installed and running succesfull, deactiate the plugin. Now upload this alpha build and activate it. You can now drag and drop the menu tabs (using jQuery yeah), but saving wont work (the save button is “empty”).

Thx for the help

Can’t get past first step!

Published on August 17th, 2007 by

Every username I try at the first step tells me that there’s no user found.

If I leave it blank (like it says to do for new users) it still says no user found!

Any ideas?

top 100 bbPress sites

Published on August 17th, 2007 by _ck_

I’m building a list of the top 100 bbPress forums (it will be free to copy ala Creative Commons) and I am quite surprised to discover many more bbPress sites than I first suspected were out there. Some that definitely do not participate around here and/or lurk quietly!

Many cool foreign languages too, like these:

http://bbs.blogbeta.com/

http://uptags.com/

Plugin: Support Forum 2.3

Published on August 17th, 2007 by Sam Bauers

I have made a couple of nice additions to the support forum plugin over the last 48 hours.

* Ability to add views for each support status.

* Option to allow topic creators to set the support status

* Option to allow topic creators to change the support status

I also changed which capability is being applied to who can and can’t change the support status.

To allow the topic poster to change the status on a topic, you now need to enable that in the admin area.

Should be available from the “extend” area now:

https://bbpress.org/plugins/topic/16

how about an integrated wiki on bbpress.org ?

Published on August 17th, 2007 by _ck_

Any chance of getting a wiki integrated here?

It would go rather far in getting user-generated documentation going, especially pages like “WordPress Integration” which needs a bunch of updates to make it easier for new users trying out bbPress.

Blocking User is not working

Published on August 17th, 2007 by zapata

I usually set the status to “Blocked” in bbPress whenever one of the group blog authors leaves or retires, so as to block the author of my WordPress blog from accessing the bbPress too.

But today I retired an author and changed the status to Blocked in bbPress but find that the author can still log in…

I simply want the author blocked and not deleted, as the authors’ posts will still be active on the WordPress blog.

I may be mistaken but I thought Blocked had worked for me in the past. Could a new version of “Role Manager” plugin in my wordpress be messing this up…

or is there anyway to make “Blocked” work again? would appreciate any help on this.

bbpress install on an existing wordpress blog

Published on August 16th, 2007 by

Hi,

I’m trying to add a bbpress managed forum to my wordpress blog but i have some difficulties even so the installation instructions seemed easy. I use the same database for both blog and forum. The only thing i have is blank page when i launch the install.

Here is my config.php file

<?php

define(‘DB_NAME’, ‘xxxx’); // Le nom de la base de donnees

define(‘DB_USER’, ‘xxxx’); // Votre identifiant MySQL

define(‘DB_PASSWORD’, ‘xxxx’); // …et votre mot de passe

define(‘DB_HOST’, ‘localhost’); // Dans la plupart des cas, vous n’aurez pas a modifier cette ligne

// Vous pouvez faire plusieurs installation sur une meme base de donnees en leur donnant un prefixe unique

// 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.subventions.fr/forum/’;

// What are you going to call me?

$bb->name = ‘Le forum des subventions à la création et au développement d’entreprise’;

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

$bb->admin_email = ‘webmaster@subventions.fr’;

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

$bb->mod_rewrite = ‘slugs’;

// 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 = -2;

// 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 = ‘xxxx’; // Example: ‘0123456789ab’

// 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 = ‘wp_’; // WordPress table prefix. Example: ‘wp_’;

$bb->wp_home = ‘http://www.subventions.fr’; // WordPress – Options->General: Blog address (URL) // Example: ‘http://example.com’

$bb->wp_siteurl = ‘http://www.subventions.fr/wordpress’; // WordPress – Options->General: WordPress address (URL) // Example: ‘http://example.com’

$bb->cookiepath = ‘/’;

$bb->cookiedomain = ‘.subventions.fr’;

define(‘WP_BB’, true);

require_once(‘/wordpress/wp-blog-header.php’);

/* Stop editing */

if ( !defined(‘BBPATH’) )

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

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

?>

Is there something wrong in what I wrote? Beside that i installed the integration plugin under wordpress and modified the wp-config.php concerning the cookies.

Thank you for your help

alike theme for (bbpress + wordpress + mediawiki)

Published on August 16th, 2007 by Heliotropen

I am looking, for at decent theme, that is available for several platforms (bbpress + wordpress + mediawiki) – more specific 3 diffrent themes that look alike (or as alike as “possible”).

I have used mistylook before, but i am now using several subforums in the newest version of bbpress, and can’t get this to work with the “old” mistylook theme for bbpress.

Any advide, or direction, anything (how to fix the problem with mistyllok, or new theme) would be soooo appreciated

thnx in advance

/Dennis

Korean Translation

Published on August 16th, 2007 by viamedia

Here is a Korean language file for bbpress. It is just in nascent stage, but I hope it helps Korean users interested in bbpress.

download: http://www.skhcafe.org/dev/Korean_bbpress_070815.zip

1. Upload the ko.mo and ko.po files to bb-includes/languages. (if do not have it, create the folder.)

2. Edit config.php – find define(‘BBLANG’, ”); and change to define(‘BBLANG’, ‘ko’);

That’s it!

비비프레스 한글 번역 화일을 올립니다. 개인적인 포럼 구축에 사용하려고 시도해 본 번역인데, 다듬어야 할 부분이 많습니다. 관심있는 분들이 발전시켜 주면 좋겠군요.

설치 방법

1. 두 화일(ko.po 와 ko.mo)을 다운로드하여 비비프레스의 언어 폴더(bb-includes/languages)에 올립니다. 폴더가 없으면 만들어 주세요.

2. config.php 화일을 열어서 다음과 같이 고쳐줍니다. define(‘BBLANG’, ”); 을 define(‘BBLANG’, ‘ko’); 으로.

Where can I translate these phrases?

Published on August 15th, 2007 by ganzua

I’m translating bbpress to spanish (using a custom mo file) and so far there are 3 phrases that I can’t translate;

In topic view I can’t translate;

” You must log in to post. “

” Posted 2 weeks ago # ” (in this case “weeks” appears translated but not the rest of the phrase)

” Allowed markup: a blockquote br code em strong ul ol li img.

Put code in between backticks. “

I can’t locate them, where ca I find them so I can hand translate? or what do you need to put in the .po file so it works?

Skip to toolbar