Search Results for 'bbpress'
-
Search Results
-
Topic: Problem with gengo?
Hi i just want to check if anyone knows installation of gengo on wp to support a 2nd language would interfere with bbpress?
My bbpress totally tanked. I can’t login, when I try to do a new registration, admin’s email appears on the email field.
Please help!
Topic: BBPRESS on my USB webserver!
Hello,
I have this nifty USB Webserver (which I can run on the computer too from hard disk), to try out forums, blogs, and more.
Now I stumbled across this BBPRESS, and this looked exactly like the thing I need!
However! for some reason I can’t install it, and I have been searching through the forums allready, but i don’t have a lot of time today to search through the forums for hours.
So here’s my problem, I get the dreafull “can’t select DB” error.
I have no password on my mysql, as its just an standallone webserver which only I, the one behind this laptop, can access, and so it does not require a password.
To access my webserver by a browser, I type in “http://localhost:8080”, it uses port 8080 to make sure it doesn’t conflict with 80.
Anyways, i’ve read a lot of sollutions on how to correct the problem, but for some reason I just can’t seem to solve this! maybe i’m wanting to go too fast, or perhaps I just overlook one tiny thing.
But its getting a little annoying after a few hours.
So that’s why I need help.
This is the first part of config.php which I needed to fill in.
<?php
// ** MySQL settings ** //
define(‘BBDB_NAME’, ‘bbpress’); // The name of the database
define(‘BBDB_USER’, ‘root’); // Your MySQL username
define(‘BBDB_PASSWORD’, ”); // …and password
define(‘BBDB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value
// 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://localhost:8080/bbpress’;
// What are you going to call me?
$bb->name = ‘Test website’;
// This must be set before you run the install script.
$bb->admin_email = ‘enigmatic@live.nl’;
// 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;
So with “define(‘BBDB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value”, I allready changed it a few times to “bbpress.localhost” or “localost.bbpress” as said in another topic, I tried a lot of things, but to no avail.
I seriously need help, before i’m going to cry :'(
I kid I kid, but help is apreciated.
I’m gonna need this one in a hurry so if there’s nothing similar in existance, looks like I have a weekend project.
For now I’m going to keep it simple, add a text link somewhere in the template and that will popup a javascript query for a description why it should be moderated and then an email will be fired off to the admin. What I really want it to do is create a new post in the moderator forum so one of the mods will see it and take action, but that might have to wait until the next version.
Am I the only one (other than the few documented examples) who’s using bbpress for something other than a micro-forum and needs these kinds of tools?
ps. the examples page needs to be updated, over 200,000 registered members now
I’ve been struggling with trying to get information regarding a problem with xml-rpc in WP… more posts that I should have made, probably, but it just boggles my mind that apparently not one single person the WP community gives a rodent’s fundament about xml-rpc (or if such is given, lacks either knowledge or helpfulness). In the course of this effort, it became clear to me that what was (IS) really frustrating about it is that I have no idea whether people are even LOOKING at any of the questions, so in a brief discussion it seemed like a good idea to make it a feature request for bbpress – that is, to have an (at least optional) views count for each thread, so one can find out if anyone’s even taking a peek at it… which provides some feedback (is my Topic Title not good enough to get people to look at it? or are people looking and shaking their heads?).
Having just installed (only partially successfully, so far) bbpress, I don’t (yet) know where to look for the obvious place to add a field to the table and update it before displaying the thread… but I’ll bet someone knows, eh?
Topic: Topic Pages
Right now bbpress appears to default to 15 post per topic before being paged. Where is the variable to reset this to another value?
I encountered with a problem saying that headers were already sent while using slugs with mod_rewrite rules shown in bbpress FAQ.
And just to let people who was or will be up against this problem; i solved it changing the line 168 in bb-includes/pluggable.php
Change the line with this code line :
`?><script>location.href=”<?=$location?>”;
</script><?php`
Is there a way to either modify the “Indicate New Posts” plugin, or inspire someone to make a plugin, so that i can add something like this in my theme:
<?php if ($newpost) : ?>
NEW
<?php else : ?>
OLD
<?php endif; ?>
I have looked all over google – and on this site – for a plugin that allowed me to see new posts/topics when i visit my forum, but so far the only one i could find is the “Indicate…”. In all honesty, i can’t use bold marked topics for much.. i need something more CSS like, something not only affecting the topic.
I’ve coded themes for phpBB for years, but i recently found bbPress and i just love how simple and easy it is to code themes here. With a plugin to display new posts/topics (which in my own humble opinion SHOULD be standard in bbPress), i could gladly help spreading the word of a (relatively) new BB, by making some new themes.
If i could decide the function entirely, it should work in such way that both new topics as well as new posts would be affected, and they would continue to show as unread until i actually read them. Also, it should be database driven, so that i could log in to my account on another computer, and still see the posts/topics that would be new for me.
Please don’t make me go back to phpBB…